Enrichment Coordination Service
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / BeanFactory.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.oransc.enrichment;
22
23 import com.fasterxml.jackson.databind.ObjectMapper;
24
25 import org.apache.catalina.connector.Connector;
26 import org.oransc.enrichment.configuration.ApplicationConfig;
27 import org.oransc.enrichment.repository.EiJobs;
28 import org.oransc.enrichment.repository.EiTypes;
29 import org.springframework.beans.factory.annotation.Value;
30 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
31 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
32 import org.springframework.context.annotation.Bean;
33 import org.springframework.context.annotation.Configuration;
34
35 @Configuration
36 class BeanFactory {
37
38     @Value("${server.http-port}")
39     private int httpPort = 0;
40
41     private final ApplicationConfig applicationConfig = new ApplicationConfig();
42
43     @Bean
44     public ObjectMapper mapper() {
45         return new ObjectMapper();
46     }
47
48     @Bean
49     public ServletWebServerFactory servletContainer() {
50         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
51         if (httpPort > 0) {
52             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
53         }
54         return tomcat;
55     }
56
57     @Bean
58     public EiJobs eiJobs() {
59         return new EiJobs();
60     }
61
62     @Bean
63     public EiTypes eiTypes() {
64         return new EiTypes();
65     }
66
67     @Bean
68     public ApplicationConfig getApplicationConfig() {
69         return this.applicationConfig;
70     }
71
72     private static Connector getHttpConnector(int httpPort) {
73         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
74         connector.setScheme("http");
75         connector.setPort(httpPort);
76         connector.setSecure(false);
77         return connector;
78     }
79
80 }