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,174 @@
|
|||
package it.acxent.anag;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class DestinazioneDiversaCR extends CRAdapter {
|
||||
private long id_destinazioneDiversa;
|
||||
|
||||
private long id_clifor;
|
||||
|
||||
private long id_comuneDD;
|
||||
|
||||
private String id_nazioneDD;
|
||||
|
||||
private String descrizione;
|
||||
|
||||
private String presso;
|
||||
|
||||
private String indirizzoDD;
|
||||
|
||||
private String numeroCivicoDD;
|
||||
|
||||
private String capZonaDD;
|
||||
|
||||
private String telefonoDD;
|
||||
|
||||
private String faxDD;
|
||||
|
||||
private String eMailDD;
|
||||
|
||||
private Clifor clifor;
|
||||
|
||||
private Comune comuneDD;
|
||||
|
||||
private Nazione nazioneDD;
|
||||
|
||||
public DestinazioneDiversaCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public DestinazioneDiversaCR() {}
|
||||
|
||||
public void setId_destinazioneDiversa(long newId_destinazioneDiversa) {
|
||||
this.id_destinazioneDiversa = newId_destinazioneDiversa;
|
||||
}
|
||||
|
||||
public void setId_clifor(long newId_clifor) {
|
||||
this.id_clifor = newId_clifor;
|
||||
setClifor(null);
|
||||
}
|
||||
|
||||
public void setId_comuneDD(long newId_comuneDD) {
|
||||
this.id_comuneDD = newId_comuneDD;
|
||||
setComune(null);
|
||||
}
|
||||
|
||||
public void setId_nazioneDD(String newId_nazioneDD) {
|
||||
this.id_nazioneDD = newId_nazioneDD;
|
||||
setNazione(null);
|
||||
}
|
||||
|
||||
public void setDescrizione(String newDescrizione) {
|
||||
this.descrizione = newDescrizione;
|
||||
}
|
||||
|
||||
public void setPresso(String newPresso) {
|
||||
this.presso = newPresso;
|
||||
}
|
||||
|
||||
public void setIndirizzoDD(String newIndirizzoDD) {
|
||||
this.indirizzoDD = newIndirizzoDD;
|
||||
}
|
||||
|
||||
public void setNumeroCivicoDD(String newNumeroCivicoDD) {
|
||||
this.numeroCivicoDD = newNumeroCivicoDD;
|
||||
}
|
||||
|
||||
public void setCapZonaDD(String newCapZonaDD) {
|
||||
this.capZonaDD = newCapZonaDD;
|
||||
}
|
||||
|
||||
public void setTelefonoDD(String newTelefonoDD) {
|
||||
this.telefonoDD = newTelefonoDD;
|
||||
}
|
||||
|
||||
public void setFaxDD(String newFaxDD) {
|
||||
this.faxDD = newFaxDD;
|
||||
}
|
||||
|
||||
public void setEMailDD(String newEMailDD) {
|
||||
this.eMailDD = newEMailDD;
|
||||
}
|
||||
|
||||
public long getId_destinazioneDiversa() {
|
||||
return this.id_destinazioneDiversa;
|
||||
}
|
||||
|
||||
public long getId_clifor() {
|
||||
return this.id_clifor;
|
||||
}
|
||||
|
||||
public long getId_comuneDD() {
|
||||
return this.id_comuneDD;
|
||||
}
|
||||
|
||||
public String getId_nazioneDD() {
|
||||
return (this.id_nazioneDD == null) ? "" : this.id_nazioneDD.trim();
|
||||
}
|
||||
|
||||
public String getDescrizione() {
|
||||
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
||||
}
|
||||
|
||||
public String getPresso() {
|
||||
return (this.presso == null) ? "" : this.presso.trim();
|
||||
}
|
||||
|
||||
public String getIndirizzoDD() {
|
||||
return (this.indirizzoDD == null) ? "" : this.indirizzoDD.trim();
|
||||
}
|
||||
|
||||
public String getNumeroCivicoDD() {
|
||||
return (this.numeroCivicoDD == null) ? "" : this.numeroCivicoDD.trim();
|
||||
}
|
||||
|
||||
public String getCapZonaDD() {
|
||||
return (this.capZonaDD == null) ? "" : this.capZonaDD.trim();
|
||||
}
|
||||
|
||||
public String getTelefonoDD() {
|
||||
return (this.telefonoDD == null) ? "" : this.telefonoDD.trim();
|
||||
}
|
||||
|
||||
public String getFaxDD() {
|
||||
return (this.faxDD == null) ? "" : this.faxDD.trim();
|
||||
}
|
||||
|
||||
public String getEMailDD() {
|
||||
return (this.eMailDD == null) ? "" : this.eMailDD.trim();
|
||||
}
|
||||
|
||||
public void setClifor(Clifor newClifor) {
|
||||
this.clifor = newClifor;
|
||||
}
|
||||
|
||||
public Clifor getClifor() {
|
||||
this.clifor = (Clifor)getSecondaryObject(this.clifor, Clifor.class,
|
||||
|
||||
getId_clifor());
|
||||
return this.clifor;
|
||||
}
|
||||
|
||||
public void setComune(Comune newComune) {
|
||||
this.comuneDD = newComune;
|
||||
}
|
||||
|
||||
public Comune getComune() {
|
||||
this.comuneDD = (Comune)getSecondaryObject(this.comuneDD, Comune.class,
|
||||
|
||||
getId_comuneDD());
|
||||
return this.comuneDD;
|
||||
}
|
||||
|
||||
public void setNazione(Nazione newNazione) {
|
||||
this.nazioneDD = newNazione;
|
||||
}
|
||||
|
||||
public Nazione getNazione() {
|
||||
this.nazioneDD = (Nazione)getSecondaryObject(this.nazioneDD, Nazione.class,
|
||||
|
||||
getId_nazioneDD());
|
||||
return this.nazioneDD;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue