Xacml PDP Register/Unregister Changes
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / comm / XacmlPdpPapRegistration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2019 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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdpx.main.comm;
24
25 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClient;
26 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClientException;
27 import org.onap.policy.models.pdp.concepts.PdpStatus;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 public class XacmlPdpPapRegistration {
32
33     private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPdpPapRegistration.class);
34     private final TopicSinkClient client;
35
36     /**
37      * Constructs the object.
38      * @param client name of the TopickSinkClient
39      */
40     public XacmlPdpPapRegistration(TopicSinkClient client) {
41         this.client = client;
42     }
43
44     /**
45      * Sends PDP register and unregister message to the PAP.
46      * @param status of the PDP
47      * @throws TopicSinkClientException if the topic sink does not exist
48      */
49     public void pdpRegistration(PdpStatus status) throws TopicSinkClientException {
50         try {
51             if (!client.send(status)) {
52                 LOGGER.error("Failed to send to topic sink " + client.getTopic());
53                 return;
54             }
55         } catch (IllegalStateException e) {
56             LOGGER.error("Failed ot send to topic sink " + client.getTopic(), e);
57             return;
58         }
59     }
60 }