1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.kuali.coeus.s2sgen.api.generate;
20
21
22
23
24
25 public class AttachmentData {
26 private String fileName;
27 private String contentId;
28 private byte[] content;
29 private String contentType;
30 private String hashValue;
31
32 public String getFileName() {
33 return fileName;
34 }
35
36 public void setFileName(String FileName) {
37 this.fileName = FileName;
38 }
39
40 public String getContentId() {
41 return contentId;
42 }
43
44 public void setContentId(String contentId) {
45 this.contentId = contentId;
46 }
47
48 public byte[] getContent() {
49 return content;
50 }
51
52 public void setContent(byte[] Content) {
53 this.content = Content;
54 }
55
56 public String getContentType() {
57 return contentType;
58 }
59
60 public void setContentType(String ContentType) {
61 this.contentType = ContentType;
62 }
63
64 public String getHashValue() {
65 return hashValue;
66 }
67
68 public void setHashValue(String hashValue) {
69 this.hashValue = hashValue;
70 }
71
72 }