www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,48 @@
|
|||
package it.acxent.rd.json;
|
||||
|
||||
public class RdResponseJ {
|
||||
public static final long STATUS_ALTRO_ERRORE = 99L;
|
||||
|
||||
public static final long STATUS_TOKEN_GIA_ASSEGNATO = 2L;
|
||||
|
||||
public static final long STATUS_TOKEN_NON_TROVATO = 1L;
|
||||
|
||||
public static final long STATUS_OK = 0L;
|
||||
|
||||
private String msg;
|
||||
|
||||
public RdResponseJ(long status, String msg) {
|
||||
this.status = status;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
private long status = 0L;
|
||||
|
||||
private String appVersion;
|
||||
|
||||
public RdResponseJ() {}
|
||||
|
||||
public String getMsg() {
|
||||
return this.msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public long getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(long status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getAppVersion() {
|
||||
return this.appVersion;
|
||||
}
|
||||
|
||||
public void setAppVersion(String appVersion) {
|
||||
this.appVersion = appVersion;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue