Class OAuthClient
-
- All Implemented Interfaces:
-
com.sap.cloud.mobile.foundation.model.AbstractOAuthClient
@Serializable() public final class OAuthClient implements AbstractOAuthClient
OAuth client configuration
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classOAuthClient.Builder
-
Field Summary
Fields Modifier and Type Field Description private final StringredirectURLprivate final StringclientIDprivate final StringgrantType
-
Constructor Summary
Constructors Constructor Description OAuthClient(String clientID, String _redirectUrl, String grantType)
-
Method Summary
Modifier and Type Method Description StringgetRedirectURL()StringgetClientID()StringgetGrantType()StringtoString()final static OAuthClientcreateClientFromJsonString(String str)The str might come from other sources, it will be different as the serializer generates, so we need to parse with json -
-
Method Detail
-
getRedirectURL
String getRedirectURL()
-
getClientID
String getClientID()
-
getGrantType
String getGrantType()
-
toString
String toString()
-
createClientFromJsonString
final static OAuthClient createClientFromJsonString(String str)
The str might come from other sources, it will be different as the serializer generates, so we need to parse with json
-
-
-
-