1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.select.businessobject;
17
18 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
19
20 import java.util.LinkedHashMap;
21
22
23
24
25
26 public class OleCorrectionReceivingItemReceiptNotes extends PersistableBusinessObjectBase {
27
28 private Integer receivingCorrectionLineItemNoteId;
29 private Integer receivingItemIdentifier;
30 private Integer noteTypeId;
31 private String notes;
32 private OleNoteType noteType;
33 private OleCorrectionReceivingItem correctionReceivingItem;
34 private boolean notesAck = false;
35
36
37
38
39 public OleCorrectionReceivingItemReceiptNotes() {
40
41 }
42
43
44
45
46
47
48 public OleCorrectionReceivingItemReceiptNotes(OleLineItemReceivingReceiptNotes oleReceivingNotes) {
49 this.setNoteTypeId(oleReceivingNotes.getNoteTypeId());
50 this.setNotes(oleReceivingNotes.getNotes());
51 }
52
53
54
55
56
57
58 public Integer getReceivingCorrectionLineItemNoteId() {
59 return receivingCorrectionLineItemNoteId;
60 }
61
62
63
64
65
66
67
68 public void setReceivingCorrectionLineItemNoteId(Integer receivingCorrectionLineItemNoteId) {
69 this.receivingCorrectionLineItemNoteId = receivingCorrectionLineItemNoteId;
70 }
71
72
73
74
75
76
77 public Integer getReceivingItemIdentifier() {
78 return receivingItemIdentifier;
79 }
80
81
82
83
84
85
86
87 public void setReceivingItemIdentifier(Integer receivingItemIdentifier) {
88 this.receivingItemIdentifier = receivingItemIdentifier;
89 }
90
91
92
93
94
95
96 public Integer getNoteTypeId() {
97 return noteTypeId;
98 }
99
100
101
102
103
104
105 public void setNoteTypeId(Integer noteTypeId) {
106 this.noteTypeId = noteTypeId;
107 }
108
109
110
111
112
113
114 public String getNotes() {
115 return notes;
116 }
117
118
119
120
121
122
123 public void setNotes(String notes) {
124 this.notes = notes;
125 }
126
127
128
129
130
131
132 public OleNoteType getNoteType() {
133 return noteType;
134 }
135
136
137
138
139
140
141 public void setNoteType(OleNoteType noteType) {
142 this.noteType = noteType;
143 }
144
145
146
147
148
149
150 public OleCorrectionReceivingItem getCorrectionReceivingItem() {
151 return correctionReceivingItem;
152 }
153
154
155
156
157
158
159 public void setCorrectionReceivingItem(OleCorrectionReceivingItem correctionReceivingItem) {
160 this.correctionReceivingItem = correctionReceivingItem;
161 }
162
163
164
165
166
167
168 public boolean isNotesAck() {
169 return notesAck;
170 }
171
172
173
174
175
176
177 public void setNotesAck(boolean notesAck) {
178 this.notesAck = notesAck;
179 }
180
181
182
183
184
185 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
186 LinkedHashMap map = new LinkedHashMap();
187 map.put("receivingItemIdentifier", receivingItemIdentifier);
188 map.put("receivingCorrectionLineItemNoteId", receivingCorrectionLineItemNoteId);
189 map.put("noteTypeId", noteTypeId);
190 map.put("notes", notes);
191
192 return map;
193 }
194 }