Package io.muserver.openapi
Class OAuthFlowsObject
- java.lang.Object
-
- io.muserver.openapi.OAuthFlowsObject
-
public class OAuthFlowsObject extends java.lang.Object
- See Also:
OAuthFlowsObjectBuilder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OAuthFlowObject
authorizationCode()
OAuthFlowObject
clientCredentials()
OAuthFlowObject
implicit()
OAuthFlowObject
password()
void
writeJson(java.io.Writer writer)
-
-
-
Method Detail
-
writeJson
public void writeJson(java.io.Writer writer) throws java.io.IOException
- Throws:
java.io.IOException
-
implicit
public OAuthFlowObject implicit()
- Returns:
- the value described by
OAuthFlowsObjectBuilder.withImplicit(io.muserver.openapi.OAuthFlowObject)
-
password
public OAuthFlowObject password()
- Returns:
- the value described by
OAuthFlowsObjectBuilder.withPassword(io.muserver.openapi.OAuthFlowObject)
-
clientCredentials
public OAuthFlowObject clientCredentials()
- Returns:
- the value described by
OAuthFlowsObjectBuilder.withClientCredentials(io.muserver.openapi.OAuthFlowObject)
-
authorizationCode
public OAuthFlowObject authorizationCode()
- Returns:
- the value described by
OAuthFlowsObjectBuilder.withAuthorizationCode(io.muserver.openapi.OAuthFlowObject)
-
-