1 /*
2 * Copyright 2009 The Kuali Foundation.
3 *
4 * Licensed under the Educational Community License, Version 1.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl1.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.ole.sec.identity;
17
18 import java.util.LinkedHashMap;
19
20 import org.kuali.ole.sys.identity.OleKimAttributes;
21
22 public class SecKimAttributes extends OleKimAttributes {
23 public static final String CONSTRAINT_CODE = "constraintCode";
24 public static final String OPERATOR = "operator";
25 public static final String PROPERTY_VALUE = "propertyValue";
26 public static final String OVERRIDE_DENY = "overrideDeny";
27
28 protected String constraintCode;
29 protected String operator;
30 protected String propertyValue;
31 protected String overrideDeny;
32
33 /**
34 * Gets the constraintCode attribute.
35 *
36 * @return Returns the constraintCode.
37 */
38 public String getConstraintCode() {
39 return constraintCode;
40 }
41
42
43 /**
44 * Sets the constraintCode attribute value.
45 *
46 * @param constraintCode The constraintCode to set.
47 */
48 public void setConstraintCode(String constraintCode) {
49 this.constraintCode = constraintCode;
50 }
51
52
53 /**
54 * Gets the operator attribute.
55 *
56 * @return Returns the operator.
57 */
58 public String getOperator() {
59 return operator;
60 }
61
62
63 /**
64 * Sets the operator attribute value.
65 *
66 * @param operator The operator to set.
67 */
68 public void setOperator(String operator) {
69 this.operator = operator;
70 }
71
72
73 /**
74 * Gets the propertyValue attribute.
75 *
76 * @return Returns the propertyValue.
77 */
78 public String getPropertyValue() {
79 return propertyValue;
80 }
81
82
83 /**
84 * Sets the propertyValue attribute value.
85 *
86 * @param propertyValue The propertyValue to set.
87 */
88 public void setPropertyValue(String propertyValue) {
89 this.propertyValue = propertyValue;
90 }
91
92
93 /**
94 * Gets the overrideDeny attribute.
95 *
96 * @return Returns the overrideDeny.
97 */
98 public String getOverrideDeny() {
99 return overrideDeny;
100 }
101
102
103 /**
104 * Sets the overrideDeny attribute value.
105 *
106 * @param overrideDeny The overrideDeny to set.
107 */
108 public void setOverrideDeny(String overrideDeny) {
109 this.overrideDeny = overrideDeny;
110 }
111
112
113 @SuppressWarnings("unchecked")
114
115 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
116 LinkedHashMap m = new LinkedHashMap();
117 return m;
118 }
119 }