com.clickntap.api.Auth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
The newest version!
package com.clickntap.api;
import java.util.List;
import org.json.JSONObject;
public class Auth {
private BO token;
private List users;
private JSONObject info;
public BO getToken() {
return token;
}
public void setToken(BO token) {
this.token = token;
}
public JSONObject getInfo() {
return info;
}
public void setInfo(JSONObject info) {
this.info = info;
}
public List getUsers() {
return users;
}
public void setUsers(List users) {
this.users = users;
}
}