Package org.keycloak.representations
Class AuthorizationDetailsJSONRepresentation
- java.lang.Object
-
- org.keycloak.representations.AuthorizationDetailsJSONRepresentation
-
- All Implemented Interfaces:
Serializable
public class AuthorizationDetailsJSONRepresentation extends Object implements Serializable
The JSON representation of a Rich Authorization Request's "authorization_details" object.- Author:
- Daniel Gozalo
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
DYNAMIC_SCOPE_RAR_TYPE
static String
STATIC_SCOPE_RAR_TYPE
-
Constructor Summary
Constructors Constructor Description AuthorizationDetailsJSONRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
getActions()
Map<String,Object>
getCustomData()
List<String>
getDatatypes()
String
getDynamicScopeParamFromCustomData()
String
getIdentifier()
List<String>
getLocations()
List<String>
getPrivileges()
String
getScopeNameFromCustomData()
String
getType()
int
hashCode()
void
setActions(List<String> actions)
void
setCustomData(String key, Object value)
void
setDatatypes(List<String> datatypes)
void
setIdentifier(String identifier)
void
setLocations(List<String> locations)
void
setPrivileges(List<String> privileges)
void
setType(String type)
String
toString()
-
-
-
Field Detail
-
STATIC_SCOPE_RAR_TYPE
public static final String STATIC_SCOPE_RAR_TYPE
- See Also:
- Constant Field Values
-
DYNAMIC_SCOPE_RAR_TYPE
public static final String DYNAMIC_SCOPE_RAR_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
getIdentifier
public String getIdentifier()
-
setIdentifier
public void setIdentifier(String identifier)
-
getScopeNameFromCustomData
public String getScopeNameFromCustomData()
-
getDynamicScopeParamFromCustomData
public String getDynamicScopeParamFromCustomData()
-
-