01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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.kfs.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: *
25: */
26: public class HomeOrigination extends PersistableBusinessObjectBase {
27:
28: private String finSystemHomeOriginationCode;
29: private OriginationCode originationCode;
30:
31: /**
32: * Default no-arg constructor.
33: */
34: public HomeOrigination() {
35: super ();
36: }
37:
38: /**
39: * Gets the finSystemHomeOriginationCode attribute.
40: *
41: * @return Returns the finSystemHomeOriginationCode
42: */
43: public String getFinSystemHomeOriginationCode() {
44: return finSystemHomeOriginationCode;
45: }
46:
47: /**
48: * Sets the finSystemHomeOriginationCode attribute.
49: *
50: * @param finSystemHomeOriginationCode The finSystemHomeOriginationCode to set.
51: */
52: public void setFinSystemHomeOriginationCode(
53: String finSystemHomeOriginationCode) {
54: this .finSystemHomeOriginationCode = finSystemHomeOriginationCode;
55: }
56:
57: /**
58: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
59: */
60: protected LinkedHashMap toStringMapper() {
61: LinkedHashMap m = new LinkedHashMap();
62: m.put("finSystemHomeOriginationCode",
63: this .finSystemHomeOriginationCode);
64: return m;
65: }
66:
67: public OriginationCode getOriginationCode() {
68: return originationCode;
69: }
70:
71: public void setOriginationCode(OriginationCode originationCode) {
72: this.originationCode = originationCode;
73: }
74: }
|