aboutsummaryrefslogtreecommitdiffstats
path: root/common/onap-sdc-artifact-generator-lib/onap-sdc-artifact-generator-core/src/main/java/org/onap/sdc/generator/GeneratorManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/onap-sdc-artifact-generator-lib/onap-sdc-artifact-generator-core/src/main/java/org/onap/sdc/generator/GeneratorManager.java')
-rw-r--r--common/onap-sdc-artifact-generator-lib/onap-sdc-artifact-generator-core/src/main/java/org/onap/sdc/generator/GeneratorManager.java93
1 files changed, 0 insertions, 93 deletions
diff --git a/common/onap-sdc-artifact-generator-lib/onap-sdc-artifact-generator-core/src/main/java/org/onap/sdc/generator/GeneratorManager.java b/common/onap-sdc-artifact-generator-lib/onap-sdc-artifact-generator-core/src/main/java/org/onap/sdc/generator/GeneratorManager.java
deleted file mode 100644
index 92314418f3..0000000000
--- a/common/onap-sdc-artifact-generator-lib/onap-sdc-artifact-generator-core/src/main/java/org/onap/sdc/generator/GeneratorManager.java
+++ /dev/null
@@ -1,93 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * 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.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.sdc.generator;
-
-import com.fasterxml.jackson.databind.ObjectMapper;
-import org.onap.sdc.generator.data.ArtifactType;
-import org.onap.sdc.generator.data.GeneratorConfiguration;
-import org.onap.sdc.generator.data.GeneratorConstants;
-import org.onap.sdc.generator.intf.ArtifactGenerator;
-import org.onap.sdc.generator.intf.Generator;
-import org.onap.sdc.generator.util.ArtifactGeneratorUtil;
-import org.openecomp.sdc.logging.api.Logger;
-import org.openecomp.sdc.logging.api.LoggerFactory;
-import org.reflections.Reflections;
-
-import static org.onap.sdc.generator.util.ArtifactGeneratorUtil.logError;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-public class GeneratorManager {
-
- private static Logger log = LoggerFactory.getLogger(GeneratorManager.class.getName());
- private static Map<ArtifactType, ArtifactGenerator> generators = new HashMap<>();
-
- /**
- * Gets active artifact generators.
- *
- * @param clientConfiguration the client configuration
- * @return the active artifact generators
- * @throws Exception the exception
- */
- public static List<ArtifactGenerator> getActiveArtifactGenerators(String clientConfiguration)
- throws Exception {
-
- if (generators.isEmpty()) {
- log.debug("Getting list of active generators");
- Reflections reflections = new Reflections("org.onap.sdc.generator");
- Set<Class<?>> annotated = reflections.getTypesAnnotatedWith(Generator.class);
- for (Class<?> clazz : annotated) {
- Generator generator = clazz.getAnnotation(Generator.class);
- generators.put(generator.artifactType(), (ArtifactGenerator) clazz.newInstance());
- }
- }
-
- log.debug("Parsing generator configuration from the client configuration : "
- + clientConfiguration);
- GeneratorConfiguration gf = getGeneratorConfiguration(clientConfiguration);
- List<ArtifactGenerator> generatorList = new ArrayList<>();
- if (gf.getArtifactTypes() != null && !gf.getArtifactTypes().isEmpty()) {
- for (ArtifactType type : gf.getArtifactTypes()) {
- if (generators.get(type) != null) {
- generatorList.add(generators.get(type));
- }
- }
- }
-
- return generatorList;
- }
-
- private static GeneratorConfiguration getGeneratorConfiguration(String jsonConfiguration) {
- try {
- return new ObjectMapper().readValue(jsonConfiguration, GeneratorConfiguration.class);
- } catch (Exception exception) {
- ArtifactGeneratorUtil
- .logError(GeneratorConstants.GENERATOR_ERROR_INVALID_CLIENT_CONFIGURATION, exception);
- throw new IllegalArgumentException(
- GeneratorConstants.GENERATOR_ERROR_INVALID_CLIENT_CONFIGURATION, exception);
- }
- }
-
-}