Added support for EiJob status
[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.EiProducers;
29 import org.oransc.enrichment.repository.EiTypes;
30 import org.springframework.beans.factory.annotation.Value;
31 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
32 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
33 import org.springframework.context.annotation.Bean;
34 import org.springframework.context.annotation.Configuration;
35
36 @Configuration
37 class BeanFactory {
38
39     @Value("${server.http-port}")
40     private int httpPort = 0;
41
42     private final ApplicationConfig applicationConfig = new ApplicationConfig();
43
44     @Bean
45     public ObjectMapper mapper() {
46         return new ObjectMapper();
47     }
48
49     @Bean
50     public ServletWebServerFactory servletContainer() {
51         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
52         if (httpPort > 0) {
53             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
54         }
55         return tomcat;
56     }
57
58     @Bean
59     public EiJobs eiJobs() {
60         return new EiJobs();
61     }
62
63     @Bean
64     public EiTypes eiTypes() {
65         return new EiTypes();
66     }
67
68     @Bean
69     public EiProducers eiProducers() {
70         return new EiProducers();
71     }
72
73     @Bean
74     public ApplicationConfig getApplicationConfig() {
75         return this.applicationConfig;
76     }
77
78     private static Connector getHttpConnector(int httpPort) {
79         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
80         connector.setScheme("http");
81         connector.setPort(httpPort);
82         connector.setSecure(false);
83         return connector;
84     }
85
86 }