1 /* 2 * Copyright 2005-2014 The Kuali Foundation. 3 * 4 * Licensed under the Educational Community License, Version 1.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/ecl1.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.coeus.s2sgen.impl.budget; 17 18 19 public class OtherPersonnelDto { 20 21 22 private String personnelType; 23 private int numberPersonnel; 24 private String role; 25 private CompensationDto compensation; 26 27 /** 28 * Getter for property numberPersonnel. 29 * 30 * @return Value of property numberPersonnel. 31 */ 32 public int getNumberPersonnel() { 33 return numberPersonnel; 34 } 35 36 /** 37 * Setter for property numberPersonnel. 38 * 39 * @param numberPersonnel New value of property numberPersonnel. 40 */ 41 public void setNumberPersonnel(int numberPersonnel) { 42 this.numberPersonnel = numberPersonnel; 43 } 44 45 /** 46 * Getter for property personnelType. 47 * 48 * @return Value of property personnelType. 49 */ 50 public String getPersonnelType() { 51 return personnelType; 52 } 53 54 /** 55 * Setter for property personnelType. 56 * 57 * @param personnelType New value of property personnelType. 58 */ 59 public void setPersonnelType(String personnelType) { 60 this.personnelType = personnelType; 61 } 62 63 64 /** 65 * Getter for property role. 66 * 67 * @return Value of property role. 68 */ 69 public String getRole() { 70 return role; 71 } 72 73 /** 74 * Setter for property role. 75 * 76 * @param role New value of property role. 77 */ 78 public void setRole(String role) { 79 this.role = role; 80 } 81 82 /** 83 * Getter for property compensation. 84 * 85 * @return Value of property compensation. 86 */ 87 public CompensationDto getCompensation() { 88 return compensation; 89 } 90 91 /** 92 * Setter for property compensation. 93 * 94 * @param compensation New value of property compensation. 95 */ 96 public void setCompensation(CompensationDto compensation) { 97 this.compensation = compensation; 98 } 99 }