
com.trimble.id.TokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trimble-id Show documentation
Show all versions of trimble-id Show documentation
Trimble Identity OAuth Client library holds the client classes that are used for communicating with Trimble Identity Service
The newest version!
package com.trimble.id;
import java.util.List;
public class TokenRequest {
private String clientId;
private String clientSecret;
List nameValuePairs;
public TokenRequest(String clientId, String clientSecret, List nameValuePairs) {
super();
this.clientId = clientId;
this.clientSecret = clientSecret;
this.nameValuePairs = nameValuePairs;
}
public TokenRequest(String clientId, String clientSecret) {
super();
this.clientId = clientId;
this.clientSecret = clientSecret;
}
public TokenRequest(String clientId, List nameValuePairs) {
super();
this.clientId = clientId;
this.nameValuePairs = nameValuePairs;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
public List getFormEntries() {
return nameValuePairs;
}
public void setFormEntries(List nameValuePairs) {
this.nameValuePairs = nameValuePairs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy