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: /**
20: *
21: * @author ewestfal
22: */
23: public class QualifiedRoleExtensionValue {
24:
25: private Long qualifiedRoleExtensionValueId;
26:
27: private Long qualifiedRoleExtensionId;
28: private String key;
29: private String value;
30: private Integer lockVerNbr;
31:
32: private QualifiedRoleExtension extension;
33:
34: public QualifiedRoleExtension getExtension() {
35: return extension;
36: }
37:
38: public void setExtension(QualifiedRoleExtension extension) {
39: this .extension = extension;
40: }
41:
42: public String getKey() {
43: return key;
44: }
45:
46: public void setKey(String key) {
47: this .key = key;
48: }
49:
50: public Integer getLockVerNbr() {
51: return lockVerNbr;
52: }
53:
54: public void setLockVerNbr(Integer lockVerNbr) {
55: this .lockVerNbr = lockVerNbr;
56: }
57:
58: public Long getQualifiedRoleExtensionValueId() {
59: return qualifiedRoleExtensionValueId;
60: }
61:
62: public void setQualifiedRoleExtensionValueId(
63: Long qualifiedRoleExtensionValueId) {
64: this .qualifiedRoleExtensionValueId = qualifiedRoleExtensionValueId;
65: }
66:
67: public Long getQualifiedRoleExtensionId() {
68: return qualifiedRoleExtensionId;
69: }
70:
71: public void setQualifiedRoleExtensionId(
72: Long qualifiedRoleExtentionId) {
73: this .qualifiedRoleExtensionId = qualifiedRoleExtentionId;
74: }
75:
76: public String getValue() {
77: return value;
78: }
79:
80: public void setValue(String value) {
81: this.value = value;
82: }
83:
84: }
|