Remove certOnly and basicAuth from authentication methods
[dcaegen2/collectors/ves.git] / src / main / java / org / onap / dcae / common / configuration / CertBasicAuth.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2018 - 2019 Nokia. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.dcae.common.configuration;
23
24 import org.onap.dcae.ApplicationSettings;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.boot.web.server.Ssl.ClientAuth;
28 import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
29
30 public class CertBasicAuth  implements AuthMethod{
31
32   private static final Logger log = LoggerFactory.getLogger(CertBasicAuth.class);
33   private final ConfigurableServletWebServerFactory container;
34   private final ApplicationSettings properties;
35
36   public CertBasicAuth(ConfigurableServletWebServerFactory container, ApplicationSettings properties) {
37     this.container = container;
38     this.properties = properties;
39   }
40
41   @Override
42   public void configure() {
43     SslContextCreator sslContextCreator = new SslContextCreator(properties);
44     container.setPort(properties.httpsPort());
45     container.setSsl(sslContextCreator.httpsContextWithTlsAuthentication(ClientAuth.WANT));
46     log.info(String.format("Application work in %s mode on %s port.",
47         properties.authMethod(), properties.httpsPort()));
48   }
49 }