com.paypal.base.ClientCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
package com.paypal.base;
/**
* ClientCredentials
holds Client ID and Client Secret
*/
public class ClientCredentials {
/**
* Client ID
*/
private String clientID;
/**
* Client Secret
*/
private String clientSecret;
public ClientCredentials() {
super();
}
/**
* @return the clientID
*/
public String getClientID() {
return clientID;
}
/**
* @param clientID
* the clientID to set
*/
public void setClientID(String clientID) {
this.clientID = clientID;
}
/**
* @return the clientSecret
*/
public String getClientSecret() {
return clientSecret;
}
/**
* @param clientSecret
* the clientSecret to set
*/
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy