Class ServicePrincipalCredentials
- java.lang.Object
-
- com.adobe.pdfservices.operation.auth.ServicePrincipalCredentials
-
- All Implemented Interfaces:
Credentials
public class ServicePrincipalCredentials extends Object implements Credentials
Service Principal credentials allow your application to call PDF Services API. For getting the credentials, Click Here
-
-
Constructor Summary
Constructors Constructor Description ServicePrincipalCredentials(String clientId, String clientSecret)
Creates an instance ofServicePrincipalCredentials
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClientId()
Client IdString
getClientSecret()
Client Secret
-
-
-
Constructor Detail
-
ServicePrincipalCredentials
public ServicePrincipalCredentials(String clientId, String clientSecret)
Creates an instance ofServicePrincipalCredentials
.- Parameters:
clientId
- client Id forServicePrincipalCredentials
; can not be null or empty.clientSecret
- client secret forServicePrincipalCredentials
; can not be null or empty.
-
-