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

com.podio.oauth.OAuthClientCredentials Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.oauth;

public final class OAuthClientCredentials {

	private final String clientId;

	private final String clientSecret;

	public OAuthClientCredentials(String clientId, String clientSecret) {
		super();
		this.clientId = clientId;
		this.clientSecret = clientSecret;
	}

	@Override
	public String toString() {
		return "OAuthClientCredentials [clientId=" + clientId
				+ ", clientSecret=" + clientSecret + "]";
	}

	public String getClientId() {
		return clientId;
	}

	public String getClientSecret() {
		return clientSecret;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy