Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ComponentEbo |
|
| 0.0;0 |
1 | /* | |
2 | * Copyright 2006-2011 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 | ||
17 | package org.kuali.rice.core.framework.component | |
18 | ||
19 | import org.kuali.rice.core.api.component.Component | |
20 | import org.kuali.rice.core.api.component.ComponentContract | |
21 | import org.kuali.rice.kns.bo.ExternalizableBusinessObject | |
22 | import org.kuali.rice.kns.bo.Inactivateable | |
23 | ||
24 | //@ToString | |
25 | class ComponentEbo implements ComponentContract, Inactivateable, ExternalizableBusinessObject { | |
26 | ||
27 | private static final long serialVersionUID = 1L; | |
28 | ||
29 | def String namespaceCode | |
30 | def String code | |
31 | def String name | |
32 | def boolean active = true | |
33 | def boolean virtual | |
34 | def Long versionNumber | |
35 | def String objectId | |
36 | ||
37 | /** | |
38 | * Converts a mutable ebo to its immutable counterpart | |
39 | * @param bo the mutable business object | |
40 | * @return the immutable object | |
41 | */ | |
42 | static Component to(ComponentEbo bo) { | |
43 | 0 | if (bo == null) { |
44 | 0 | return null |
45 | } | |
46 | ||
47 | 0 | return Component.Builder.create(bo).build(); |
48 | } | |
49 | ||
50 | /** | |
51 | * Converts a immutable object to its mutable counterpart | |
52 | * @param im immutable object | |
53 | * @return the mutable bo | |
54 | */ | |
55 | static ComponentEbo from(Component im) { | |
56 | 0 | if (im == null) { |
57 | 0 | return null |
58 | } | |
59 | ||
60 | 0 | ComponentEbo bo = new ComponentEbo() |
61 | 0 | bo.code = im.code |
62 | 0 | bo.name = im.name |
63 | 0 | bo.active = im.active |
64 | 0 | bo.namespaceCode = im.namespaceCode |
65 | 0 | bo.virtual = im.virtual |
66 | 0 | bo.objectId = im.objectId |
67 | 0 | return bo; |
68 | } | |
69 | ||
70 | @Override | |
71 | void refresh() { } | |
72 | } |