Class OrgOAuthClient

java.lang.Object
com.mypurecloud.sdk.v2.model.OrgOAuthClient
All Implemented Interfaces:
Serializable

public class OrgOAuthClient extends Object implements Serializable
OrgOAuthClient
See Also:
  • Constructor Details

    • OrgOAuthClient

      public OrgOAuthClient()
    • OrgOAuthClient

      public OrgOAuthClient(Boolean initWithEmptyList)
  • Method Details

    • getId

      public String getId()
    • name

      public OrgOAuthClient name(String name)
      The name of the OAuth client.
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • dateCreated

      public OrgOAuthClient dateCreated(Date dateCreated)
      Date this client was created. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
    • getDateCreated

      public Date getDateCreated()
    • setDateCreated

      public void setDateCreated(Date dateCreated)
    • dateModified

      public OrgOAuthClient dateModified(Date dateModified)
      Date this client was last modified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
    • getDateModified

      public Date getDateModified()
    • setDateModified

      public void setDateModified(Date dateModified)
    • createdBy

      public OrgOAuthClient createdBy(DomainEntityRef createdBy)
      User that created this client
    • getCreatedBy

      public DomainEntityRef getCreatedBy()
    • setCreatedBy

      public void setCreatedBy(DomainEntityRef createdBy)
    • modifiedBy

      public OrgOAuthClient modifiedBy(DomainEntityRef modifiedBy)
      User that last modified this client
    • getModifiedBy

      public DomainEntityRef getModifiedBy()
    • setModifiedBy

      public void setModifiedBy(DomainEntityRef modifiedBy)
    • authorizedGrantType

      public OrgOAuthClient authorizedGrantType(OrgOAuthClient.AuthorizedGrantTypeEnum authorizedGrantType)
      The OAuth Grant/Client type supported by this client. Code Authorization Grant/Client type - Preferred client type where the Client ID and Secret are required to create tokens. Used where the secret can be secured. PKCE-Enabled Code Authorization grant type - Code grant type which requires PKCE challenge and verifier to create tokens. Used in public clients for increased security. Implicit grant type - Client ID only is required to create tokens. Used in browser and mobile apps where the secret can not be secured. SAML2-Bearer extension grant type - SAML2 assertion provider for user authentication at the token endpoint. Client Credential grant type - Used to created access tokens that are tied only to the client.
    • getAuthorizedGrantType

      public OrgOAuthClient.AuthorizedGrantTypeEnum getAuthorizedGrantType()
    • setAuthorizedGrantType

      public void setAuthorizedGrantType(OrgOAuthClient.AuthorizedGrantTypeEnum authorizedGrantType)
    • scope

      public OrgOAuthClient scope(List<String> scope)
      The scope requested by this client. Scopes only apply to clients not using the client_credential grant
    • getScope

      public List<String> getScope()
    • setScope

      public void setScope(List<String> scope)
    • roleDivisions

      public OrgOAuthClient roleDivisions(List<RoleDivision> roleDivisions)
      Set of roles and their corresponding divisions associated with this client. Roles and divisions only apply to clients using the client_credential grant
    • getRoleDivisions

      public List<RoleDivision> getRoleDivisions()
    • setRoleDivisions

      public void setRoleDivisions(List<RoleDivision> roleDivisions)
    • state

      The state of the OAuth client. Active: The OAuth client can be used to create access tokens. This is the default state. Disabled: Access tokens created by the client are invalid and new ones cannot be created. Inactive: Access tokens cannot be created with this OAuth client and it will be deleted.
    • getState

      public OrgOAuthClient.StateEnum getState()
    • setState

      public void setState(OrgOAuthClient.StateEnum state)
    • dateToDelete

      public OrgOAuthClient dateToDelete(Date dateToDelete)
      The time at which this client will be deleted. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
    • getDateToDelete

      public Date getDateToDelete()
    • setDateToDelete

      public void setDateToDelete(Date dateToDelete)
    • getOrganization

      public NamedEntity getOrganization()
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object