01: /*
02: * Copyright 2005-2006 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 edu.iu.uis.eden.workgroup;
18:
19: import java.io.Serializable;
20:
21: /**
22: * A member of a {@link BaseWorkgroup}.
23: *
24: * @author ewestfal
25: */
26: public class BaseWorkgroupMember implements Serializable {
27:
28: private static final long serialVersionUID = -6343373525316948409L;
29:
30: private Long workgroupId;
31: private String workflowId;
32: private String memberType;
33: private Integer workgroupVersionNumber = new Integer(0);
34: private Integer lockVerNbr;
35:
36: private BaseWorkgroup workgroup;
37:
38: public Integer getLockVerNbr() {
39: return lockVerNbr;
40: }
41:
42: public void setLockVerNbr(Integer lockVerNbr) {
43: this .lockVerNbr = lockVerNbr;
44: }
45:
46: public Long getWorkgroupId() {
47: return workgroupId;
48: }
49:
50: public void setWorkgroupId(Long workgroupId) {
51: this .workgroupId = workgroupId;
52: }
53:
54: public String getWorkflowId() {
55: return workflowId;
56: }
57:
58: public void setWorkflowId(String workflowId) {
59: this .workflowId = workflowId;
60: }
61:
62: public String getMemberType() {
63: return memberType;
64: }
65:
66: public void setMemberType(String memberType) {
67: this .memberType = memberType;
68: }
69:
70: public BaseWorkgroup getWorkgroup() {
71: return workgroup;
72: }
73:
74: public void setWorkgroup(BaseWorkgroup workgroup) {
75: this .workgroup = workgroup;
76: }
77:
78: public Integer getWorkgroupVersionNumber() {
79: return workgroupVersionNumber;
80: }
81:
82: public void setWorkgroupVersionNumber(Integer workgroupVerNbr) {
83: this.workgroupVersionNumber = workgroupVerNbr;
84: }
85:
86: }
|