Class SSO.OIDC.UpdateParameters
-
- All Implemented Interfaces:
public final class SSO.OIDC.UpdateParametersData class used for wrapping the parameters for an OIDC update request
-
-
Field Summary
Fields Modifier and Type Field Description private final StringconnectionIdprivate final StringdisplayNameprivate final Stringissuerprivate final StringclientIdprivate final StringclientSecretprivate final StringauthorizationUrlprivate final StringtokenUrlprivate final StringuserInfoUrlprivate final StringjwksUrl
-
Constructor Summary
Constructors Constructor Description SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl, String tokenUrl, String userInfoUrl, String jwksUrl)SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl, String tokenUrl, String userInfoUrl)SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl, String tokenUrl)SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl)SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret)SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId)SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer)SSO.OIDC.UpdateParameters(String connectionId, String displayName)SSO.OIDC.UpdateParameters(String connectionId)
-
Method Summary
Modifier and Type Method Description final StringgetConnectionId()Globally unique UUID that identifies a specific OIDC Connection. final StringgetDisplayName()A human-readable display name for the connection. final StringgetIssuer()A case-sensitive https://URL that uniquely identifies the IdP.final StringgetClientId()The OAuth2.0 client ID used to authenticate login attempts. final StringgetClientSecret()The secret belonging to the OAuth2.0 client used to authenticate login attempts. final StringgetAuthorizationUrl()The location of the URL that starts an OAuth login at the IdP. final StringgetTokenUrl()The location of the URL that issues OAuth2.0 access tokens and OIDC ID tokens. final StringgetUserInfoUrl()The location of the IDP's UserInfo Endpoint. final StringgetJwksUrl()The location of the IdP's JSON Web Key Set, used to verify credentials issued by the IdP. -
-
Constructor Detail
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl, String tokenUrl, String userInfoUrl, String jwksUrl)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl, String tokenUrl, String userInfoUrl)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl, String tokenUrl)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret, String authorizationUrl)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId, String clientSecret)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer, String clientId)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId, String displayName, String issuer)
-
SSO.OIDC.UpdateParameters
SSO.OIDC.UpdateParameters(String connectionId)
-
-
Method Detail
-
getConnectionId
final String getConnectionId()
Globally unique UUID that identifies a specific OIDC Connection.
-
getDisplayName
final String getDisplayName()
A human-readable display name for the connection.
-
getIssuer
final String getIssuer()
A case-sensitive
https://URL that uniquely identifies the IdP. This will be provided by the IdP.
-
getClientId
final String getClientId()
The OAuth2.0 client ID used to authenticate login attempts. This will be provided by the IdP.
-
getClientSecret
final String getClientSecret()
The secret belonging to the OAuth2.0 client used to authenticate login attempts. This will be provided by the IdP.
-
getAuthorizationUrl
final String getAuthorizationUrl()
The location of the URL that starts an OAuth login at the IdP. This will be provided by the IdP.
-
getTokenUrl
final String getTokenUrl()
The location of the URL that issues OAuth2.0 access tokens and OIDC ID tokens. This will be provided by the IdP.
-
getUserInfoUrl
final String getUserInfoUrl()
The location of the IDP's UserInfo Endpoint. This will be provided by the IdP.
-
getJwksUrl
final String getJwksUrl()
The location of the IdP's JSON Web Key Set, used to verify credentials issued by the IdP. This will be provided by the IdP.
-
-
-
-