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 AllegatoCliforCR extends CRAdapter {
|
||||
private long id_allegatoClifor;
|
||||
|
||||
private long id_clifor;
|
||||
|
||||
private long id_tipoAllegatoClifor;
|
||||
|
||||
private String nomeFile;
|
||||
|
||||
private Clifor clifor;
|
||||
|
||||
private TipoAllegatoClifor tipoAllegatoClifor;
|
||||
|
||||
public AllegatoCliforCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public AllegatoCliforCR() {}
|
||||
|
||||
public void setId_allegatoClifor(long newId_allegatoClifor) {
|
||||
this.id_allegatoClifor = newId_allegatoClifor;
|
||||
}
|
||||
|
||||
public void setId_clifor(long newId_clifor) {
|
||||
this.id_clifor = newId_clifor;
|
||||
setClifor(null);
|
||||
}
|
||||
|
||||
public void setId_tipoAllegatoClifor(long newId_tipoAllegatoClifor) {
|
||||
this.id_tipoAllegatoClifor = newId_tipoAllegatoClifor;
|
||||
setTipoAllegatoClifor(null);
|
||||
}
|
||||
|
||||
public void setNomeFile(String newNomeFile) {
|
||||
this.nomeFile = newNomeFile;
|
||||
}
|
||||
|
||||
public long getId_allegatoClifor() {
|
||||
return this.id_allegatoClifor;
|
||||
}
|
||||
|
||||
public long getId_clifor() {
|
||||
return this.id_clifor;
|
||||
}
|
||||
|
||||
public long getId_tipoAllegatoClifor() {
|
||||
return this.id_tipoAllegatoClifor;
|
||||
}
|
||||
|
||||
public String getNomeFile() {
|
||||
return (this.nomeFile == null) ? "" : this.nomeFile.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 setTipoAllegatoClifor(TipoAllegatoClifor newTipoAllegatoClifor) {
|
||||
this.tipoAllegatoClifor = newTipoAllegatoClifor;
|
||||
}
|
||||
|
||||
public TipoAllegatoClifor getTipoAllegatoClifor() {
|
||||
this.tipoAllegatoClifor = (TipoAllegatoClifor)getSecondaryObject(this.tipoAllegatoClifor, TipoAllegatoClifor.class,
|
||||
|
||||
getId_tipoAllegatoClifor());
|
||||
return this.tipoAllegatoClifor;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue