Test Replace Jackson with GSON
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dmaap / Publisher.java
1 /*\r
2  * Copyright 2017 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 package org.onap.holmes.common.dmaap;\r
17 \r
18 import com.alibaba.fastjson.JSON;\r
19 import javax.ws.rs.client.Client;\r
20 import javax.ws.rs.client.ClientBuilder;\r
21 import javax.ws.rs.client.Entity;\r
22 import javax.ws.rs.client.WebTarget;\r
23 import javax.ws.rs.core.MediaType;\r
24 import javax.ws.rs.core.Response;\r
25 import lombok.Getter;\r
26 import lombok.Setter;\r
27 import org.apache.http.HttpStatus;\r
28 import org.glassfish.jersey.client.ClientConfig;\r
29 import org.jvnet.hk2.annotations.Service;\r
30 import org.onap.holmes.common.dmaap.entity.PolicyMsg;\r
31 import org.onap.holmes.common.exception.CorrelationException;\r
32 \r
33 @Getter\r
34 @Setter\r
35 @Service\r
36 public class Publisher {\r
37 \r
38     private String topic;\r
39     private String url;\r
40     private String authInfo;\r
41     private String authExpDate;\r
42 \r
43     public boolean publish(PolicyMsg msg) throws CorrelationException {\r
44         Client client = ClientBuilder.newClient(new ClientConfig());\r
45         String content = JSON.toJSONString(msg);\r
46         WebTarget webTarget = client.target(url);\r
47         Response response = null;\r
48         try {\r
49             response = webTarget.request(MediaType.APPLICATION_JSON)\r
50                     .post(Entity.entity(content, MediaType.APPLICATION_JSON));\r
51         } catch (Exception e) {\r
52             throw new CorrelationException("Failed to connect to DCAE.", e);\r
53         }\r
54         return checkStatus(response);\r
55     }\r
56 \r
57     private boolean checkStatus(Response response) {\r
58         return response.getStatus() == HttpStatus.SC_OK;\r
59     }\r
60 }\r