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.kra.routingform.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22: import org.kuali.kfs.KFSPropertyConstants;
23:
24: /**
25: *
26: */
27: public class RoutingFormConflictOfInterest extends
28: PersistableBusinessObjectBase {
29:
30: private String documentNumber;
31: private String routingFormConflictOfInterestDescription;
32:
33: /**
34: * Default constructor.
35: */
36: public RoutingFormConflictOfInterest() {
37:
38: }
39:
40: /**
41: * Gets the documentNumber attribute.
42: *
43: * @return Returns the documentNumber
44: */
45: public String getDocumentNumber() {
46: return documentNumber;
47: }
48:
49: /**
50: * Sets the documentNumber attribute.
51: *
52: * @param documentNumber The documentNumber to set.
53: */
54: public void setDocumentNumber(String documentNumber) {
55: this .documentNumber = documentNumber;
56: }
57:
58: /**
59: * Gets the routingFormConflictOfInterestDescription attribute.
60: *
61: * @return Returns the routingFormConflictOfInterestDescription
62: */
63: public String getRoutingFormConflictOfInterestDescription() {
64: return routingFormConflictOfInterestDescription;
65: }
66:
67: /**
68: * Sets the routingFormConflictOfInterestDescription attribute.
69: *
70: * @param routingFormConflictOfInterestDescription The routingFormConflictOfInterestDescription to set.
71: */
72: public void setRoutingFormConflictOfInterestDescription(
73: String routingFormConflictOfInterestDescription) {
74: this .routingFormConflictOfInterestDescription = routingFormConflictOfInterestDescription;
75: }
76:
77: /**
78: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
79: */
80: protected LinkedHashMap toStringMapper() {
81: LinkedHashMap m = new LinkedHashMap();
82: m
83: .put(KFSPropertyConstants.DOCUMENT_NUMBER,
84: this.documentNumber);
85: return m;
86: }
87: }
|