8f0d59fd3f08bed18f347b9dcd041cc6fd9439a9
[vid.git] / vid-app-common / src / main / java / org / onap / vid / client / HttpBasicClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 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
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.onap.vid.client;
22
23
24 import org.glassfish.jersey.client.ClientConfig;
25 import org.glassfish.jersey.client.ClientProperties;
26 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
27 import org.springframework.beans.factory.annotation.Autowired;
28
29 import javax.servlet.ServletContext;
30 import javax.ws.rs.client.Client;
31 import javax.ws.rs.client.ClientBuilder;
32 import java.text.DateFormat;
33 import java.text.SimpleDateFormat;
34
35 /**
36  *  General HTTP client.
37  */
38
39 public class HttpBasicClient{
40         
41         /** The servlet context. */
42         @Autowired 
43         private ServletContext servletContext;
44         
45         /** The logger. */
46         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HttpBasicClient.class);
47         
48         /** The Constant dateFormat. */
49         final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
50         
51         /**
52          * Obtain a basic HTTP client .
53          *
54          * @return Client client object
55          * @throws Exception the exception
56          */
57         public static Client getClient() {
58                 
59                 ClientConfig config = new ClientConfig();
60                 config.property(ClientProperties.SUPPRESS_HTTP_COMPLIANCE_VALIDATION, true);
61                 
62                 return ClientBuilder.newClient(config)
63                                 .register(org.onap.vid.aai.util.CustomJacksonJaxBJsonProvider.class);
64         }       
65 }