Package com.pingidentity.sdk.accessgrant
Class AccessGrantCriteria
- java.lang.Object
-
- com.pingidentity.sdk.accessgrant.AccessGrantCriteria
-
public class AccessGrantCriteria extends Object
-
-
Constructor Summary
Constructors Constructor Description AccessGrantCriteria(String userKey, Scope scope, String clientId, String grantType, String contextQualifier, AuthorizationDetails authorizationDetails)Access Grant Criteria constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationDetailsgetAuthorizationDetails()Get the authorization details to retrieve access grants for.StringgetClientId()Get the client id to retrieve access grants for.StringgetContextQualifier()Get the contextual qualifier to retrieve access grants for.StringgetGrantType()Get the grant type to retrieve access grants for.ScopegetScope()Get the scope to retrieve access grants for.StringgetUserKey()Get the unique user identifier to retrieve access grants for.voidsetAuthorizationDetails(AuthorizationDetails authorizationDetails)Set the authorization details to retrieve access grants for.voidsetClientId(String clientId)Set the client id to retrieve access grants for.voidsetContextQualifier(String contextQualifier)Set the contextual qualifier to retrieve access grants for.voidsetGrantType(String grantType)Set the grant type to retrieve access grants for.voidsetScope(Scope scope)Set the scope to retrieve access grants for.voidsetUserKey(String userKey)Set the unique user identifier to retrieve access grants for.
-
-
-
Constructor Detail
-
AccessGrantCriteria
public AccessGrantCriteria(String userKey, Scope scope, String clientId, String grantType, String contextQualifier, AuthorizationDetails authorizationDetails)
Access Grant Criteria constructor- Parameters:
userKey- The unique user identifier to retrieve access grants for.scope- The scope to retrieve access grants for.clientId- The client id to retrieve access grants for.grantType- The grant type to retrieve access grants for.contextQualifier- The contextual qualifier to retrieve access grants for.authorizationDetails- The authorization details to retrieve access grants for.
-
-
Method Detail
-
getUserKey
public String getUserKey()
Get the unique user identifier to retrieve access grants for.- Returns:
- The unique user identifier to retrieve access grants for.
-
setUserKey
public void setUserKey(String userKey)
Set the unique user identifier to retrieve access grants for.- Parameters:
userKey- The unique user identifier to retrieve access grants for.
-
getScope
public Scope getScope()
Get the scope to retrieve access grants for.- Returns:
- The scope to retrieve access grants for.
-
setScope
public void setScope(Scope scope)
Set the scope to retrieve access grants for.- Parameters:
scope- The scope to retrieve access grants for.
-
getClientId
public String getClientId()
Get the client id to retrieve access grants for.- Returns:
- The client id to retrieve access grants for.
-
setClientId
public void setClientId(String clientId)
Set the client id to retrieve access grants for.- Parameters:
clientId- The client id to retrieve access grants for.
-
getGrantType
public String getGrantType()
Get the grant type to retrieve access grants for.- Returns:
- The grant type to retrieve access grants for.
-
setGrantType
public void setGrantType(String grantType)
Set the grant type to retrieve access grants for.- Parameters:
grantType- The grant type to retrieve access grants for.
-
getContextQualifier
public String getContextQualifier()
Get the contextual qualifier to retrieve access grants for.- Returns:
- The contextual qualifier to retrieve access grants for.
-
setContextQualifier
public void setContextQualifier(String contextQualifier)
Set the contextual qualifier to retrieve access grants for.- Parameters:
contextQualifier- The contextual qualifier to retrieve access grants for.
-
getAuthorizationDetails
public AuthorizationDetails getAuthorizationDetails()
Get the authorization details to retrieve access grants for.- Returns:
- The authorization details to retrieve access grants for.
-
setAuthorizationDetails
public void setAuthorizationDetails(AuthorizationDetails authorizationDetails)
Set the authorization details to retrieve access grants for.- Parameters:
authorizationDetails- The authorization details to retrieve access grants for.
-
-