Package org.jclouds.oauth.v2.domain
Class ClientSecret
- java.lang.Object
-
- org.jclouds.oauth.v2.domain.ClientSecret
-
public abstract class ClientSecret extends Object
Details corresponding the a client_credential Azure AD Oauth request
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract String
clientId()
The ID of the client.abstract String
clientSecret()
The secret of the client.static ClientSecret
create(String clientId, String clientSecret, String resource, String scope)
abstract String
resource()
The resource to authorize against.abstract String
scope()
The scope(s) to authorize against.
-
-
-
Method Detail
-
clientId
public abstract String clientId()
The ID of the client.
-
clientSecret
public abstract String clientSecret()
The secret of the client.
-
resource
public abstract String resource()
The resource to authorize against.
-
create
public static ClientSecret create(String clientId, String clientSecret, String resource, String scope)
-
-