
com.plenigo.sdk.models.AppAccessToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK wrapping plenigo REST-API for easier usage.
package com.plenigo.sdk.models;
/**
*
* This class is used to represent application access tokens.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public class AppAccessToken {
private String customerId;
private String token;
/**
* Constructor with the required fields.
*
* @param customerId customer id
* @param token token
*/
public AppAccessToken(String customerId, String token) {
this.customerId = customerId;
this.token = token;
}
/**
* Returns the customer id.
*
* @return customer id
*/
public String getCustomerId() {
return customerId;
}
/**
* Returns the token.
*
* @return token
*/
public String getToken() {
return token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy