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

fm.pattern.tokamak.sdk.ClientCredentials Maven / Gradle / Ivy

The newest version!
package fm.pattern.tokamak.sdk;

public class ClientCredentials {

	private String clientId;
	private String secret;

	public ClientCredentials() {

	}

	public ClientCredentials(String clientId, String secret) {
		this.clientId = clientId;
		this.secret = secret;
	}

	public String getClientId() {
		return clientId;
	}

	public void setClientId(String clientId) {
		this.clientId = clientId;
	}

	public String getSecret() {
		return secret;
	}

	public void setSecret(String secret) {
		this.secret = secret;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy