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,60 @@
|
|||
package it.acxent.newsletter;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class TemplateMsgCR extends CRAdapter {
|
||||
private long id_templateMsg;
|
||||
|
||||
private String descrizione;
|
||||
|
||||
private long flgTipo;
|
||||
|
||||
private String messaggio;
|
||||
|
||||
public TemplateMsgCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public TemplateMsgCR() {}
|
||||
|
||||
public void setId_templateMsg(long newId_templateMsg) {
|
||||
this.id_templateMsg = newId_templateMsg;
|
||||
}
|
||||
|
||||
public void setDescrizione(String newDescrizione) {
|
||||
this.descrizione = newDescrizione;
|
||||
}
|
||||
|
||||
public void setFlgTipo(long newFlgTipo) {
|
||||
this.flgTipo = newFlgTipo;
|
||||
}
|
||||
|
||||
public void setMessaggio(String newMessaggio) {
|
||||
this.messaggio = newMessaggio;
|
||||
}
|
||||
|
||||
public long getId_templateMsg() {
|
||||
return this.id_templateMsg;
|
||||
}
|
||||
|
||||
public String getDescrizione() {
|
||||
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
||||
}
|
||||
|
||||
public long getFlgTipo() {
|
||||
return this.flgTipo;
|
||||
}
|
||||
|
||||
public String getMessaggio() {
|
||||
return (this.messaggio == null) ? "" : this.messaggio.trim();
|
||||
}
|
||||
|
||||
public static final String getTipo(long l_flgTipo) {
|
||||
return CodaMessaggi.getTipo(l_flgTipo);
|
||||
}
|
||||
|
||||
public String getTipo() {
|
||||
return CodaMessaggi.getTipo(getFlgTipo());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue