1 /*
2 * Kuali Coeus, a comprehensive research administration system for higher education.
3 *
4 * Copyright 2005-2015 Kuali, Inc.
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 package org.kuali.coeus.s2sgen.impl.budget;
20
21
22 public class OtherPersonnelDto {
23
24
25 private String personnelType;
26 private int numberPersonnel;
27 private String role;
28 private CompensationDto compensation;
29
30 /**
31 * Getter for property numberPersonnel.
32 *
33 * @return Value of property numberPersonnel.
34 */
35 public int getNumberPersonnel() {
36 return numberPersonnel;
37 }
38
39 /**
40 * Setter for property numberPersonnel.
41 *
42 * @param numberPersonnel New value of property numberPersonnel.
43 */
44 public void setNumberPersonnel(int numberPersonnel) {
45 this.numberPersonnel = numberPersonnel;
46 }
47
48 /**
49 * Getter for property personnelType.
50 *
51 * @return Value of property personnelType.
52 */
53 public String getPersonnelType() {
54 return personnelType;
55 }
56
57 /**
58 * Setter for property personnelType.
59 *
60 * @param personnelType New value of property personnelType.
61 */
62 public void setPersonnelType(String personnelType) {
63 this.personnelType = personnelType;
64 }
65
66
67 /**
68 * Getter for property role.
69 *
70 * @return Value of property role.
71 */
72 public String getRole() {
73 return role;
74 }
75
76 /**
77 * Setter for property role.
78 *
79 * @param role New value of property role.
80 */
81 public void setRole(String role) {
82 this.role = role;
83 }
84
85 /**
86 * Getter for property compensation.
87 *
88 * @return Value of property compensation.
89 */
90 public CompensationDto getCompensation() {
91 return compensation;
92 }
93
94 /**
95 * Setter for property compensation.
96 *
97 * @param compensation New value of property compensation.
98 */
99 public void setCompensation(CompensationDto compensation) {
100 this.compensation = compensation;
101 }
102 }