Merge from ECOMP's repository
[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
33 /**
34  *  General HTTP client.
35  */
36
37 public class HttpBasicClient{
38         
39         /** The servlet context. */
40         @Autowired 
41         private ServletContext servletContext;
42         
43         /** The logger. */
44         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HttpBasicClient.class);
45         
46         /**
47          * Obtain a basic HTTP client .
48          *
49          * @return Client client object
50          * @throws Exception the exception
51          */
52         public static Client getClient() {
53                 
54                 ClientConfig config = new ClientConfig();
55                 config.property(ClientProperties.SUPPRESS_HTTP_COMPLIANCE_VALIDATION, true);
56                 
57                 return ClientBuilder.newClient(config)
58                                 .register(org.onap.vid.aai.util.CustomJacksonJaxBJsonProvider.class);
59         }       
60 }