@Path(value="roles") public interface RoleService 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(RoleTO roleTO)
Creates a new role.
|
void |
delete(String key)
Deletes the role matching the provided key.
|
javax.ws.rs.core.Response |
getConsoleLayoutInfo(String key)
Gets the console layout information as JSON string for the role with the given key, if available.
|
List<RoleTO> |
list()
Returns a list of all roles.
|
RoleTO |
read(String key)
Returns role with matching key.
|
void |
removeConsoleLayoutInfo(String key)
Removes the console layout information for the role with the given key, if available.
|
void |
setConsoleLayoutInfo(String key,
InputStream consoleLayoutInfoIn)
Sets the console layout information as JSON string for the role with the given key, if available.
|
void |
update(RoleTO roleTO)
Updates the role matching the provided key.
|
@GET
@Produces(value={"application/json","application/yaml","application/xml"})
List<RoleTO> list()
@GET
@Path(value="{key}")
@Produces(value={"application/json","application/yaml","application/xml"})
RoleTO read(@NotNull @PathParam(value="key")
String key)
key - role 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
RoleTO roleTO)
roleTO - role 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
RoleTO roleTO)
roleTO - role to be stored@DELETE
@Path(value="{key}")
@Produces(value={"application/json","application/yaml","application/xml"})
void delete(@NotNull @PathParam(value="key")
String key)
key - role key to be deleted@GET
@Path(value="{key}/consoleLayout")
@Produces(value="application/json")
javax.ws.rs.core.Response getConsoleLayoutInfo(@NotNull @PathParam(value="key")
String key)
key - role key@PUT
@Path(value="{key}/consoleLayout")
@Consumes(value="application/json")
@Produces(value={"application/json","application/yaml","application/xml"})
void setConsoleLayoutInfo(@NotNull @PathParam(value="key")
String key,
InputStream consoleLayoutInfoIn)
key - role keyconsoleLayoutInfoIn - console layout information to be set@DELETE
@Path(value="{key}/consoleLayout")
@Produces(value={"application/json","application/yaml","application/xml"})
void removeConsoleLayoutInfo(@NotNull @PathParam(value="key")
String key)
key - role keyCopyright © 2010–2020 The Apache Software Foundation. All rights reserved.