115 lines
2.1 KiB
Java
115 lines
2.1 KiB
Java
package ZBI.Risk.Server.Value.Mapped
|
|
|
|
|
|
public class Mail
|
|
{
|
|
private string returnPath;
|
|
private string subject;
|
|
private string receivedFrom;
|
|
private string messageID;
|
|
private string mailTo;
|
|
private string mailFrom;
|
|
private string server;
|
|
private int messageLength;
|
|
private DateTime date;
|
|
private string contentType;
|
|
private string contentTransferEncoding;
|
|
private int mailID;
|
|
public string getReturnPath()
|
|
{
|
|
return returnPath;
|
|
}
|
|
public void setReturnPath(string returnPath)
|
|
{
|
|
this.returnPath=returnPath;
|
|
}
|
|
public string getSubject()
|
|
{
|
|
return subject;
|
|
}
|
|
public void setSubject(string subject)
|
|
{
|
|
this.subject=subject;
|
|
}
|
|
public string getReceivedFrom()
|
|
{
|
|
return receivedFrom;
|
|
}
|
|
public void setReceivedFrom(string receivedFrom)
|
|
{
|
|
this.receivedFrom=receivedFrom;
|
|
}
|
|
public string getMessageID()
|
|
{
|
|
return messageID;
|
|
}
|
|
public void setMessageID(string messageID)
|
|
{
|
|
this.messageID=messageID;
|
|
}
|
|
public string getMailTo()
|
|
{
|
|
return mailTo;
|
|
}
|
|
public void setMailTo(string mailTo)
|
|
{
|
|
this.mailTo=mailTo;
|
|
}
|
|
public string getMailFrom()
|
|
{
|
|
return mailFrom;
|
|
}
|
|
public void setMailFrom(string mailFrom)
|
|
{
|
|
this.mailFrom=mailFrom;
|
|
}
|
|
public string getServer()
|
|
{
|
|
return server;
|
|
}
|
|
public void setServer(string server)
|
|
{
|
|
this.server=server;
|
|
}
|
|
public int getMessageLength()
|
|
{
|
|
return messageLength;
|
|
}
|
|
public void setMessageLength(int messageLength)
|
|
{
|
|
this.messageLength=messageLength;
|
|
}
|
|
public DateTime getDate()
|
|
{
|
|
return date;
|
|
}
|
|
public void setDate(DateTime date)
|
|
{
|
|
this.date=date;
|
|
}
|
|
public string getContentType()
|
|
{
|
|
return contentType;
|
|
}
|
|
public void setContentType(string contentType)
|
|
{
|
|
this.contentType=contentType;
|
|
}
|
|
public string getContentTransferEncoding()
|
|
{
|
|
return contentTransferEncoding;
|
|
}
|
|
public void setContentTransferEncoding(string contentTransferEncoding)
|
|
{
|
|
this.contentTransferEncoding=contentTransferEncoding;
|
|
}
|
|
public int getMailID()
|
|
{
|
|
return mailID;
|
|
}
|
|
public void setMailID(int mailID)
|
|
{
|
|
this.mailID=mailID;
|
|
}
|
|
};
|