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,80 @@
|
|||
package it.acxent.anag;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class NazioneCR extends CRAdapter {
|
||||
private long id_nazione;
|
||||
|
||||
private long flgCeeS = -1L;
|
||||
|
||||
private String id_lingua;
|
||||
|
||||
private long flgAttivaS = -1L;
|
||||
|
||||
private long flgGoogleMerchantS = -1L;
|
||||
|
||||
private long flgPreventivoWwwS = -1L;
|
||||
|
||||
public NazioneCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public NazioneCR() {}
|
||||
|
||||
public void setId_nazione(long newId_nazione) {
|
||||
this.id_nazione = newId_nazione;
|
||||
}
|
||||
|
||||
public void setFlgCeeS(long newFlgCee) {
|
||||
this.flgCeeS = newFlgCee;
|
||||
}
|
||||
|
||||
public long getId_nazione() {
|
||||
return this.id_nazione;
|
||||
}
|
||||
|
||||
public long getFlgCeeS() {
|
||||
return this.flgCeeS;
|
||||
}
|
||||
|
||||
public String getId_lingua() {
|
||||
return (this.id_lingua == null) ? AB_EMPTY_STRING : this.id_lingua.trim();
|
||||
}
|
||||
|
||||
public void setId_lingua(String newId_lingua) {
|
||||
this.id_lingua = newId_lingua;
|
||||
}
|
||||
|
||||
public long getFlgAttivaS() {
|
||||
return this.flgAttivaS;
|
||||
}
|
||||
|
||||
public void setFlgAttivaS(long flgAttivaS) {
|
||||
this.flgAttivaS = flgAttivaS;
|
||||
}
|
||||
|
||||
public static final String getCeeS(long l_flgCee) {
|
||||
return Nazione.getCee(l_flgCee);
|
||||
}
|
||||
|
||||
public String getCeeS() {
|
||||
return Nazione.getCee(getFlgCeeS());
|
||||
}
|
||||
|
||||
public long getFlgGoogleMerchantS() {
|
||||
return this.flgGoogleMerchantS;
|
||||
}
|
||||
|
||||
public void setFlgGoogleMerchantS(long flgGoogleMerchant) {
|
||||
this.flgGoogleMerchantS = flgGoogleMerchant;
|
||||
}
|
||||
|
||||
public long getFlgPreventivoWwwS() {
|
||||
return this.flgPreventivoWwwS;
|
||||
}
|
||||
|
||||
public void setFlgPreventivoWwwS(long flgPreventivoWwwS) {
|
||||
this.flgPreventivoWwwS = flgPreventivoWwwS;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue