Class GUIEmail
- java.lang.Object
-
- com.logicaldoc.gui.common.client.beans.GUIEmail
-
- All Implemented Interfaces:
Serializable
public class GUIEmail extends Object implements Serializable
GUI representation of an e-mail to be sent- Since:
- 6.0
- Author:
- Marco Meschieri - LogicalDOC
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GUIEmail()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GUIDocument[]
getAttachments()
GUIContact[]
getBccs()
GUIContact[]
getCcs()
long[]
getDocIds()
GUIContact
getFrom()
String
getMessage()
Date
getReceived()
GUIContact
getReplyTo()
Date
getSent()
String
getSubject()
GUIContact[]
getTos()
GUIUser
getUser()
boolean
isPdfConversion()
boolean
isSendAsTicket()
boolean
isSigned()
boolean
isZipCompression()
void
setAttachments(GUIDocument[] attachments)
void
setBccs(GUIContact[] bccs)
void
setCcs(GUIContact[] ccs)
void
setDocIds(long[] docIds)
void
setFrom(GUIContact from)
void
setMessage(String message)
void
setPdfConversion(boolean pdfConversion)
void
setReceived(Date received)
void
setReplyTo(GUIContact replyTo)
void
setSendAsTicket(boolean sendAsTicket)
void
setSent(Date sent)
void
setSigned(boolean signed)
void
setSubject(String subject)
void
setTos(GUIContact[] tos)
void
setUser(GUIUser user)
void
setZipCompression(boolean zipCompression)
-
-
-
Method Detail
-
isSigned
public boolean isSigned()
-
setSigned
public void setSigned(boolean signed)
-
getSubject
public String getSubject()
-
setSubject
public void setSubject(String subject)
-
isSendAsTicket
public boolean isSendAsTicket()
-
setSendAsTicket
public void setSendAsTicket(boolean sendAsTicket)
-
getMessage
public String getMessage()
-
setMessage
public void setMessage(String message)
-
getUser
public GUIUser getUser()
-
setUser
public void setUser(GUIUser user)
-
getDocIds
public long[] getDocIds()
-
setDocIds
public void setDocIds(long[] docIds)
-
isZipCompression
public boolean isZipCompression()
-
setZipCompression
public void setZipCompression(boolean zipCompression)
-
isPdfConversion
public boolean isPdfConversion()
-
setPdfConversion
public void setPdfConversion(boolean pdfConversion)
-
getReplyTo
public GUIContact getReplyTo()
-
setReplyTo
public void setReplyTo(GUIContact replyTo)
-
getTos
public GUIContact[] getTos()
-
setTos
public void setTos(GUIContact[] tos)
-
getCcs
public GUIContact[] getCcs()
-
setCcs
public void setCcs(GUIContact[] ccs)
-
getBccs
public GUIContact[] getBccs()
-
setBccs
public void setBccs(GUIContact[] bccs)
-
getSent
public Date getSent()
-
setSent
public void setSent(Date sent)
-
getReceived
public Date getReceived()
-
setReceived
public void setReceived(Date received)
-
getFrom
public GUIContact getFrom()
-
setFrom
public void setFrom(GUIContact from)
-
getAttachments
public GUIDocument[] getAttachments()
-
setAttachments
public void setAttachments(GUIDocument[] attachments)
-
-