#827 closed enhancement (fixed)
Add more web services methods
Reported by: | Nicklas Nordborg | Owned by: | Martin Svensson |
---|---|---|---|
Priority: | minor | Milestone: | BASE 2.5 |
Component: | webservices | Version: | |
Keywords: | Cc: |
Description
Some minor additions to make existing services more complete
- Implement a getById() method for each service, for example: ExperimentService.getById()
- Implement a method that lists items for each service, for example: RawBioAssayService.getRawBioAssays()
New services for reporters and reporter lists that can:
- give information about extended properties for reporters
- export reporter information (as a tab-separated text file) for the reporters in a reporter list
- list reporter lists within an experiment: ExperimentService.getReporterLists()
New services for annotations that can:
- list experimental factors: ExperimentService.getExperimentalFactors()
- get annotation values for a raw bioassay
Change History (10)
comment:1 by , 17 years ago
comment:2 by , 17 years ago
(In [3974]) References #827: Add more web services methods
Added Transferable and ToTransferable to make it easier to write generic code for populating classes that are going to be transfered with web services.
comment:5 by , 17 years ago
(In [3977]) References #827: Add more web services methods
Added AnnotationTypeService that can be used to find available annotation types.
comment:6 by , 17 years ago
(In [3978]) References #827 Created ReporterService and a method to get the extended properties for reporters.
comment:7 by , 17 years ago
comment:8 by , 17 years ago
comment:9 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
(In [3991]) Fixes #827 Reporters can now be exported through web services. Two new methods in ReporterService are added, one that exports reporters in a reporters list and one that exports all reports. The reporters are exported to a tab-separated text file.
(In [3973]) References #827: Add more web services methods