All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.paypal.base.ClientCredentials Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
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