Uses of Class
org.topbraidlive.client.java.ClientAuthenticationMethod
-
Packages that use ClientAuthenticationMethod Package Description org.topbraidlive.client.java This package and its api subpackage contain the public interface to the client. -
-
Uses of ClientAuthenticationMethod in org.topbraidlive.client.java
Methods in org.topbraidlive.client.java that return ClientAuthenticationMethod Modifier and Type Method Description ClientAuthenticationMethod
ClientConfiguration. getAuthenticationMethod()
Get the authentication method the client should use.ClientAuthenticationMethod
BearerClientCredentials. getDefaultAuthenticationMethod()
ClientAuthenticationMethod
ClientCredentials. getDefaultAuthenticationMethod()
ClientAuthenticationMethod
OAuthClientCredentials. getDefaultAuthenticationMethod()
ClientAuthenticationMethod
UsernameClientCredentials. getDefaultAuthenticationMethod()
ClientAuthenticationMethod
UsernamePasswordClientCredentials. getDefaultAuthenticationMethod()
static ClientAuthenticationMethod
ClientAuthenticationMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static ClientAuthenticationMethod[]
ClientAuthenticationMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.topbraidlive.client.java with parameters of type ClientAuthenticationMethod Modifier and Type Method Description boolean
BearerClientCredentials. isCompatibleWithAuthenticationMethod(ClientAuthenticationMethod authenticationMethod)
boolean
ClientCredentials. isCompatibleWithAuthenticationMethod(ClientAuthenticationMethod authenticationMethod)
boolean
OAuthClientCredentials. isCompatibleWithAuthenticationMethod(ClientAuthenticationMethod authenticationMethod)
boolean
UsernameClientCredentials. isCompatibleWithAuthenticationMethod(ClientAuthenticationMethod authenticationMethod)
boolean
UsernamePasswordClientCredentials. isCompatibleWithAuthenticationMethod(ClientAuthenticationMethod authenticationMethod)
ClientConfiguration.Builder
ClientConfiguration.Builder. setAuthenticationMethod(ClientAuthenticationMethod authenticationMethod)
Set the authentication method the client should use.
-