Initialize the publisher
[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 \r
17 package org.onap.holmes.common.dmaap;\r
18 \r
19 import com.fasterxml.jackson.core.JsonProcessingException;\r
20 import com.fasterxml.jackson.databind.ObjectMapper;\r
21 import javax.ws.rs.client.Client;\r
22 import javax.ws.rs.client.ClientBuilder;\r
23 import javax.ws.rs.client.Entity;\r
24 import javax.ws.rs.client.WebTarget;\r
25 import javax.ws.rs.core.MediaType;\r
26 import javax.ws.rs.core.Response;\r
27 import lombok.Getter;\r
28 import lombok.Setter;\r
29 import org.glassfish.jersey.client.ClientConfig;\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 public class Publisher {\r
36 \r
37     private String topic;\r
38     private String url;\r
39     private String authInfo;\r
40     private String authExpDate;\r
41 \r
42     public boolean publish(PolicyMsg msg) throws CorrelationException {\r
43         Client client = ClientBuilder.newClient(new ClientConfig());\r
44         ObjectMapper mapper = new ObjectMapper();\r
45         String content = null;\r
46         try {\r
47             content = mapper.writeValueAsString(msg);\r
48         } catch (JsonProcessingException e) {\r
49             throw new CorrelationException("Failed to convert the message object to a json string.", e);\r
50         }\r
51 \r
52         WebTarget webTarget = client.target(url);\r
53         Response response = webTarget.request(MediaType.APPLICATION_JSON)\r
54                 .post(Entity.entity(content, MediaType.APPLICATION_JSON));\r
55 \r
56         return checkStatus(response);\r
57     }\r
58 \r
59     private boolean checkStatus(Response response) {\r
60         return false;\r
61     }\r
62 }\r