Package | Description |
---|---|
org.keycloak.admin.client.resource | |
org.keycloak.representations.idm |
Modifier and Type | Method and Description |
---|---|
UserRepresentation |
ClientResource.getServiceAccountUser() |
UserRepresentation |
UserResource.toRepresentation() |
Modifier and Type | Method and Description |
---|---|
Set<UserRepresentation> |
RoleResource.getRoleUserMembers()
Get role members
Returns users that have the given role
|
Set<UserRepresentation> |
RoleResource.getRoleUserMembers(Integer firstResult,
Integer maxResults)
Get role members
Returns users that have the given role, paginated according to the query parameters
|
List<UserRepresentation> |
UsersResource.list() |
List<UserRepresentation> |
UsersResource.list(Integer firstResult,
Integer maxResults) |
List<UserRepresentation> |
GroupResource.members()
Get users
Returns a list of all users in group.
|
List<UserRepresentation> |
GroupResource.members(Integer firstResult,
Integer maxResults)
Get users
Returns a list of users, filtered according to query parameters
|
List<UserRepresentation> |
UsersResource.search(String username) |
List<UserRepresentation> |
UsersResource.search(String search,
Integer firstResult,
Integer maxResults)
Search for users whose username or email matches the value provided by
search . |
List<UserRepresentation> |
UsersResource.search(String search,
Integer firstResult,
Integer maxResults,
Boolean briefRepresentation)
Search for users whose username or email matches the value provided by
search . |
List<UserRepresentation> |
UsersResource.search(String username,
String firstName,
String lastName,
String email,
Integer firstResult,
Integer maxResults) |
List<UserRepresentation> |
UsersResource.search(String username,
String firstName,
String lastName,
String email,
Integer firstResult,
Integer maxResults,
Boolean briefRepresentation) |
Modifier and Type | Method and Description |
---|---|
Response |
UsersResource.create(UserRepresentation userRepresentation) |
void |
UserResource.update(UserRepresentation userRepresentation) |
Modifier and Type | Field and Description |
---|---|
protected List<UserRepresentation> |
RealmRepresentation.federatedUsers |
protected List<UserRepresentation> |
RealmRepresentation.users |
protected List<UserRepresentation> |
PartialImportRepresentation.users |
Modifier and Type | Method and Description |
---|---|
UserRepresentation |
UserRepresentation.singleAttribute(String name,
String value) |
UserRepresentation |
RealmRepresentation.user(String username) |
Modifier and Type | Method and Description |
---|---|
List<UserRepresentation> |
RealmRepresentation.getFederatedUsers() |
List<UserRepresentation> |
RealmRepresentation.getUsers() |
List<UserRepresentation> |
PartialImportRepresentation.getUsers() |
Modifier and Type | Method and Description |
---|---|
void |
RealmRepresentation.setFederatedUsers(List<UserRepresentation> federatedUsers) |
void |
RealmRepresentation.setUsers(List<UserRepresentation> users) |
void |
PartialImportRepresentation.setUsers(List<UserRepresentation> users) |
Copyright © 2019 JBoss by Red Hat. All rights reserved.