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,85 @@
|
|||
package it.acxent.rd;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
public class RemoteDeviceCR extends CRAdapter {
|
||||
private static final long serialVersionUID = 2234878834967039209L;
|
||||
|
||||
private long id_remoteDevice;
|
||||
|
||||
private String descrizione;
|
||||
|
||||
private String token;
|
||||
|
||||
private String imei;
|
||||
|
||||
private String ipAddress;
|
||||
|
||||
private Timestamp updTmst;
|
||||
|
||||
private long flgAbilitato = -1L;
|
||||
|
||||
public RemoteDeviceCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public RemoteDeviceCR() {}
|
||||
|
||||
public void setId_remoteDevice(long newId_remoteDevice) {
|
||||
this.id_remoteDevice = newId_remoteDevice;
|
||||
}
|
||||
|
||||
public void setDescrizione(String newDescrizione) {
|
||||
this.descrizione = newDescrizione;
|
||||
}
|
||||
|
||||
public void setToken(String newToken) {
|
||||
this.token = newToken;
|
||||
}
|
||||
|
||||
public void setImei(String newImei) {
|
||||
this.imei = newImei;
|
||||
}
|
||||
|
||||
public void setIpAddress(String newIpAddress) {
|
||||
this.ipAddress = newIpAddress;
|
||||
}
|
||||
|
||||
public void setUpdTmst(Timestamp newUpdTmst) {
|
||||
this.updTmst = newUpdTmst;
|
||||
}
|
||||
|
||||
public long getId_remoteDevice() {
|
||||
return this.id_remoteDevice;
|
||||
}
|
||||
|
||||
public String getDescrizione() {
|
||||
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return (this.token == null) ? "" : this.token.trim();
|
||||
}
|
||||
|
||||
public String getImei() {
|
||||
return (this.imei == null) ? "" : this.imei.trim();
|
||||
}
|
||||
|
||||
public String getIpAddress() {
|
||||
return (this.ipAddress == null) ? "" : this.ipAddress.trim();
|
||||
}
|
||||
|
||||
public Timestamp getUpdTmst() {
|
||||
return this.updTmst;
|
||||
}
|
||||
|
||||
public long getFlgAbilitato() {
|
||||
return this.flgAbilitato;
|
||||
}
|
||||
|
||||
public void setFlgAbilitato(long flgAbilitato) {
|
||||
this.flgAbilitato = flgAbilitato;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue