com.cloudcontrolled.api.client.auth.TokenStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cctrl-api-client Show documentation
Show all versions of cctrl-api-client Show documentation
Java cloudControl API client
The newest version!
package com.cloudcontrolled.api.client.auth;
/**
*
* TokenStore class.
*
*
* @author Denis Neuling ([email protected])
*
*/
public class TokenStore {
private String token;
/**
*
* Constructor for TokenStore.
*
*/
public TokenStore() {
}
/**
*
* Getter for the field token
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getToken() {
return token;
}
/**
*
* Setter for the field token
.
*
*
* @param token
* a {@link java.lang.String} object.
*/
public void setToken(String token) {
this.token = token;
}
}