[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-api / src / main / java / org / openecomp / sdc / generator / aai / AaiModelGenerator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.openecomp.sdc.generator.aai;
22
23 import static org.openecomp.sdc.generator.data.GeneratorConstants.ERROR_CATEGORY;
24 import static org.openecomp.sdc.generator.data.GeneratorConstants.ERROR_CODE;
25 import static org.openecomp.sdc.generator.data.GeneratorConstants.ERROR_DESCRIPTION;
26 import static org.openecomp.sdc.generator.data.GeneratorConstants.GENERATOR_ERROR_CODE;
27 import static org.openecomp.sdc.generator.data.GeneratorConstants.GENERATOR_ERROR_SERVICE_INSTANTIATION_FAILED;
28 import static org.openecomp.sdc.generator.data.GeneratorConstants.GENERATOR_PARTNER_NAME;
29 import static org.openecomp.sdc.generator.data.GeneratorConstants.PARTNER_NAME;
30
31 import org.openecomp.sdc.generator.aai.model.Resource;
32 import org.openecomp.sdc.generator.aai.model.Service;
33 import org.openecomp.sdc.generator.aai.model.Widget;
34 import org.openecomp.sdc.generator.logging.CategoryLogLevel;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37 import org.slf4j.MDC;
38
39 import java.io.PrintWriter;
40 import java.io.StringWriter;
41 import java.util.Arrays;
42
43 public interface AaiModelGenerator {
44
45   /**
46    * Gets instance.
47    *
48    * @return the instance
49    */
50   public static AaiModelGenerator getInstance() {
51     Logger log = LoggerFactory.getLogger(AaiModelGenerator.class.getName());
52     try {
53       return AaiModelGenerator.class.cast(
54           Class.forName("org.openecomp.sdc.generator.aai.AaiModelGeneratorImpl").newInstance());
55     } catch (Exception exception) {
56       MDC.put(PARTNER_NAME, GENERATOR_PARTNER_NAME);
57       MDC.put(ERROR_CATEGORY, CategoryLogLevel.ERROR.name());
58       MDC.put(ERROR_CODE, GENERATOR_ERROR_CODE);
59       MDC.put(ERROR_DESCRIPTION, GENERATOR_ERROR_SERVICE_INSTANTIATION_FAILED);
60       StringWriter sw = new StringWriter();
61       exception.printStackTrace(new PrintWriter(sw));
62       log.error(sw.toString());
63     }
64     return null;
65   }
66
67   public String generateModelFor(Service service);
68
69   public String generateModelFor(Resource resource);
70
71
72 }