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