f63728fdbf9a6c03c4834e33d199311fe7ff7049
[externalapi/nbi.git] / src / main / java / org / onap / nbi / configuration / HttpAndHttpsContainer.java
1 /**
2  *     Copyright (c) 2020 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16
17 package org.onap.nbi.configuration;
18
19 import org.apache.catalina.connector.Connector;
20 import org.springframework.beans.factory.annotation.Value;
21 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
22 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
23 import org.springframework.context.annotation.Bean;
24 import org.springframework.context.annotation.Profile;
25 import org.springframework.stereotype.Component;
26
27 @Component
28 @Profile("ssl")
29 public class HttpAndHttpsContainer {
30
31     @Value("${http.port}")
32     private int httpPort;
33
34     @Bean
35     public ServletWebServerFactory servletContainer() {
36         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
37         tomcat.addAdditionalTomcatConnectors(createStandardConnector());
38         return tomcat;
39     }
40
41     private Connector createStandardConnector() {
42         Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
43         connector.setPort(httpPort);
44         return connector;
45     }
46
47 }