Class SSO.OIDC.UpdateParameters

  • All Implemented Interfaces:

    
    public final class SSO.OIDC.UpdateParameters
    
                        

    Data class used for wrapping the parameters for an OIDC update request

    • Constructor Detail

      • 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, String displayName)
      • SSO.OIDC.UpdateParameters

        SSO.OIDC.UpdateParameters(String connectionId)
    • Method Detail

      • getConnectionId

         final String getConnectionId()

        Globally unique UUID that identifies a specific OIDC 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.