Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KimAttributeDefinition |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2007-2009 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.rice.krad.datadictionary; | |
17 | ||
18 | ||
19 | ||
20 | /** | |
21 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
22 | */ | |
23 | 0 | public class |
24 | KimAttributeDefinition extends AttributeDefinition { | |
25 | private static final long serialVersionUID = -1889598053944123008L; | |
26 | ||
27 | protected String sortCode; | |
28 | protected String kimAttrDefnId; | |
29 | protected String kimTypeId; | |
30 | ||
31 | /** | |
32 | * @return the sortCode | |
33 | */ | |
34 | public String getSortCode() { | |
35 | 0 | return this.sortCode; |
36 | } | |
37 | ||
38 | /** | |
39 | * @param sortCode | |
40 | * the sortCode to set | |
41 | */ | |
42 | public void setSortCode(String sortCode) { | |
43 | 0 | this.sortCode = sortCode; |
44 | 0 | } |
45 | ||
46 | public String getKimAttrDefnId() { | |
47 | 0 | return this.kimAttrDefnId; |
48 | } | |
49 | ||
50 | public void setKimAttrDefnId(String kimAttrDefnId) { | |
51 | 0 | this.kimAttrDefnId = kimAttrDefnId; |
52 | 0 | } |
53 | ||
54 | public boolean isHasLookupBoDefinition() { | |
55 | 0 | return false; |
56 | } | |
57 | ||
58 | /** | |
59 | * @return the kimTypeId | |
60 | */ | |
61 | public String getKimTypeId() { | |
62 | 0 | return this.kimTypeId; |
63 | } | |
64 | ||
65 | /** | |
66 | * @param kimTypeId the kimTypeId to set | |
67 | */ | |
68 | public void setKimTypeId(String kimTypeId) { | |
69 | 0 | this.kimTypeId = kimTypeId; |
70 | 0 | } |
71 | } |