blob: 171d2f088c0c751438bad65481c5b3101044856d [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.client;
24
25
26import org.glassfish.jersey.client.ClientConfig;
27import org.glassfish.jersey.client.ClientProperties;
28import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
29import org.springframework.beans.factory.annotation.Autowired;
30
31import javax.servlet.ServletContext;
32import javax.ws.rs.client.Client;
33import javax.ws.rs.client.ClientBuilder;
34import java.text.DateFormat;
35import java.text.SimpleDateFormat;
36
37
38public class HttpBasicClient{
39
40 @Autowired
41 private ServletContext servletContext;
42
43 /** The logger. */
44 EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HttpBasicClient.class);
45
46 /** The Constant dateFormat. */
47 final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
48
49 /**
50 * Obtain a basic HTTP client .
51 *
52 * @return Client client object
53 * @throws Exception the exception
54 */
55 public static Client getClient() {
56
57 ClientConfig config = new ClientConfig();
58 config.property(ClientProperties.SUPPRESS_HTTP_COMPLIANCE_VALIDATION, true);
59
60 return ClientBuilder.newClient(config)
61 .register(org.onap.osam.aai.util.CustomJacksonJaxBJsonProvider.class);
62 }
63}