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: * Purchase Order Quote Status Business Object.
25: *
26: * THIS CODE IS NOT USED IN RELEASE 2 BUT THE CODE WAS LEFT IN TO
27: * FACILITATE TURNING IT BACK ON EARLY IN THE DEVELOPMENT CYCLE OF RELEASE 3.
28: *
29: */
30: public class PurchaseOrderQuoteStatus extends
31: PersistableBusinessObjectBase {
32:
33: private String purchaseOrderQuoteStatusCode;
34: private String purchaseOrderQuoteStatusDescription;
35: private boolean active;
36:
37: /**
38: * Default constructor.
39: */
40: public PurchaseOrderQuoteStatus() {
41:
42: }
43:
44: public String getPurchaseOrderQuoteStatusCode() {
45: return purchaseOrderQuoteStatusCode;
46: }
47:
48: public void setPurchaseOrderQuoteStatusCode(
49: String purchaseOrderQuoteStatusCode) {
50: this .purchaseOrderQuoteStatusCode = purchaseOrderQuoteStatusCode;
51: }
52:
53: public String getPurchaseOrderQuoteStatusDescription() {
54: return purchaseOrderQuoteStatusDescription;
55: }
56:
57: public void setPurchaseOrderQuoteStatusDescription(
58: String purchaseOrderQuoteStatusDescription) {
59: this .purchaseOrderQuoteStatusDescription = purchaseOrderQuoteStatusDescription;
60: }
61:
62: public boolean isActive() {
63: return active;
64: }
65:
66: public void setActive(boolean active) {
67: this .active = active;
68: }
69:
70: /**
71: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
72: */
73: protected LinkedHashMap toStringMapper() {
74: LinkedHashMap m = new LinkedHashMap();
75: m.put("purchaseOrderQuoteStatusCode",
76: this.purchaseOrderQuoteStatusCode);
77: return m;
78: }
79:
80: }
|