1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.bo; |
17 | |
|
18 | |
import java.util.LinkedHashMap; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | 0 | public class BusinessObjectAttributeEntry extends PersistableBusinessObjectBase { |
26 | |
|
27 | |
private static final long serialVersionUID = 8136616401437024033L; |
28 | |
private String dictionaryBusinessObjectName; |
29 | |
private String attributeName; |
30 | |
private String attributeLabel; |
31 | |
private String attributeShortLabel; |
32 | |
private String attributeMaxLength; |
33 | |
private String attributeValidatingExpression; |
34 | |
private String attributeControlType; |
35 | |
private String attributeSummary; |
36 | |
private String attributeDescription; |
37 | |
private String attributeFormatterClassName; |
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
public String getAttributeControlType() { |
44 | 0 | return attributeControlType; |
45 | |
} |
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
public void setAttributeControlType(String attributeControlType) { |
51 | 0 | this.attributeControlType = attributeControlType; |
52 | 0 | } |
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
public String getAttributeDescription() { |
58 | 0 | return attributeDescription; |
59 | |
} |
60 | |
|
61 | |
|
62 | |
|
63 | |
|
64 | |
public void setAttributeDescription(String attributeDescription) { |
65 | 0 | this.attributeDescription = attributeDescription; |
66 | 0 | } |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
public String getAttributeFormatterClassName() { |
72 | 0 | return attributeFormatterClassName; |
73 | |
} |
74 | |
|
75 | |
|
76 | |
|
77 | |
|
78 | |
public void setAttributeFormatterClassName(String attributeFormatterClassName) { |
79 | 0 | this.attributeFormatterClassName = attributeFormatterClassName; |
80 | 0 | } |
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
public String getAttributeLabel() { |
86 | 0 | return attributeLabel; |
87 | |
} |
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
public void setAttributeLabel(String attributeLabel) { |
93 | 0 | this.attributeLabel = attributeLabel; |
94 | 0 | } |
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
public String getAttributeMaxLength() { |
100 | 0 | return attributeMaxLength; |
101 | |
} |
102 | |
|
103 | |
|
104 | |
|
105 | |
|
106 | |
public void setAttributeMaxLength(String attributeMaxLength) { |
107 | 0 | this.attributeMaxLength = attributeMaxLength; |
108 | 0 | } |
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
public String getAttributeName() { |
114 | 0 | return attributeName; |
115 | |
} |
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
public void setAttributeName(String attributeName) { |
121 | 0 | this.attributeName = attributeName; |
122 | 0 | } |
123 | |
|
124 | |
|
125 | |
|
126 | |
|
127 | |
public String getAttributeShortLabel() { |
128 | 0 | return attributeShortLabel; |
129 | |
} |
130 | |
|
131 | |
|
132 | |
|
133 | |
|
134 | |
public void setAttributeShortLabel(String attributeShortLabel) { |
135 | 0 | this.attributeShortLabel = attributeShortLabel; |
136 | 0 | } |
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
public String getAttributeSummary() { |
142 | 0 | return attributeSummary; |
143 | |
} |
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
public void setAttributeSummary(String attributeSummary) { |
149 | 0 | this.attributeSummary = attributeSummary; |
150 | 0 | } |
151 | |
|
152 | |
|
153 | |
|
154 | |
|
155 | |
public String getAttributeValidatingExpression() { |
156 | 0 | return attributeValidatingExpression; |
157 | |
} |
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | |
public void setAttributeValidatingExpression(String attributeValidatingExpression) { |
163 | 0 | this.attributeValidatingExpression = attributeValidatingExpression; |
164 | 0 | } |
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
public String getDictionaryBusinessObjectName() { |
170 | 0 | return dictionaryBusinessObjectName; |
171 | |
} |
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
public void setDictionaryBusinessObjectName(String businessObjectClass) { |
177 | 0 | this.dictionaryBusinessObjectName = businessObjectClass; |
178 | 0 | } |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
protected LinkedHashMap toStringMapper() { |
184 | 0 | LinkedHashMap m = new LinkedHashMap(); |
185 | |
|
186 | 0 | m.put("dictionaryBusinessObjectName", getDictionaryBusinessObjectName()); |
187 | 0 | m.put("attributeName", getAttributeName()); |
188 | |
|
189 | 0 | return m; |
190 | |
} |
191 | |
} |