Class OAuthFlow
- java.lang.Object
-
- io.vertx.reactivex.openapi.contract.OAuthFlow
-
- All Implemented Interfaces:
RxDelegate
public class OAuthFlow extends Object implements RxDelegate
Represents an OAuth Flow Object (the configuration). NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<OAuthFlow>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetAuthorizationUrl()The authorization URL to be used for this flow.OAuthFlowgetDelegate()StringgetRefreshUrl()The URL to be used for obtaining refresh tokens.Set<String>getScopes()The available scopes for the OAuth2 security scheme.StringgetTokenUrl()The token URL to be used for this flow.inthashCode()static OAuthFlownewInstance(OAuthFlow arg)StringtoString()
-
-
-
Method Detail
-
getDelegate
public OAuthFlow getDelegate()
- Specified by:
getDelegatein interfaceRxDelegate
-
getAuthorizationUrl
public String getAuthorizationUrl()
The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.- Returns:
-
getTokenUrl
public String getTokenUrl()
The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.- Returns:
-
getRefreshUrl
public String getRefreshUrl()
The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.- Returns:
-
getScopes
public Set<String> getScopes()
The available scopes for the OAuth2 security scheme. A set of the scope names. The set MAY be empty.- Returns:
-
-