Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EntityTypeInfo |
|
| 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.kim.bo.reference.dto; | |
17 | ||
18 | import org.kuali.rice.kim.bo.reference.EntityType; | |
19 | ||
20 | /** | |
21 | * This is a description of what this class does - jonathan don't forget to fill this in. | |
22 | * | |
23 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
24 | * | |
25 | */ | |
26 | public class EntityTypeInfo extends KimCodeInfoBase implements EntityType { | |
27 | ||
28 | private static final long serialVersionUID = 1L; | |
29 | ||
30 | public EntityTypeInfo() { | |
31 | 0 | super(); |
32 | 0 | } |
33 | ||
34 | public EntityTypeInfo(EntityType entityType) { | |
35 | 0 | super(entityType); |
36 | 0 | } |
37 | ||
38 | /** | |
39 | * @return the entityTypeCode | |
40 | */ | |
41 | public String getEntityTypeCode() { | |
42 | 0 | return getCode(); |
43 | } | |
44 | ||
45 | /** | |
46 | * @param entityTypeCode the entityTypeCode to set | |
47 | */ | |
48 | public void setEntityTypeCode(String entityTypeCode) { | |
49 | 0 | setCode( entityTypeCode ); |
50 | 0 | } |
51 | ||
52 | /** | |
53 | * @return the entityTypeName | |
54 | */ | |
55 | public String getEntityTypeName() { | |
56 | 0 | return getName(); |
57 | } | |
58 | ||
59 | /** | |
60 | * @param entityTypeName the entityTypeName to set | |
61 | */ | |
62 | public void setEntityTypeName(String entityTypeName) { | |
63 | 0 | setName(entityTypeName); |
64 | 0 | } |
65 | ||
66 | } |