cz.mmsparams.api.http.auth.JwtResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.http.auth;
import java.io.Serializable;
public class JwtResponse implements Serializable
{
private String token;
private long expiry;
public JwtResponse()
{
}
public JwtResponse(String token, long expiry)
{
this.token = token;
this.expiry = expiry;
}
public String getToken()
{
return token;
}
public void setToken(String token)
{
this.token = token;
}
public long getExpiry()
{
return expiry;
}
public void setExpiry(long expiry)
{
this.expiry = expiry;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy