Merge "Move this variables to comply with Java Code Conventions"
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / ResourceType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.aai.model;
22
23 import com.fasterxml.jackson.annotation.JsonCreator;
24
25 import java.util.Map;
26 import java.util.Optional;
27 import java.util.function.Function;
28 import java.util.stream.Collectors;
29 import java.util.stream.Stream;
30
31 public enum ResourceType {
32
33     SERVICE_INSTANCE("service-instances", "service-instance-name"),
34     GENERIC_VNF("generic-vnfs", "vnf-name"),
35     L3_NETWORK("l3-networks", "network-name"),
36     VF_MODULE("vf-modules", "vf-module-name"),
37     INSTANCE_GROUP("instance-groups", "instance-group-name"),
38     VOLUME_GROUP("volume-groups", "volume-group-name");
39
40     private static final Map<String, ResourceType> AAI_FORMAT_MAP = Stream
41             .of(ResourceType.values())
42             .collect(Collectors.toMap(s -> s.aaiFormat, Function.identity()));
43
44     private final String aaiFormat;
45     private final String nameFilter;
46
47     ResourceType(String formatted, String nameFilter) {
48         this.aaiFormat = formatted;
49         this.nameFilter = nameFilter;
50     }
51
52     public String getAaiFormat() {
53         return aaiFormat;
54     }
55
56     public String getNameFilter() {
57         return nameFilter;
58     }
59
60     @JsonCreator
61     public static ResourceType fromString(String string) {
62         return Optional
63                 .ofNullable(AAI_FORMAT_MAP.get(string))
64                 .orElseThrow(() -> new IllegalArgumentException(string));
65     }
66 }