Class GroupResource
java.lang.Object
com.illumon.iris.db.v2.permissions.rs.GroupResource
@Path("/groups")
@Consumes("application/json")
@Produces("application/json")
public class GroupResource
extends Object
This is the Acl Group resource, defines all REST operations supported for /acl/groups uri. Produces and consumes
MediaType.APPLICATION_JSON
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionio.deephaven.shadow.resteasy.javax.ws.rs.core.Response
deleteGroup
(String groupId) Deletes the group identified by the provided groupId.
-
Constructor Details
-
GroupResource
public GroupResource()
-
-
Method Details
-
deleteGroup
@DELETE @Path("/{groupId}") public io.deephaven.shadow.resteasy.javax.ws.rs.core.Response deleteGroup(@PathParam("groupId") String groupId) throws DbAclCheckedException Deletes the group identified by the provided groupId.- Parameters:
groupId
- The path param attribute that identifies the group to be deleted- Returns:
Response
with status code ofResponse.Status.NO_CONTENT
- Throws:
DbAclCheckedException
- upon failure to delete group
-