View Javadoc
1   /**
2    * Copyright 2011-2012 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.mobility.reporting.domain;
17  
18  import java.io.Serializable;
19  import java.util.List;
20  
21  import org.kuali.mobility.reporting.entity.SubmissionAttribute;
22  import org.springframework.web.multipart.MultipartFile;
23  
24  public class Incident implements Serializable {
25  
26  	private static final long serialVersionUID = 1844528404920336947L;
27          
28  	private Long id;
29  	
30  	private String newComment;
31  	
32      private String userAgent;
33      
34      private String summary;
35      
36      private String email;
37      
38      private String affiliationStudent;
39      
40      private String affiliationFaculty;
41      
42      private String affiliationStaff;
43  
44      private String affiliationOther;
45      
46      private boolean contactMe;
47  
48      private MultipartFile file;
49  
50      private List<SubmissionAttribute> attachments;
51  
52      private List<SubmissionAttribute> comments;
53      
54  	public String getUserAgent() {
55  		return userAgent;
56  	}
57  
58  	public void setUserAgent(String userAgent) {
59  		this.userAgent = userAgent;
60  	}
61  
62  	public String getSummary() {
63  		return summary;
64  	}
65  
66  	public void setSummary(String summary) {
67  		this.summary = summary;
68  	}
69  
70  	public String getEmail() {
71  		return email;
72  	}
73  
74  	public void setEmail(String email) {
75  		this.email = email;
76  	}
77  
78  	public String getAffiliationStudent() {
79  		return affiliationStudent;
80  	}
81  
82  	public void setAffiliationStudent(String affiliationStudent) {
83  		this.affiliationStudent = affiliationStudent;
84  	}
85  
86  	public String getAffiliationFaculty() {
87  		return affiliationFaculty;
88  	}
89  
90  	public void setAffiliationFaculty(String affiliationFaculty) {
91  		this.affiliationFaculty = affiliationFaculty;
92  	}
93  
94  	public String getAffiliationStaff() {
95  		return affiliationStaff;
96  	}
97  
98  	public void setAffiliationStaff(String affiliationStaff) {
99  		this.affiliationStaff = affiliationStaff;
100 	}
101 
102 	public String getAffiliationOther() {
103 		return affiliationOther;
104 	}
105 
106 	public void setAffiliationOther(String affiliationOther) {
107 		this.affiliationOther = affiliationOther;
108 	}
109 
110 	public boolean isContactMe() {
111 		return contactMe;
112 	}
113 
114 	public void setContactMe(boolean contactMe) {
115 		this.contactMe = contactMe;
116 	}
117 
118 	public MultipartFile getFile() {
119 		return file;
120 	}
121 
122 	public void setFile(MultipartFile file) {
123 		this.file = file;
124 	}
125 
126 	public Long getId() {
127 		return id;
128 	}
129 
130 	public void setId(Long id) {
131 		this.id = id;
132 	}
133 
134 	public List<SubmissionAttribute> getAttachments() {
135 		return attachments;
136 	}
137 
138 	public void setAttachments(List<SubmissionAttribute> attachments) {
139 		this.attachments = attachments;
140 	}
141 
142 	public List<SubmissionAttribute> getComments() {
143 		return comments;
144 	}
145 
146 	public void setComments(List<SubmissionAttribute> comments) {
147 		this.comments = comments;
148 	}
149 
150 	public String getNewComment() {
151 		return newComment;
152 	}
153 
154 	public void setNewComment(String newComment) {
155 		this.newComment = newComment;
156 	}
157     
158 }