1
2 package org.kuali.ole.integration.cg.businessobject;
3
4 import java.io.Serializable;
5
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlType;
9
10 import org.kuali.ole.integration.cg.ContractsAndGrantsBudgetCategory;
11 import org.kuali.rice.krad.bo.BusinessObjectBase;
12
13
14 /**
15 * <p>Java class for budgetCategoryDTO complex type.
16 *
17 * <p>The following schema fragment specifies the expected content contained within this class.
18 *
19 * <pre>
20 * <complexType name="budgetCategoryDTO">
21 * <complexContent>
22 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23 * <sequence>
24 * <element name="authorPersonName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25 * <element name="budgetCategoryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26 * <element name="budgetCategoryTypeCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27 * <element name="budgetCategoryTypeDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28 * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
34 *
35 *
36 */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "budgetCategoryDTO", propOrder = {
39 "authorPersonName",
40 "budgetCategoryCode",
41 "budgetCategoryTypeCode",
42 "budgetCategoryTypeDescription",
43 "description"
44 })
45 public class BudgetCategoryDTO extends BusinessObjectBase implements ContractsAndGrantsBudgetCategory, Serializable {
46
47 protected String authorPersonName;
48 protected String budgetCategoryCode;
49 protected String budgetCategoryTypeCode;
50 protected String budgetCategoryTypeDescription;
51 protected String description;
52
53 /**
54 * Gets the value of the authorPersonName property.
55 *
56 * @return
57 * possible object is
58 * {@link String }
59 *
60 */
61 public String getAuthorPersonName() {
62 return authorPersonName;
63 }
64
65 /**
66 * Sets the value of the authorPersonName property.
67 *
68 * @param value
69 * allowed object is
70 * {@link String }
71 *
72 */
73 public void setAuthorPersonName(String value) {
74 this.authorPersonName = value;
75 }
76
77 /**
78 * Gets the value of the budgetCategoryCode property.
79 *
80 * @return
81 * possible object is
82 * {@link String }
83 *
84 */
85 public String getBudgetCategoryCode() {
86 return budgetCategoryCode;
87 }
88
89 /**
90 * Sets the value of the budgetCategoryCode property.
91 *
92 * @param value
93 * allowed object is
94 * {@link String }
95 *
96 */
97 public void setBudgetCategoryCode(String value) {
98 this.budgetCategoryCode = value;
99 }
100
101 /**
102 * Gets the value of the budgetCategoryTypeCode property.
103 *
104 * @return
105 * possible object is
106 * {@link String }
107 *
108 */
109 public String getBudgetCategoryTypeCode() {
110 return budgetCategoryTypeCode;
111 }
112
113 /**
114 * Sets the value of the budgetCategoryTypeCode property.
115 *
116 * @param value
117 * allowed object is
118 * {@link String }
119 *
120 */
121 public void setBudgetCategoryTypeCode(String value) {
122 this.budgetCategoryTypeCode = value;
123 }
124
125 /**
126 * Gets the value of the budgetCategoryTypeDescription property.
127 *
128 * @return
129 * possible object is
130 * {@link String }
131 *
132 */
133 public String getBudgetCategoryTypeDescription() {
134 return budgetCategoryTypeDescription;
135 }
136
137 /**
138 * Sets the value of the budgetCategoryTypeDescription property.
139 *
140 * @param value
141 * allowed object is
142 * {@link String }
143 *
144 */
145 public void setBudgetCategoryTypeDescription(String value) {
146 this.budgetCategoryTypeDescription = value;
147 }
148
149 /**
150 * Gets the value of the description property.
151 *
152 * @return
153 * possible object is
154 * {@link String }
155 *
156 */
157 public String getDescription() {
158 return description;
159 }
160
161 /**
162 * Sets the value of the description property.
163 *
164 * @param value
165 * allowed object is
166 * {@link String }
167 *
168 */
169 public void setDescription(String value) {
170 this.description = value;
171 }
172
173 public void refresh() {}
174
175
176
177
178
179
180
181
182 }