Class Organization

java.lang.Object
com.auth0.json.mgmt.organizations.Organization

public class Organization extends Object
Represents the organization object.
See Also:
  • Constructor Details

    • Organization

      public Organization()
    • Organization

      public Organization(String name)
      Create a new instance.
      Parameters:
      name - the name of this organization.
  • Method Details

    • getId

      public String getId()
      Returns:
      the ID of this organization.
    • getName

      public String getName()
      Returns:
      the name of this Organization.
    • setName

      public void setName(String name)
      Sets the name of this Organization.
      Parameters:
      name - the name of the Organization.
    • getDisplayName

      public String getDisplayName()
      Returns:
      the display name of this Organization.
    • setDisplayName

      public void setDisplayName(String displayName)
      Sets the display name of this Organization.
      Parameters:
      displayName - the display name of this Organization.
    • getBranding

      public Branding getBranding()
      Returns:
      the Branding of this Organization.
    • setBranding

      public void setBranding(Branding branding)
      Sets the Branding of this Organization.
      Parameters:
      branding - the Branding of this Organization.
    • getMetadata

      public Map<String,Object> getMetadata()
      Returns:
      the metadata of this Organization.
    • setMetadata

      public void setMetadata(Map<String,Object> metadata)
      Sets the metadata of this Organization.
      Parameters:
      metadata - the metadata of this Organization.
    • getEnabledConnections

      public List<EnabledConnection> getEnabledConnections()
      Returns:
      the enabled connections of this Organization.
    • setEnabledConnections

      public void setEnabledConnections(List<EnabledConnection> enabledConnections)
      Sets the enabled connections of this Organization.
      Parameters:
      enabledConnections - the metadata of this Organization.