01: /*
02: * Copyright 2006-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.module.purap.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: * Capital Asset Management Payment Change Business Object.
25: */
26: public class CapitalAssetManagementPaymentChange extends
27: PersistableBusinessObjectBase {
28:
29: private Integer capitalAssetManagementPaymentChangeIdentifier;
30: private Integer paymentRequestIdentifier;
31: private Integer creditMemoIdentifier;
32:
33: /**
34: * Default constructor.
35: */
36: public CapitalAssetManagementPaymentChange() {
37:
38: }
39:
40: public Integer getCapitalAssetManagementPaymentChangeIdentifier() {
41: return capitalAssetManagementPaymentChangeIdentifier;
42: }
43:
44: public void setCapitalAssetManagementPaymentChangeIdentifier(
45: Integer capitalAssetManagementPaymentChangeIdentifier) {
46: this .capitalAssetManagementPaymentChangeIdentifier = capitalAssetManagementPaymentChangeIdentifier;
47: }
48:
49: public Integer getPaymentRequestIdentifier() {
50: return paymentRequestIdentifier;
51: }
52:
53: public void setPaymentRequestIdentifier(
54: Integer paymentRequestIdentifier) {
55: this .paymentRequestIdentifier = paymentRequestIdentifier;
56: }
57:
58: public Integer getCreditMemoIdentifier() {
59: return creditMemoIdentifier;
60: }
61:
62: public void setCreditMemoIdentifier(Integer creditMemoIdentifier) {
63: this .creditMemoIdentifier = creditMemoIdentifier;
64: }
65:
66: /**
67: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
68: */
69: protected LinkedHashMap toStringMapper() {
70: LinkedHashMap m = new LinkedHashMap();
71: if (this .capitalAssetManagementPaymentChangeIdentifier != null) {
72: m.put("capitalAssetManagementPaymentChangeIdentifier",
73: this.capitalAssetManagementPaymentChangeIdentifier
74: .toString());
75: }
76: return m;
77: }
78: }
|