@Path(value="domains") public interface DomainService extends JAXRSService
PARAM_ANYTYPE_KIND, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_RESOURCE, PARAM_SIZE| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
create(DomainTO domainTO)
Creates a new domain.
|
void |
delete(String key)
Deletes the domain matching the provided key.
|
List<DomainTO> |
list()
Returns a list of all domains.
|
DomainTO |
read(String key)
Returns domain with matching key.
|
void |
update(DomainTO domainTO)
Updates the domain matching the provided key.
|
@GET
@Produces(value={"application/json","application/xml"})
List<DomainTO> list()
@GET
@Path(value="{key}")
@Produces(value={"application/json","application/xml"})
DomainTO read(@NotNull @PathParam(value="key")
String key)
key - domain key to be read@POST
@Consumes(value={"application/json","application/xml"})
@Produces(value={"application/json","application/xml"})
javax.ws.rs.core.Response create(@NotNull
DomainTO domainTO)
domainTO - domain to be created@PUT
@Path(value="{key}")
@Consumes(value={"application/json","application/xml"})
@Produces(value={"application/json","application/xml"})
void update(@NotNull
DomainTO domainTO)
domainTO - domain to be stored@DELETE
@Path(value="{key}")
@Produces(value={"application/json","application/xml"})
void delete(@NotNull @PathParam(value="key")
String key)
key - domain key to be deletedCopyright © 2010–2018 The Apache Software Foundation. All rights reserved.