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 edu.iu.uis.eden.routetemplate.RuleAttribute;
20:
21: /**
22: *
23: * @author ewestfal
24: */
25: public class RoleAttribute implements java.io.Serializable {
26:
27: private Long roleAttributeId;
28:
29: private Long roleId;
30: private Long ruleAttributeId;
31: private Integer lockVerNbr;
32:
33: private Role role;
34: private RuleAttribute ruleAttribute;
35:
36: public Integer getLockVerNbr() {
37: return lockVerNbr;
38: }
39:
40: public void setLockVerNbr(Integer lockVerNbr) {
41: this .lockVerNbr = lockVerNbr;
42: }
43:
44: public Role getRole() {
45: return role;
46: }
47:
48: public void setRole(Role role) {
49: this .role = role;
50: }
51:
52: public Long getRoleAttributeId() {
53: return roleAttributeId;
54: }
55:
56: public void setRoleAttributeId(Long roleAttributeId) {
57: this .roleAttributeId = roleAttributeId;
58: }
59:
60: public Long getRoleId() {
61: return roleId;
62: }
63:
64: public void setRoleId(Long roleId) {
65: this .roleId = roleId;
66: }
67:
68: public RuleAttribute getRuleAttribute() {
69: return ruleAttribute;
70: }
71:
72: public void setRuleAttribute(RuleAttribute ruleAttribute) {
73: this .ruleAttribute = ruleAttribute;
74: }
75:
76: public Long getRuleAttributeId() {
77: return ruleAttributeId;
78: }
79:
80: public void setRuleAttributeId(Long ruleAttributeId) {
81: this.ruleAttributeId = ruleAttributeId;
82: }
83:
84: }
|