Package com.auth0.json.mgmt.connections
Class Connection
java.lang.Object
com.auth0.json.mgmt.connections.Connection
Class that represents an Auth0 Connection object. Related to the
ConnectionsEntity entity.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGetter for the connection display name, used in the new universal login experience.Getter for the list of applications this connection is enabled for.getId()Getter for the id of this connection.Getter for the metadata of this connection.getName()Getter for the name of the connection.Getter for the connection options.Getter for the ad/ldap connection's ticket url.Getter for the realms of this connection.Getter for the type of the connection, related to the identity provider.voidsetDisplayName(String displayName) Setter for the connection display name, used in the new universal login experience.voidsetEnabledClients(List<String> enabledClients) Setter for the list of applications this connection is enabled for.voidsetMetadata(Map<String, String> metadata) Setter for the metadata of this connection.voidsetOptions(Map<String, Object> options) Setter for the connection options.voidSetter for the realms of this connection.
-
Constructor Details
-
Connection
public Connection() -
Connection
-
-
Method Details
-
getName
Getter for the name of the connection.- Returns:
- the name.
-
getOptions
Getter for the connection options.- Returns:
- the connection options.
-
setOptions
Setter for the connection options.- Parameters:
options- the connection options.
-
getId
Getter for the id of this connection.- Returns:
- the id.
-
getDisplayName
Getter for the connection display name, used in the new universal login experience.- Returns:
- the connection display name.
-
setDisplayName
Setter for the connection display name, used in the new universal login experience.- Parameters:
displayName- the connection display name to set.
-
getStrategy
Getter for the type of the connection, related to the identity provider.- Returns:
- the strategy.
-
getEnabledClients
Getter for the list of applications this connection is enabled for.- Returns:
- the list of enabled applications.
-
setEnabledClients
Setter for the list of applications this connection is enabled for.- Parameters:
enabledClients- the list of enabled applications to set.
-
getProvisioningTicketUrl
Getter for the ad/ldap connection's ticket url.- Returns:
- the provisioning ticket url.
-
getMetadata
Getter for the metadata of this connection.- Returns:
- the map of metadata key-values.
-
setMetadata
Setter for the metadata of this connection.- Parameters:
metadata- the map of metadata key-values.
-
getRealms
Getter for the realms of this connection.- Returns:
- the list of realms.
-
setRealms
Setter for the realms of this connection.- Parameters:
realms- the list of realms.
-