aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java')
-rw-r--r--openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java47
1 files changed, 20 insertions, 27 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java b/openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java
index f0310ba68a..99b55e9964 100644
--- a/openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java
+++ b/openecomp-be/lib/openecomp-sdc-datatypes-lib/src/main/java/org/openecomp/sdc/datatypes/model/heat/ForbiddenHeatResourceTypes.java
@@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -17,41 +17,34 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
-
package org.openecomp.sdc.datatypes.model.heat;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
-
public enum ForbiddenHeatResourceTypes {
- HEAT_FLOATING_IP_TYPE("OS::Neutron::FloatingIP");
-
-
- private static Map<String, ForbiddenHeatResourceTypes> stringToForbiddenHeatResourceTypeMap;
-
- static {
- stringToForbiddenHeatResourceTypeMap = new HashMap<>();
-
- for (ForbiddenHeatResourceTypes type : ForbiddenHeatResourceTypes.values()) {
- stringToForbiddenHeatResourceTypeMap.put(type.forbiddenType, type);
+ HEAT_FLOATING_IP_TYPE("OS::Neutron::FloatingIP");
+ private static Map<String, ForbiddenHeatResourceTypes> stringToForbiddenHeatResourceTypeMap;
+
+ static {
+ stringToForbiddenHeatResourceTypeMap = new HashMap<>();
+ for (ForbiddenHeatResourceTypes type : ForbiddenHeatResourceTypes.values()) {
+ stringToForbiddenHeatResourceTypeMap.put(type.forbiddenType, type);
+ }
}
- }
- private String forbiddenType;
+ private String forbiddenType;
+ ForbiddenHeatResourceTypes(String forbiddenType) {
+ this.forbiddenType = forbiddenType;
+ }
- ForbiddenHeatResourceTypes(String forbiddenType) {
- this.forbiddenType = forbiddenType;
- }
-
- public static ForbiddenHeatResourceTypes findByForbiddenHeatResource(String heatResource) {
- return stringToForbiddenHeatResourceTypeMap.get(heatResource);
- }
-
+ public static ForbiddenHeatResourceTypes findByForbiddenHeatResource(String heatResource) {
+ return stringToForbiddenHeatResourceTypeMap.get(heatResource);
+ }
- public static boolean isResourceTypeValid(String resourceType) {
- return Objects.nonNull(findByForbiddenHeatResource(resourceType));
- }
+ public static boolean isResourceTypeValid(String resourceType) {
+ return Objects.nonNull(findByForbiddenHeatResource(resourceType));
+ }
}