View Javadoc
1   /*
2    * Copyright 2011 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl1.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.select.businessobject;
17  
18  import org.kuali.rice.core.api.mo.common.active.Inactivatable;
19  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
20  
21  import java.util.LinkedHashMap;
22  
23  public class OleLineItemCorrectionReceivingDoc extends PersistableBusinessObjectBase implements Inactivatable {
24  
25      private Integer lineItemId;
26      private Integer receivingLineItemIdentifier;
27      private String itemTitleId;
28      private boolean active;
29      private OleCorrectionReceivingItem receivingLineItem;
30  
31  
32      public Integer getLineItemId() {
33          return lineItemId;
34      }
35  
36      public void setLineItemId(Integer lineItemId) {
37          this.lineItemId = lineItemId;
38      }
39  
40      public Integer getReceivingLineItemIdentifier() {
41          return receivingLineItemIdentifier;
42      }
43  
44      public void setReceivingLineItemIdentifier(Integer receivingLineItemIdentifier) {
45          this.receivingLineItemIdentifier = receivingLineItemIdentifier;
46      }
47  
48      public String getItemTitleId() {
49          return itemTitleId;
50      }
51  
52      public void setItemTitleId(String itemTitleId) {
53          this.itemTitleId = itemTitleId;
54      }
55  
56  
57      public OleCorrectionReceivingItem getReceivingLineItem() {
58          return receivingLineItem;
59      }
60  
61      public void setReceivingLineItem(OleCorrectionReceivingItem receivingLineItem) {
62          this.receivingLineItem = receivingLineItem;
63      }
64  
65      protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
66          // TODO Auto-generated method stub
67          LinkedHashMap m = new LinkedHashMap();
68          m.put("receivingLineItemIdentifier", this.receivingLineItemIdentifier);
69          return m;
70      }
71  
72      @Override
73      public boolean isActive() {
74          // TODO Auto-generated method stub
75          return active;
76      }
77  
78      public void setActive(boolean arg0) {
79          // TODO Auto-generated method stub
80          this.active = active;
81  
82      }
83  
84  
85  }