Package de.xima.fc.mdl.mail
Class SupportInquiryData
- java.lang.Object
- 
- de.xima.fc.mdl.mail.SupportInquiryData
 
- 
- All Implemented Interfaces:
- ISupportInquiryData,- Serializable
 
 public class SupportInquiryData extends Object implements ISupportInquiryData Model containing information of support inquiries- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description SupportInquiryData(String sender, String subject, String question, List<Long> formExportIds, List<String> appenderNames, int logLimit)Deprecated.UseSupportInquiryDataBuilderinstead
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description List<String>getAppenderNames()Deprecated.Map<String,byte[]>getFileAttachments()Returns aMapof file attachment data that should be attached to the support inquiry.List<Long>getFormExportIds()intgetLogLimit()StringgetQuestion()StringgetSender()StringgetSubject()StringtoString()
 
- 
- 
- 
Constructor Detail- 
SupportInquiryData@Deprecated public SupportInquiryData(String sender, String subject, String question, List<Long> formExportIds, List<String> appenderNames, int logLimit) Deprecated.UseSupportInquiryDataBuilderinstead
 
- 
 - 
Method Detail- 
getSenderpublic String getSender() - Specified by:
- getSenderin interface- ISupportInquiryData
- Returns:
- The email address of the user who sent this inquiry.
 
 - 
getSubjectpublic String getSubject() - Specified by:
- getSubjectin interface- ISupportInquiryData
- Returns:
- The subject of this inquiry, as plain text.
 
 - 
getQuestionpublic String getQuestion() - Specified by:
- getQuestionin interface- ISupportInquiryData
- Returns:
- The question of this support inquiry, as HTML.
 
 - 
getFormExportIdspublic List<Long> getFormExportIds() - Specified by:
- getFormExportIdsin interface- ISupportInquiryData
- Returns:
- List of form IDs that should be attached to the support inquiry.
 
 - 
getAppenderNames@Deprecated public List<String> getAppenderNames() Deprecated.- Specified by:
- getAppenderNamesin interface- ISupportInquiryData
- Returns:
- List of log appenders whose log files that should be attached to the support inquiry.
 
 - 
getFileAttachmentspublic Map<String,byte[]> getFileAttachments() Description copied from interface:ISupportInquiryDataReturns aMapof file attachment data that should be attached to the support inquiry. The map key is the name of the file. The map value is the file data.- Specified by:
- getFileAttachmentsin interface- ISupportInquiryData
- Returns:
- Mapof file attachment data that should be attached to the support inquiry
 
 - 
getLogLimitpublic int getLogLimit() - Specified by:
- getLogLimitin interface- ISupportInquiryData
- Returns:
- The limit in seconds of how much of each log file should be attached to the inquiry. Only log entries that were made within the interval [now-getLogLimit, now] are attached to inquiry.
 
 
- 
 
-