KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jaspersoft > jasperserver > util > ReportJobMailNotificationBean


1 /*
2  * Copyright (C) 2006 JasperSoft http://www.jaspersoft.com
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed WITHOUT ANY WARRANTY; and without the
10  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  * See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
15  * or write to:
16  *
17  * Free Software Foundation, Inc.,
18  * 59 Temple Place - Suite 330,
19  * Boston, MA USA 02111-1307
20  */

21 package com.jaspersoft.jasperserver.util;
22
23
24 /**
25  * @author tkavanagh
26  * @version $Id: ReportJobMailNotificationBean.java 3729 2006-06-16 15:10:08Z tony $
27  */

28
29
30 public class ReportJobMailNotificationBean {
31
32     private long id;
33     private int version;
34     private String JavaDoc[] toAddresses;
35     private String JavaDoc[] ccAddresses;
36     private String JavaDoc[] bccAddresses;
37     private String JavaDoc subject;
38     private String JavaDoc messageText;
39     private byte resultSendType;
40     
41     public long getId() {
42         return id;
43     }
44     
45     public void setId(long id) {
46         this.id = id;
47     }
48
49     public int getVersion() {
50         return version;
51     }
52     
53     public void setVersion(int version) {
54         this.version = version;
55     }
56
57     public String JavaDoc[] getToAddresses() {
58         return toAddresses;
59     }
60     
61     public void setToAddresses(String JavaDoc[] toAddresses) {
62         this.toAddresses = toAddresses;
63     }
64
65     public String JavaDoc[] getCcAddresses() {
66         return ccAddresses;
67     }
68     
69     public void setCcAddresses(String JavaDoc[] ccAddresses) {
70         this.ccAddresses = ccAddresses;
71     }
72     
73     public String JavaDoc[] getBccAddresses() {
74         return bccAddresses;
75     }
76     public void setBccAddresses(String JavaDoc[] bccAddresses) {
77         this.bccAddresses = bccAddresses;
78     }
79     
80     public String JavaDoc getSubject() {
81         return subject;
82     }
83     
84     public void setSubject(String JavaDoc subject) {
85         this.subject = subject;
86     }
87     
88     public String JavaDoc getMessageText() {
89         return messageText;
90     }
91     
92     public void setMessageText(String JavaDoc messageText) {
93         this.messageText = messageText;
94     }
95     
96     public byte getResultSendType() {
97         return resultSendType;
98     }
99     
100     public void setResultSendType(byte resultSendType) {
101         this.resultSendType = resultSendType;
102     }
103
104 }
105
Popular Tags