Interface RoleScopeResource
-
@Consumes("application/json") @Produces("application/json") public interface RoleScopeResource- Author:
- rodrigo.sasaki@icarros.com.br
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(List<RoleRepresentation> rolesToAdd)List<RoleRepresentation>listAll()List<RoleRepresentation>listAvailable()List<RoleRepresentation>listEffective()List<RoleRepresentation>listEffective(boolean briefRepresentation)voidremove(List<RoleRepresentation> rolesToRemove)
-
-
-
Method Detail
-
listAll
@GET List<RoleRepresentation> listAll()
-
listAvailable
@GET @Path("available") List<RoleRepresentation> listAvailable()
-
listEffective
@GET @Path("composite") List<RoleRepresentation> listEffective()
-
listEffective
@GET @Path("composite") List<RoleRepresentation> listEffective(@QueryParam("briefRepresentation") @DefaultValue("true") boolean briefRepresentation)
-
add
@POST void add(List<RoleRepresentation> rolesToAdd)
-
remove
@DELETE void remove(List<RoleRepresentation> rolesToRemove)
-
-