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