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.workgroup;
18:
19: import org.kuali.workflow.attribute.ExtensionData;
20:
21: import edu.iu.uis.eden.BaseWorkflowPersistable;
22:
23: /**
24: *
25: * @author ewestfal
26: */
27: public class BaseWorkgroupExtensionData extends BaseWorkflowPersistable
28: implements ExtensionData {
29:
30: private static final long serialVersionUID = 840124314333807703L;
31:
32: private Long workgroupExtensionDataId;
33:
34: private String key;
35: private String value;
36: private Integer lockVerNbr;
37:
38: private BaseWorkgroupExtension workgroupExtension;
39:
40: public BaseWorkgroupExtension getWorkgroupExtension() {
41: return workgroupExtension;
42: }
43:
44: public void setWorkgroupExtension(BaseWorkgroupExtension extension) {
45: this .workgroupExtension = extension;
46: }
47:
48: public String getKey() {
49: return key;
50: }
51:
52: public void setKey(String key) {
53: this .key = key;
54: }
55:
56: public String getValue() {
57: return value;
58: }
59:
60: public void setValue(String value) {
61: this .value = value;
62: }
63:
64: public Long getWorkgroupExtensionDataId() {
65: return workgroupExtensionDataId;
66: }
67:
68: public void setWorkgroupExtensionDataId(
69: Long workgroupExtensionDataId) {
70: this .workgroupExtensionDataId = workgroupExtensionDataId;
71: }
72:
73: public Integer getLockVerNbr() {
74: return lockVerNbr;
75: }
76:
77: public void setLockVerNbr(Integer lockVerNbr) {
78: this.lockVerNbr = lockVerNbr;
79: }
80:
81: }
|