643c03fbe1bc998079504ec485c2a948ee13f862
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / enums / ComponentFieldsEnum.java
1 /*-
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *      http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 package org.openecomp.sdc.be.datatypes.enums;
17
18 import lombok.AllArgsConstructor;
19 import lombok.Getter;
20
21 @Getter
22 @AllArgsConstructor
23 public enum ComponentFieldsEnum {
24
25     PROPERTIES("properties"),
26     INPUTS("inputs"),
27     USERS("users"),
28     GROUPS("groups"),
29     NON_EXCLUDED_GROUPS("nonExcludedGroups"),
30     COMPONENT_INSTANCES("componentInstances"),
31     COMPONENT_INSTANCES_PROPERTIES("componentInstancesProperties"),
32     CAPABILITIES("capabilities"),
33     REQUIREMENTS("requirements"),
34     ALL_VERSIONS("allVersions"),
35     ADDITIONAL_INFORMATION("additionalInformation"),
36     ARTIFACTS("artifacts"),
37     INTERFACES("interfaces"),
38     DERIVED_FROM("derivedFrom"),
39     ATTRIBUTES("attributes"),
40     COMPONENT_INSTANCES_ATTRIBUTES("componentInstancesAttributes"),
41     COMPONENT_INSTANCE_INPUTS("componentInstancesInputs"),
42     COMPONENT_INSTANCE_RELATION("componentInstancesRelations"),
43     DEPLOYMENT_ARTIFACTS("deploymentArtifacts"),
44     TOSCA_ARTIFACTS("toscaArtifacts"),
45     SERVICE_API_ARTIFACTS("serviceApiArtifacts"),
46     METADATA("metadata"),
47     CATEGORIES("categories"),
48     INSTANCE_CAPABILTY_PROPERTIES("instanceCapabiltyProperties"),
49     FORWARDING_PATHS("forwardingPaths"),
50     POLICIES("policies"),
51     NON_EXCLUDED_POLICIES("nonExcludedPolicies"),
52     NODE_FILTER("nodeFilter"),
53     SUBSTITUTION_FILTER("substitutionFilter"),
54     COMPONENT_INSTANCES_INTERFACES("componentInstancesInterfaces"),
55     DATA_TYPES("data_types");
56
57     private final String value;
58
59     public static ComponentFieldsEnum findByValue(String value) {
60         ComponentFieldsEnum ret = null;
61         for (ComponentFieldsEnum curr : ComponentFieldsEnum.values()) {
62             if (curr.getValue().equals(value)) {
63                 ret = curr;
64                 return ret;
65             }
66         }
67         return ret;
68     }
69 }