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.core.api.position;
17
18 import org.kuali.kpme.core.api.bo.HrBusinessObjectContract;
19
20 /**
21 * <p>PositionBaseContract interface.</p>
22 *
23 */
24 public interface PositionBaseContract extends HrBusinessObjectContract {
25
26 /**
27 * The Primary Key of a PositionBase entry saved in a database
28 *
29 * <p>
30 * hrPositionId of a PositionBase
31 * <p>
32 *
33 * @return hrPositionId for PositionBase
34 */
35 public String getHrPositionId();
36
37 /**
38 * The position number of a PositionBase
39 *
40 * <p>
41 * positionNumber of a PositionBase
42 * <p>
43 *
44 * @return positionNumber for PositionBase
45 */
46 public String getPositionNumber();
47
48 /**
49 * The description of a PositionBase
50 *
51 * <p>
52 * description of a PositionBase
53 * <p>
54 *
55 * @return description for PositionBase
56 */
57 public String getDescription();
58
59 /**
60 * History flag for PositionBase lookups
61 *
62 * <p>
63 * history of PositionBase
64 * </p>
65 *
66 * @return true if want to show history, false if not
67 */
68 public String getHistory();
69 }