a09018adebaaa6fa1c8d397dfd995e7861a02087
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / config / SwaggerGenerationConfiguration.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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 package org.onap.aai.config;
21
22
23 import org.onap.aai.edges.EdgeIngestor;
24 import org.onap.aai.nodes.NodeIngestor;
25 import org.onap.aai.setup.SchemaVersions;
26 import org.onap.aai.util.genxsd.HTMLfromOXM;
27 import org.onap.aai.util.genxsd.NodesYAMLfromOXM;
28 import org.onap.aai.util.genxsd.YAMLfromOXM;
29 import org.springframework.beans.factory.annotation.Value;
30 import org.springframework.beans.factory.config.ConfigurableBeanFactory;
31 import org.springframework.context.annotation.Bean;
32 import org.springframework.context.annotation.Configuration;
33 import org.springframework.context.annotation.Scope;
34
35 @Configuration
36 public class SwaggerGenerationConfiguration {
37
38         @Value("${schema.uri.base.path}")
39         private String basePath;
40
41         @Bean
42         @Scope(scopeName = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
43         public NodesYAMLfromOXM nodesYamlFromOXM(SchemaVersions schemaVersions, NodeIngestor nodeIngestor, EdgeIngestor edgeIngestor) {
44                 NodesYAMLfromOXM nodesYamlFromOXM = new NodesYAMLfromOXM(basePath, schemaVersions, nodeIngestor, edgeIngestor);
45                 return nodesYamlFromOXM;
46         }
47         
48         @Bean
49         @Scope(scopeName = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
50         public HTMLfromOXM htmlFromOXM(SchemaVersions schemaVersions, NodeIngestor nodeIngestor, EdgeIngestor edgeIngestor) {
51                 HTMLfromOXM htmlFromOXM = new HTMLfromOXM(schemaVersions, nodeIngestor, edgeIngestor);
52                 return htmlFromOXM;
53         }
54         
55         @Bean
56         @Scope(scopeName = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
57         public YAMLfromOXM yamlFromOXM(SchemaVersions schemaVersions, NodeIngestor nodeIngestor, EdgeIngestor edgeIngestor) {
58                 YAMLfromOXM yamlFromOXM = new YAMLfromOXM(basePath, schemaVersions, nodeIngestor, edgeIngestor);
59                 return yamlFromOXM;
60         }
61     
62 }