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.api.position;
17
18 import java.math.BigDecimal;
19
20 /**
21 * <p>PositionDutyContract interface</p>
22 *
23 */
24 public interface PositionDutyContract extends PositionDerivedContract {
25
26 /**
27 * The primary key for a PositionDuty entry saved in the database
28 *
29 * <p>
30 * pmDutyId of a PositinDuty.
31 * <p>
32 *
33 * @return pmDutyId for PositinDuty
34 */
35 public String getPmDutyId();
36
37 /**
38 * The name associated with the PositionDuty
39 *
40 * <p>
41 * name of a PositionDuty
42 * <p>
43 *
44 * @return name for PositionDuty
45 */
46 public String getName();
47
48 /**
49 * The description associated with the PositionDuty
50 *
51 * <p>
52 * description of a PositionDuty.
53 * <p>
54 *
55 * @return description for PositionDuty
56 */
57 public String getDescription();
58
59 /**
60 * The percentage associated with the PositionDuty
61 *
62 * <p>
63 * percentage of a PositionDuty.
64 * <p>
65 *
66 * @return percentage for PositionDuty
67 */
68 public BigDecimal getPercentage();
69
70 }