#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 Changed 16 years ago by
comment:2 Changed 16 years ago by
(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:3 Changed 16 years ago by
comment:4 Changed 16 years ago by
(In [3976]) References #827 Added ExperimentService?.getReporterLists().
comment:5 Changed 16 years ago by
(In [3977]) References #827: Add more web services methods
Added AnnotationTypeService? that can be used to find available annotation types.
comment:6 Changed 16 years ago by
(In [3978]) References #827 Created ReporterService? and a method to get the extended properties for reporters.
comment:7 Changed 16 years ago by
comment:8 Changed 16 years ago by
comment:9 Changed 16 years ago by
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