@Path(value="/admin/organizations")
@Consumes(value="application/json")
public interface OrganizationsResource
| Modifier and Type | Method and Description |
|---|---|
void |
create(OrganizationRepresentation organizationRepresentation) |
List<OrganizationRepresentation> |
findAll() |
OrganizationResource |
organization(String organization) |
@Path(value="/{organization}")
OrganizationResource organization(@PathParam(value="organization")
String organization)
@POST @Consumes(value="application/json") void create(OrganizationRepresentation organizationRepresentation)
@GET @Produces(value="application/json") List<OrganizationRepresentation> findAll()
Copyright © 2018. All rights reserved.