Class CreateTokenRequest
- java.lang.Object
-
- org.elasticsearch.client.security.CreateTokenRequest
-
- All Implemented Interfaces:
Validatable,ToXContent,ToXContentObject
public final class CreateTokenRequest extends Object implements Validatable, ToXContentObject
Request to create a new OAuth2 token from the Elasticsearch cluster.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Fields inherited from interface org.elasticsearch.client.Validatable
EMPTY
-
-
Constructor Summary
Constructors Constructor Description CreateTokenRequest(String grantType, String scope, String username, char[] password, String refreshToken, char[] kerberosTicket)General purpose constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateTokenRequestclientCredentialsGrant()booleanequals(Object o)StringgetGrantType()char[]getKerberosTicket()char[]getPassword()StringgetRefreshToken()StringgetScope()StringgetUsername()inthashCode()static CreateTokenRequestkerberosGrant(char[] kerberosTicket)static CreateTokenRequestpasswordGrant(String username, char[] password)static CreateTokenRequestrefreshTokenGrant(String refreshToken)XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Methods inherited from interface org.elasticsearch.client.Validatable
validate
-
-
-
-
Constructor Detail
-
CreateTokenRequest
public CreateTokenRequest(String grantType, @Nullable String scope, @Nullable String username, @Nullable char[] password, @Nullable String refreshToken, @Nullable char[] kerberosTicket)
General purpose constructor. This constructor is typically not useful, and one of the following factory methods should be used instead:
-
-
Method Detail
-
passwordGrant
public static CreateTokenRequest passwordGrant(String username, char[] password)
-
refreshTokenGrant
public static CreateTokenRequest refreshTokenGrant(String refreshToken)
-
clientCredentialsGrant
public static CreateTokenRequest clientCredentialsGrant()
-
kerberosGrant
public static CreateTokenRequest kerberosGrant(char[] kerberosTicket)
-
getGrantType
public String getGrantType()
-
getScope
public String getScope()
-
getUsername
public String getUsername()
-
getPassword
public char[] getPassword()
-
getRefreshToken
public String getRefreshToken()
-
getKerberosTicket
public char[] getKerberosTicket()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
-