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: package org.kuali.core.bo.user;
17:
18: import java.util.LinkedHashMap;
19:
20: import org.kuali.core.bo.PersistableBusinessObjectBase;
21:
22: public class KualiModuleUserProperty extends
23: PersistableBusinessObjectBase {
24:
25: private String personUniversalIdentifier;
26: private String moduleId;
27: private String name;
28: private String value;
29:
30: public String getPersonUniversalIdentifier() {
31: return personUniversalIdentifier;
32: }
33:
34: public void setPersonUniversalIdentifier(
35: String personUniversalIdentifier) {
36: this .personUniversalIdentifier = personUniversalIdentifier;
37: }
38:
39: public String getName() {
40: return name;
41: }
42:
43: public void setName(String propertyName) {
44: this .name = propertyName;
45: }
46:
47: public String getValue() {
48: return value;
49: }
50:
51: public void setValue(String propertyValue) {
52: this .value = propertyValue;
53: }
54:
55: @Override
56: protected LinkedHashMap toStringMapper() {
57: LinkedHashMap m = new LinkedHashMap();
58: m.put("name", name);
59: m.put("value", value);
60: return m;
61: }
62:
63: public String getModuleId() {
64: return moduleId;
65: }
66:
67: public void setModuleId(String moduleId) {
68: this.moduleId = moduleId;
69: }
70:
71: }
|