Class ClientAuthenticationMethods

java.lang.Object
com.auth0.json.mgmt.client.ClientAuthenticationMethods

public class ClientAuthenticationMethods extends Object
Class that represents an Auth0 Application authentication methods. Related to the ClientsEntity entity.
  • Constructor Details

    • ClientAuthenticationMethods

      public ClientAuthenticationMethods()
    • ClientAuthenticationMethods

      public ClientAuthenticationMethods(PrivateKeyJwt privateKeyJwt)
      Create a new instance.
      Parameters:
      privateKeyJwt - the value of the private_key_jwt field.
    • ClientAuthenticationMethods

      public ClientAuthenticationMethods(PrivateKeyJwt privateKeyJwt, SelfSignedTLSClientAuth selfSignedTLSClientAuth)
      Create a new instance.
      Parameters:
      privateKeyJwt - the value of the private_key_jwt field.
      selfSignedTLSClientAuth - the value of the self_signed_tls_client_auth field.
    • ClientAuthenticationMethods

      public ClientAuthenticationMethods(PrivateKeyJwt privateKeyJwt, SelfSignedTLSClientAuth selfSignedTLSClientAuth, TLSClientAuth tlsClientAuth)
      Create a new instance.
      Parameters:
      privateKeyJwt - the value of the private_key_jwt field.
      selfSignedTLSClientAuth - the value of the self_signed_tls_client_auth field.
      tlsClientAuth - the value of the tls_client_auth field.
  • Method Details

    • getPrivateKeyJwt

      public PrivateKeyJwt getPrivateKeyJwt()
    • getSelfSignedTLSClientAuth

      public SelfSignedTLSClientAuth getSelfSignedTLSClientAuth()
      Returns:
      the value of the self_signed_tls_client_auth field
    • getTlsClientAuth

      public TLSClientAuth getTlsClientAuth()
      Returns:
      the value of the tls_client_auth field