Project

General

Profile

Actions

CDM REST Services Implementation Notes

General design Decisions for RESTful CDM webservices


The API Service a clean RESTful bit, which will expose data in a modular, normalized way. It is a more-or-less one-to-one concordance between URIs and service api methods.

e.g.

taxonService.get(UUID uuid)

and

GET /taxon/{uuid}

Following from that logic, the listing methods should work thus

taxonService.list(Class<? extends TaxonBase> clazz, Integer page, Integer limit, etc)

and the URI would be

GET /taxon?page=X&limit=Y&clazz=Z

This has not yet been fully implemented in that way see #593


Updated by Andreas Müller about 2 years ago · 6 revisions