View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.sys.mail;
20  
21  import org.kuali.rice.core.api.mail.MailMessage;
22  
23  /**
24   * This class extends MailMessage to add attachment support
25   */
26  public class AttachmentMailMessage extends MailMessage {
27  
28      private byte[] content = null;
29      private String type;
30      private String fileName;
31  
32      public AttachmentMailMessage() {
33          super();
34      }
35  
36      public AttachmentMailMessage(MailMessage message) {
37          this.setToAddresses(message.getToAddresses());
38          this.setBccAddresses(message.getBccAddresses());
39          this.setCcAddresses(message.getCcAddresses());
40          this.setSubject(message.getSubject());
41          this.setMessage(message.getMessage());
42          this.setFromAddress(message.getFromAddress());
43      }
44  
45      public byte[] getContent() {
46          return content;
47      }
48  
49      public void setContent(byte[] content) {
50          this.content = content;
51      }
52  
53      public String getType() {
54          return type;
55      }
56  
57      public void setType(String type) {
58          this.type = type;
59      }
60  
61      public String getFileName() {
62          return fileName;
63      }
64  
65      public void setFileName(String fileName) {
66          this.fileName = fileName;
67      }
68  
69  }