View Javadoc

1   /**
2    * Copyright 2004-2014 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.kpme.pm.position;
17  
18  import java.math.BigDecimal;
19  
20  import org.kuali.kpme.pm.api.position.PositionDutyContract;
21  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
22  
23  public class PositionDuty extends PersistableBusinessObjectBase implements PositionDutyContract {
24  private static final long serialVersionUID = 1L;
25  	
26  	private String pmDutyId;
27  	private String name;
28  	private String description;
29  	private BigDecimal percentage;
30  	private String hrPositionId;
31  	
32  	public String getPmDutyId() {
33  		return pmDutyId;
34  	}
35  	public void setPmDutyId(String pmDutyId) {
36  		this.pmDutyId = pmDutyId;
37  	}
38  	public String getName() {
39  		return name;
40  	}
41  	public void setName(String name) {
42  		this.name = name;
43  	}
44  	public String getDescription() {
45  		return description;
46  	}
47  	public void setDescription(String description) {
48  		this.description = description;
49  	}
50  	public BigDecimal getPercentage() {
51  		return percentage;
52  	}
53  	public void setPercentage(BigDecimal percentage) {
54  		this.percentage = percentage;
55  	}
56  	public String getHrPositionId() {
57  		return hrPositionId;
58  	}
59  	public void setHrPositionId(String hrPositionId) {
60  		this.hrPositionId = hrPositionId;
61  	}
62  	
63  	
64  }