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.krad.bo.PersistableBusinessObjectBase;
19  
20  import java.util.LinkedHashMap;
21  
22  public class OleLineItemReceivingDoc extends PersistableBusinessObjectBase {
23  
24      private Integer lineItemId;
25      private Integer receivingLineItemIdentifier;
26      private String itemTitleId;
27      private OleLineItemReceivingItem receivingLineItem;
28  
29      public Integer getLineItemId() {
30          return lineItemId;
31      }
32  
33      public void setLineItemID(Integer lineItemId) {
34          this.lineItemId = lineItemId;
35      }
36  
37      public Integer getReceivingLineItemIdentifier() {
38          return receivingLineItemIdentifier;
39      }
40  
41      public void setReceivingLineItemIdentifier(Integer receivingLineItemIdentifier) {
42          this.receivingLineItemIdentifier = receivingLineItemIdentifier;
43      }
44  
45      public String getItemTitleId() {
46          return itemTitleId;
47      }
48  
49      public void setItemTitleId(String itemTitleId) {
50          this.itemTitleId = itemTitleId;
51      }
52  
53      public OleLineItemReceivingItem getReceivingLineItem() {
54          return receivingLineItem;
55      }
56  
57      public void setReceivingLineItem(OleLineItemReceivingItem receivingLineItem) {
58          this.receivingLineItem = receivingLineItem;
59      }
60  
61      protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
62          // TODO Auto-generated method stub
63          LinkedHashMap m = new LinkedHashMap();
64          m.put("lineItemId", this.lineItemId);
65          m.put("receivingItemIdentifier", this.receivingLineItemIdentifier);
66          m.put("itemTitleId", this.itemTitleId);
67          return m;
68      }
69  
70  
71  }