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 OleReceivingLineExceptionNotes extends PersistableBusinessObjectBase {
27
28 private Integer receivingItemExceptionId;
29 private Integer receivingLineItemIdentifier;
30 private Integer exceptionTypeId;
31 private String exceptionNotes;
32 private OleExceptionType exceptionType;
33 private OleLineItemReceivingItem receivingLineItem;
34
35
36
37
38
39
40 public Integer getReceivingItemExceptionId() {
41 return receivingItemExceptionId;
42 }
43
44
45
46
47
48
49 public void setReceivingItemExceptionId(Integer receivingItemExceptionId) {
50 this.receivingItemExceptionId = receivingItemExceptionId;
51 }
52
53
54
55
56
57
58 public Integer getReceivingLineItemIdentifier() {
59 return receivingLineItemIdentifier;
60 }
61
62
63
64
65
66
67 public void setReceivingLineItemIdentifier(Integer receivingLineItemIdentifier) {
68 this.receivingLineItemIdentifier = receivingLineItemIdentifier;
69 }
70
71
72
73
74
75
76 public Integer getExceptionTypeId() {
77 return exceptionTypeId;
78 }
79
80
81
82
83
84
85 public void setExceptionTypeId(Integer exceptionTypeId) {
86 this.exceptionTypeId = exceptionTypeId;
87 }
88
89
90
91
92
93
94 public String getExceptionNotes() {
95 return exceptionNotes;
96 }
97
98
99
100
101
102
103 public void setExceptionNotes(String exceptionNotes) {
104 this.exceptionNotes = exceptionNotes;
105 }
106
107
108
109
110
111
112 public OleExceptionType getExceptionType() {
113 return exceptionType;
114 }
115
116
117
118
119
120
121 public void setExceptionType(OleExceptionType exceptionType) {
122 this.exceptionType = exceptionType;
123 }
124
125
126
127
128
129
130 public OleLineItemReceivingItem getReceivingLineItem() {
131 return receivingLineItem;
132 }
133
134
135
136
137
138
139 public void setReceivingLineItem(OleLineItemReceivingItem receivingLineItem) {
140 this.receivingLineItem = receivingLineItem;
141 }
142
143
144
145
146
147 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
148 LinkedHashMap map = new LinkedHashMap();
149 map.put("receivingLineItemIdentifier", receivingLineItemIdentifier);
150 map.put("receivingItemExceptionId", receivingItemExceptionId);
151 map.put("exceptionTypeId", exceptionTypeId);
152 map.put("exceptionNotes", exceptionNotes);
153
154 return map;
155 }
156 }