Interface GroupResource


@Path("/group") public interface GroupResource
  • Method Details

    • getGroups

      @GET @Produces("application/json") javax.ws.rs.core.Response getGroups(@QueryParam("expand") String expand, @QueryParam("start") Integer start, @QueryParam("limit") @DefaultValue("200") Integer limit)
    • getMembers

      @GET @Produces("application/json") @Path("/{groupName}/member") javax.ws.rs.core.Response getMembers(@PathParam("groupName") String groupName, @QueryParam("expand") String expand, @QueryParam("start") Integer start, @QueryParam("limit") @DefaultValue("200") Integer limit)
    • getGroup

      @GET @Produces("application/json") @Path("/{groupName}") javax.ws.rs.core.Response getGroup(@PathParam("groupName") String groupName, @QueryParam("expand") String expand)