01: /*
02: * Copyright 2005-2007 The Kuali Foundation.
03: *
04: *
05: * Licensed under the Educational Community License, Version 1.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.opensource.org/licenses/ecl1.php
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.kuali.workflow.role;
18:
19: import org.kuali.workflow.identity.IdentityType;
20:
21: /**
22: *
23: * @author ewestfal
24: */
25: public class QualifiedRoleMember {
26:
27: private Long qualifiedRoleMemberId;
28:
29: private Long qualifiedRoleId;
30: private Long responsibilityId;
31: private String memberId;
32: private IdentityType memberType;
33: private Integer lockVerNbr;
34:
35: private QualifiedRole qualifiedRole;
36:
37: public Integer getLockVerNbr() {
38: return lockVerNbr;
39: }
40:
41: public void setLockVerNbr(Integer lockVerNbr) {
42: this .lockVerNbr = lockVerNbr;
43: }
44:
45: public String getMemberId() {
46: return memberId;
47: }
48:
49: public void setMemberId(String memberId) {
50: this .memberId = memberId;
51: }
52:
53: public IdentityType getMemberType() {
54: return memberType;
55: }
56:
57: public void setMemberType(IdentityType memberType) {
58: this .memberType = memberType;
59: }
60:
61: public QualifiedRole getQualifiedRole() {
62: return qualifiedRole;
63: }
64:
65: public void setQualifiedRole(QualifiedRole qualifiedRole) {
66: this .qualifiedRole = qualifiedRole;
67: }
68:
69: public Long getQualifiedRoleId() {
70: return qualifiedRoleId;
71: }
72:
73: public void setQualifiedRoleId(Long qualifiedRoleId) {
74: this .qualifiedRoleId = qualifiedRoleId;
75: }
76:
77: public Long getQualifiedRoleMemberId() {
78: return qualifiedRoleMemberId;
79: }
80:
81: public void setQualifiedRoleMemberId(Long qualifiedRoleMemberId) {
82: this .qualifiedRoleMemberId = qualifiedRoleMemberId;
83: }
84:
85: public Long getResponsibilityId() {
86: return responsibilityId;
87: }
88:
89: public void setResponsibilityId(Long responsibilityId) {
90: this.responsibilityId = responsibilityId;
91: }
92:
93: }
|