Merge "New GroupLevel DeleteE2EServiceInstance flow"
[so.git] / common / src / main / java / org / onap / so / serviceinstancebeans / ModelType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.serviceinstancebeans;
22
23 import java.lang.reflect.InvocationTargetException;
24 import com.google.common.base.CaseFormat;
25
26 /*
27  * Enum for Model Type values returned by API Handler to BPMN
28  */
29 public enum ModelType {
30     service("serviceInstance"),
31     vnf("vnf"),
32     vfModule("vfModule"),
33     volumeGroup("volumeGroup"),
34     network("network"),
35     configuration("configuration"),
36     connectionPoint("connectionPoint"),
37     pnf("pnf"),
38     networkInstanceGroup("networkInstanceGroup"),
39     instanceGroup("instanceGroup");
40
41     final String name;
42
43     private ModelType(String name) {
44         this.name = name;
45     }
46
47
48     public <T> T getId(Object obj) {
49         return this.get(obj, "Id");
50     }
51
52     public <T> T getName(Object obj) {
53         return this.get(obj, "Name");
54     }
55
56     public void setId(Object obj, Object value) {
57         this.set(obj, "Id", value);
58     }
59
60     public void setName(Object obj, Object value) {
61         this.set(obj, "Name", value);
62     }
63
64     protected <T> T get(Object obj, String field) {
65         T result = null;
66         if (obj != null) {
67             try {
68                 result = (T) obj.getClass().getMethod(String.format("%s%s%s", "get",
69                         CaseFormat.LOWER_CAMEL.to(CaseFormat.UPPER_CAMEL, this.name), field)).invoke(obj);
70             } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException
71                     | NoSuchMethodException | SecurityException e) {
72                 // silent fail
73             }
74         }
75
76         return result;
77     }
78
79     protected void set(Object obj, String field, Object value) {
80         if (obj != null) {
81             try {
82                 obj.getClass()
83                         .getMethod(
84                                 String.format("%s%s%s", "set",
85                                         CaseFormat.LOWER_CAMEL.to(CaseFormat.UPPER_CAMEL, this.name), field),
86                                 value.getClass())
87                         .invoke(obj, value);
88             } catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException
89                     | InvocationTargetException e) {
90                 // silent fail
91             }
92         }
93     }
94 }