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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
55
56
57
58
59
60
61 public String getAuthorPersonName() {
62 return authorPersonName;
63 }
64
65
66
67
68
69
70
71
72
73 public void setAuthorPersonName(String value) {
74 this.authorPersonName = value;
75 }
76
77
78
79
80
81
82
83
84
85 public String getBudgetCategoryCode() {
86 return budgetCategoryCode;
87 }
88
89
90
91
92
93
94
95
96
97 public void setBudgetCategoryCode(String value) {
98 this.budgetCategoryCode = value;
99 }
100
101
102
103
104
105
106
107
108
109 public String getBudgetCategoryTypeCode() {
110 return budgetCategoryTypeCode;
111 }
112
113
114
115
116
117
118
119
120
121 public void setBudgetCategoryTypeCode(String value) {
122 this.budgetCategoryTypeCode = value;
123 }
124
125
126
127
128
129
130
131
132
133 public String getBudgetCategoryTypeDescription() {
134 return budgetCategoryTypeDescription;
135 }
136
137
138
139
140
141
142
143
144
145 public void setBudgetCategoryTypeDescription(String value) {
146 this.budgetCategoryTypeDescription = value;
147 }
148
149
150
151
152
153
154
155
156
157 public String getDescription() {
158 return description;
159 }
160
161
162
163
164
165
166
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 }