View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.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/ecl2.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.rice.krad.bo;
17  
18  /**
19   * Business Object Attribute Entry Business Object
20   * 
21   * 
22   */
23  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       * @return Returns the attributeControlType.
40       */
41      public String getAttributeControlType() {
42          return attributeControlType;
43      }
44  
45      /**
46       * @param attributeControlType The attributeControlType to set.
47       */
48      public void setAttributeControlType(String attributeControlType) {
49          this.attributeControlType = attributeControlType;
50      }
51  
52      /**
53       * @return Returns the attributeDescription.
54       */
55      public String getAttributeDescription() {
56          return attributeDescription;
57      }
58  
59      /**
60       * @param attributeDescription The attributeDescription to set.
61       */
62      public void setAttributeDescription(String attributeDescription) {
63          this.attributeDescription = attributeDescription;
64      }
65  
66      /**
67       * @return Returns the attributeFormatterClassName.
68       */
69      public String getAttributeFormatterClassName() {
70          return attributeFormatterClassName;
71      }
72  
73      /**
74       * @param attributeFormatterClassName The attributeFormatterClassName to set.
75       */
76      public void setAttributeFormatterClassName(String attributeFormatterClassName) {
77          this.attributeFormatterClassName = attributeFormatterClassName;
78      }
79  
80      /**
81       * @return Returns the attributeLabel.
82       */
83      public String getAttributeLabel() {
84          return attributeLabel;
85      }
86  
87      /**
88       * @param attributeLabel The attributeLabel to set.
89       */
90      public void setAttributeLabel(String attributeLabel) {
91          this.attributeLabel = attributeLabel;
92      }
93  
94      /**
95       * @return Returns the attributeMaxLength.
96       */
97      public String getAttributeMaxLength() {
98          return attributeMaxLength;
99      }
100 
101     /**
102      * @param attributeMaxLength The attributeMaxLength to set.
103      */
104     public void setAttributeMaxLength(String attributeMaxLength) {
105         this.attributeMaxLength = attributeMaxLength;
106     }
107 
108     /**
109      * @return Returns the attributeName.
110      */
111     public String getAttributeName() {
112         return attributeName;
113     }
114 
115     /**
116      * @param attributeName The attributeName to set.
117      */
118     public void setAttributeName(String attributeName) {
119         this.attributeName = attributeName;
120     }
121 
122     /**
123      * @return Returns the attributeShortLabel.
124      */
125     public String getAttributeShortLabel() {
126         return attributeShortLabel;
127     }
128 
129     /**
130      * @param attributeShortLabel The attributeShortLabel to set.
131      */
132     public void setAttributeShortLabel(String attributeShortLabel) {
133         this.attributeShortLabel = attributeShortLabel;
134     }
135 
136     /**
137      * @return Returns the attributeSummary.
138      */
139     public String getAttributeSummary() {
140         return attributeSummary;
141     }
142 
143     /**
144      * @param attributeSummary The attributeSummary to set.
145      */
146     public void setAttributeSummary(String attributeSummary) {
147         this.attributeSummary = attributeSummary;
148     }
149 
150     /**
151      * @return Returns the attributeValidatingExpression.
152      */
153     public String getAttributeValidatingExpression() {
154         return attributeValidatingExpression;
155     }
156 
157     /**
158      * @param attributeValidatingExpression The attributeValidatingExpression to set.
159      */
160     public void setAttributeValidatingExpression(String attributeValidatingExpression) {
161         this.attributeValidatingExpression = attributeValidatingExpression;
162     }
163 
164     /**
165      * @return Returns the dataObjectClass.
166      */
167     public String getDictionaryBusinessObjectName() {
168         return dictionaryBusinessObjectName;
169     }
170 
171     /**
172      * @param businessObjectClass The dataObjectClass to set.
173      */
174     public void setDictionaryBusinessObjectName(String businessObjectClass) {
175         this.dictionaryBusinessObjectName = businessObjectClass;
176     }
177 }