Package org.keycloak.representations.idm
Class GroupRepresentation
- java.lang.Object
-
- org.keycloak.representations.idm.GroupRepresentation
-
public class GroupRepresentation extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description GroupRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Boolean>
getAccess()
Map<String,List<String>>
getAttributes()
Map<String,List<String>>
getClientRoles()
String
getId()
String
getName()
String
getPath()
List<String>
getRealmRoles()
List<GroupRepresentation>
getSubGroups()
void
setAccess(Map<String,Boolean> access)
void
setAttributes(Map<String,List<String>> attributes)
void
setClientRoles(Map<String,List<String>> clientRoles)
void
setId(String id)
void
setName(String name)
void
setPath(String path)
void
setRealmRoles(List<String> realmRoles)
void
setSubGroups(List<GroupRepresentation> subGroups)
GroupRepresentation
singleAttribute(String name, String value)
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
path
protected String path
-
subGroups
protected List<GroupRepresentation> subGroups
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
singleAttribute
public GroupRepresentation singleAttribute(String name, String value)
-
getSubGroups
public List<GroupRepresentation> getSubGroups()
-
setSubGroups
public void setSubGroups(List<GroupRepresentation> subGroups)
-
-