85 lines
1.8 KiB
Java
85 lines
1.8 KiB
Java
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;
|
|
}
|
|
}
|