com.podio.oauth.OAuthClientCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
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;
}
}