View Javadoc
1   /*
2    * Copyright 2007 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.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/ecl2.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  
17  package org.kuali.ole.sys.businessobject;
18  
19  import java.util.LinkedHashMap;
20  
21  import org.kuali.ole.sys.OLEConstants;
22  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
23  
24  
25  /**
26   * 
27   */
28  public class HomeOrigination extends PersistableBusinessObjectBase {
29  
30      public static final String CACHE_NAME = OLEConstants.APPLICATION_NAMESPACE_CODE + "/" + "HomeOrigination";
31      
32      private String finSystemHomeOriginationCode;
33      private OriginationCode originationCode;
34  
35  
36      /**
37       * Default no-arg constructor.
38       */
39      public HomeOrigination() {
40          super();
41      }
42  
43      /**
44       * Gets the finSystemHomeOriginationCode attribute.
45       * 
46       * @return Returns the finSystemHomeOriginationCode
47       */
48      public String getFinSystemHomeOriginationCode() {
49          return finSystemHomeOriginationCode;
50      }
51  
52  
53      /**
54       * Sets the finSystemHomeOriginationCode attribute.
55       * 
56       * @param finSystemHomeOriginationCode The finSystemHomeOriginationCode to set.
57       */
58      public void setFinSystemHomeOriginationCode(String finSystemHomeOriginationCode) {
59          this.finSystemHomeOriginationCode = finSystemHomeOriginationCode;
60      }
61  
62      /**
63       * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper()
64       */
65      protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
66          LinkedHashMap m = new LinkedHashMap();
67          m.put("finSystemHomeOriginationCode", this.finSystemHomeOriginationCode);
68          return m;
69      }
70  
71      public OriginationCode getOriginationCode() {
72          return originationCode;
73      }
74  
75      public void setOriginationCode(OriginationCode originationCode) {
76          this.originationCode = originationCode;
77      }
78  }