Task #8045 (new)
Opened 7 years ago
Last modified 3 years ago
import Iquery usage
| Reported by: | jburel | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | Unscheduled |
| Component: | Import | Version: | n.a. |
| Keywords: | n.a. | Cc: | jamoore, cxallan, ajpatterson |
| Resources: | n.a. | Referenced By: | n.a. |
| References: | n.a. | Remaining Time: | n.a. |
| Sprint: | n.a. |
Description
List the methods in web gateway using directly IQuery to retrieve data. So we can check impact when doing model changes.
Change History (7)
comment:1 Changed 7 years ago by ajpatterson
comment:2 Changed 7 years ago by jburel
Review the classes under ome.formats:
- enums
- model.handler
- ...
Some hard-coded strings with ref to enumerations.
comment:3 Changed 7 years ago by jburel
- Milestone changed from OMERO-Beta4.4 to OMERO-Beta4.5
comment:4 Changed 7 years ago by jburel
Referencing ticket #8042 has changed sprint.
comment:5 Changed 3 years ago by jamoore
Referencing ticket #8042 has changed sprint.
comment:6 Changed 3 years ago by jamoore
Referencing ticket #8042 has changed sprint.
comment:7 Changed 3 years ago by jamoore
- Milestone changed from 5.x to Unscheduled
./OmeroImporter?/src/ome/formats/importer/gui/HistoryTableStore.java: private IQueryPrx iQuery;
iQuery is used by the following call:
public List<OriginalFile> getOriginalFiles(String fileName) ... final String queryString = "from OriginalFile as o where o.details.owner.id = '" + store.getExperimenterID() + "' and o.name = '" + fileName + "'";It is also used in the following test:
/OmeroImporter/test/ome/formats/utests/TestServiceFactory.java:import omero.api.IQueryPrx;