public interface RealmResource
| Modifier and Type | Method and Description |
|---|---|
void |
addDefaultGroup(String groupId) |
ClientInitialAccessResource |
clientInitialAccess() |
ClientsResource |
clients() |
ClientRepresentation |
convertClientDescription(String description) |
List<Map<String,String>> |
getClientSessionStats() |
List<GroupRepresentation> |
getDefaultGroups() |
GroupRepresentation |
getGroupByPath(String path) |
GroupsResource |
groups() |
IdentityProvidersResource |
identityProviders() |
void |
remove() |
void |
removeDefaultGroup(String groupId) |
RolesResource |
roles() |
RealmRepresentation |
toRepresentation() |
void |
update(RealmRepresentation realmRepresentation) |
UsersResource |
users() |
@GET @Produces(value="application/json") RealmRepresentation toRepresentation()
@PUT @Consumes(value="application/json") void update(RealmRepresentation realmRepresentation)
@Path(value="clients") ClientsResource clients()
@Path(value="client-description-converter")
@POST
@Consumes(value={"application/json","application/xml","text/plain"})
@Produces(value="application/json")
ClientRepresentation convertClientDescription(String description)
@Path(value="users") UsersResource users()
@Path(value="roles") RolesResource roles()
@Path(value="groups") GroupsResource groups()
@GET
@Path(value="group-by-path/{path: .*}")
@Produces(value="application/json")
GroupRepresentation getGroupByPath(@PathParam(value="path")
String path)
@GET @Produces(value="application/json") @Path(value="default-groups") List<GroupRepresentation> getDefaultGroups()
@PUT
@Path(value="default-groups/{groupId}")
void addDefaultGroup(@PathParam(value="groupId")
String groupId)
@DELETE
@Path(value="default-groups/{groupId}")
void removeDefaultGroup(@PathParam(value="groupId")
String groupId)
@Path(value="identity-provider") IdentityProvidersResource identityProviders()
@DELETE void remove()
@Path(value="client-session-stats") @GET List<Map<String,String>> getClientSessionStats()
@Path(value="clients-initial-access") ClientInitialAccessResource clientInitialAccess()
Copyright © 2015 JBoss by Red Hat. All rights reserved.