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,56 @@
|
|||
package it.acxent.newsletter;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class AllegatoTemplateMsgCR extends CRAdapter {
|
||||
private long id_allegatoTemplateMsg;
|
||||
|
||||
private long id_templateMsg;
|
||||
|
||||
private String nomeFile;
|
||||
|
||||
private TemplateMsg templateMsg;
|
||||
|
||||
public AllegatoTemplateMsgCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public AllegatoTemplateMsgCR() {}
|
||||
|
||||
public void setId_allegatoTemplateMsg(long newId_allegatoTemplateMsg) {
|
||||
this.id_allegatoTemplateMsg = newId_allegatoTemplateMsg;
|
||||
}
|
||||
|
||||
public void setId_templateMsg(long newId_templateMsg) {
|
||||
this.id_templateMsg = newId_templateMsg;
|
||||
setTemplateMsg(null);
|
||||
}
|
||||
|
||||
public void setNomeFile(String newNomeFile) {
|
||||
this.nomeFile = newNomeFile;
|
||||
}
|
||||
|
||||
public long getId_allegatoTemplateMsg() {
|
||||
return this.id_allegatoTemplateMsg;
|
||||
}
|
||||
|
||||
public long getId_templateMsg() {
|
||||
return this.id_templateMsg;
|
||||
}
|
||||
|
||||
public String getNomeFile() {
|
||||
return (this.nomeFile == null) ? "" : this.nomeFile.trim();
|
||||
}
|
||||
|
||||
public void setTemplateMsg(TemplateMsg newTemplateMsg) {
|
||||
this.templateMsg = newTemplateMsg;
|
||||
}
|
||||
|
||||
public TemplateMsg getTemplateMsg() {
|
||||
this.templateMsg = (TemplateMsg)getSecondaryObject(this.templateMsg, TemplateMsg.class,
|
||||
|
||||
getId_templateMsg());
|
||||
return this.templateMsg;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue