Add LoginToken
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Umberto Furno 2019-11-14 15:48:57 +01:00
parent 8097987298
commit 8e5c93fb04
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
package wekan.wrapper.entity;
/**
* contains the hash code of the access token and the date of that access
*/
public class LoginToken {
public String getWhen() {
return when;
}
public void setWhen(String when) {
this.when = when;
}
public String getHashedToken() {
return hashedToken;
}
public void setHashedToken(String hashedToken) {
this.hashedToken = hashedToken;
}
@Override
public String toString() {
return "LoginToken{" +
"when='" + when + '\'' +
", hashedToken='" + hashedToken + '\'' +
'}';
}
private String when;
private String hashedToken;
}