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