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.module.vendor.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: * Title to identify the method of dividing ownership during the process of shipment of packages from a particular Vendor.
25: */
26: public class ShippingTitle extends PersistableBusinessObjectBase {
27:
28: private String vendorShippingTitleCode;
29: private String vendorShippingTitleDescription;
30: private boolean active;
31:
32: /**
33: * Default constructor.
34: */
35: public ShippingTitle() {
36:
37: }
38:
39: public String getVendorShippingTitleCode() {
40:
41: return vendorShippingTitleCode;
42: }
43:
44: public void setVendorShippingTitleCode(
45: String vendorShippingTitleCode) {
46: this .vendorShippingTitleCode = vendorShippingTitleCode;
47: }
48:
49: public String getVendorShippingTitleDescription() {
50:
51: return vendorShippingTitleDescription;
52: }
53:
54: public void setVendorShippingTitleDescription(
55: String vendorShippingTitleDescription) {
56: this .vendorShippingTitleDescription = vendorShippingTitleDescription;
57: }
58:
59: public boolean isActive() {
60:
61: return active;
62: }
63:
64: public void setActive(boolean active) {
65: this .active = active;
66: }
67:
68: /**
69: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
70: */
71: protected LinkedHashMap toStringMapper() {
72: LinkedHashMap m = new LinkedHashMap();
73: m.put("vendorShippingTitleCode", this.vendorShippingTitleCode);
74:
75: return m;
76: }
77: }
|