new feature
This commit is contained in:
parent
eba0552540
commit
12274d0791
13
wrapper/src/main/java/wekan/wrapper/entity/Action.java
Normal file
13
wrapper/src/main/java/wekan/wrapper/entity/Action.java
Normal file
@ -0,0 +1,13 @@
|
||||
package wekan.wrapper.entity;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public enum Action {
|
||||
|
||||
@SerializedName("takeOwnership")
|
||||
TAKE_OWNERSHIP,
|
||||
@SerializedName("disableLogin")
|
||||
DISABLE_LOGIN,
|
||||
@SerializedName("enableLogin")
|
||||
ENABLE_LOGIN
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
package wekan.wrapper.entity;
|
||||
|
||||
public class UserPrototype {
|
||||
|
||||
public UserPrototype(String id, String token, String tokenExpires) {
|
||||
this.id = id;
|
||||
this.token = token;
|
||||
this.tokenExpires = tokenExpires;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "User{" +
|
||||
"id='" + id + '\'' +
|
||||
", token='" + token + '\'' +
|
||||
", tokenExpires='" + tokenExpires + '\'' +
|
||||
'}';
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public String getTokenExpires() {
|
||||
return tokenExpires;
|
||||
}
|
||||
|
||||
public void setTokenExpires(String tokenExpires) {
|
||||
this.tokenExpires = tokenExpires;
|
||||
}
|
||||
|
||||
private String id;
|
||||
private String token;
|
||||
private String tokenExpires;
|
||||
}
|
Loading…
Reference in New Issue
Block a user