
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;
}
public String getClientId() {
return clientId;
}
public String getClientSecret() {
return clientSecret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy