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