2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.aai.util;
23 import com.sun.jersey.api.client.Client;
24 import com.sun.jersey.api.client.ClientResponse;
25 import com.sun.jersey.api.client.config.ClientConfig;
26 import com.sun.jersey.api.client.config.DefaultClientConfig;
27 import com.sun.jersey.api.client.filter.LoggingFilter;
28 import com.sun.jersey.api.json.JSONConfiguration;
29 import com.sun.jersey.client.urlconnection.HTTPSProperties;
30 import org.onap.aai.aailog.filter.RestControllerClientLoggingInterceptor;
31 import org.onap.aai.exceptions.AAIException;
33 import java.io.FileInputStream;
34 import java.io.IOException;
35 import java.security.*;
36 import java.security.cert.CertificateException;
38 import javax.net.ssl.HostnameVerifier;
39 import javax.net.ssl.HttpsURLConnection;
40 import javax.net.ssl.KeyManagerFactory;
41 import javax.net.ssl.SSLContext;
42 import javax.net.ssl.SSLSession;
44 public class HttpsAuthClient {
49 * @param args the arguments
51 public static void main(String[] args) {
53 String url = AAIConfig.get(AAIConstants.AAI_SERVER_URL) + "business/customers";
54 System.out.println("Making Jersey https call...");
55 Client client = HttpsAuthClient.getClient();
57 ClientResponse res = client.resource(url).accept("application/json").header("X-TransactionId", "PROV001")
58 .header("X-FromAppId", "AAI").type("application/json").get(ClientResponse.class);
60 // System.out.println("Jersey result: ");
61 // System.out.println(res.getEntity(String.class).toString());
63 } catch (KeyManagementException e) {
65 } catch (Exception e) {
72 * @param truststorePath the truststore path
73 * @param truststorePassword the truststore password
74 * @param keystorePath the keystore path
75 * @param keystorePassword the keystore password
77 * @throws KeyManagementException the key management exception
79 public static Client getClient(String truststorePath, String truststorePassword, String keystorePath, String keystorePassword) throws KeyManagementException, UnrecoverableKeyException, CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException {
81 ClientConfig config = new DefaultClientConfig();
82 config.getFeatures().put(JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);
83 config.getClasses().add(org.onap.aai.restcore.CustomJacksonJaxBJsonProvider.class);
84 SSLContext ctx = null;
86 System.setProperty("javax.net.ssl.trustStore", truststorePath);
87 System.setProperty("javax.net.ssl.trustStorePassword", truststorePassword);
88 HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
89 public boolean verify(String string, SSLSession ssls) {
94 ctx = SSLContext.getInstance("TLSv1.2");
95 KeyManagerFactory kmf = null;
97 try(FileInputStream fin = new FileInputStream(keystorePath)) {
98 kmf = KeyManagerFactory.getInstance("SunX509");
99 KeyStore ks = KeyStore.getInstance("PKCS12");
100 char[] pwd = keystorePassword.toCharArray();
103 } catch (Exception e) {
104 System.out.println("Error setting up kmf: exiting");
110 ctx.init(kmf.getKeyManagers(), null, null);
111 config.getProperties().put(HTTPSProperties.PROPERTY_HTTPS_PROPERTIES,
112 new HTTPSProperties(new HostnameVerifier() {
114 public boolean verify(String s, SSLSession sslSession) {
118 } catch (Exception e) {
119 System.out.println("Error setting up config: exiting");
125 Client client = Client.create(config);
126 client.addFilter(new RestControllerClientLoggingInterceptor());
127 // uncomment this line to get more logging for the request/response
128 // client.addFilter(new LoggingFilter(System.out));
136 * @throws KeyManagementException the key management exception
138 public static Client getClient() throws KeyManagementException, AAIException, UnrecoverableKeyException, CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException {
139 String truststore_path = null;
140 String truststore_password = null;
141 String keystore_path = null;
142 String keystore_password = null;
145 AAIConstants.AAI_HOME_ETC_AUTH + AAIConfig.get(AAIConstants.AAI_TRUSTSTORE_FILENAME);
146 truststore_password = AAIConfig.get(AAIConstants.AAI_TRUSTSTORE_PASSWD);
147 keystore_path = AAIConstants.AAI_HOME_ETC_AUTH + AAIConfig.get(AAIConstants.AAI_KEYSTORE_FILENAME);
148 keystore_password = AAIConfig.get(AAIConstants.AAI_KEYSTORE_PASSWD);
150 catch (AAIException e) {
153 return(getClient(truststore_path, truststore_password, keystore_path, keystore_password));