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 RiceUser extends PersistableBusinessObjectBase {
23:
24: /**
25: *
26: */
27: private static final long serialVersionUID = 2912023481237314564L;
28:
29: private String personUniversalIdentifier;
30: private String universityId;
31: private String personUserIdentifier;
32: private String emailAddress;
33: private String personName;
34:
35: @Override
36: protected LinkedHashMap toStringMapper() {
37: LinkedHashMap map = new LinkedHashMap();
38: map.put("RiceUser", "RiceUser");
39: return map;
40: }
41:
42: public String getEmailAddress() {
43: return emailAddress;
44: }
45:
46: public void setEmailAddress(String emailAddress) {
47: this .emailAddress = emailAddress;
48: }
49:
50: public String getPersonName() {
51: return personName;
52: }
53:
54: public void setPersonName(String name) {
55: this .personName = name;
56: }
57:
58: public String getPersonUserIdentifier() {
59: return personUserIdentifier;
60: }
61:
62: public void setPersonUserIdentifier(String networkId) {
63: this .personUserIdentifier = networkId;
64: }
65:
66: public String getUniversityId() {
67: return universityId;
68: }
69:
70: public void setUniversityId(String universityId) {
71: this .universityId = universityId;
72: }
73:
74: public String getPersonUniversalIdentifier() {
75: return personUniversalIdentifier;
76: }
77:
78: public void setPersonUniversalIdentifier(String userId) {
79: this.personUniversalIdentifier = userId;
80: }
81:
82: }
|