Fix trailing space in Info.yaml xacml
[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, 2021 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2024 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  * SPDX-License-Identifier: Apache-2.0
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.policy.pdpx.main.comm;
25
26 import lombok.AllArgsConstructor;
27 import org.onap.policy.common.message.bus.event.client.TopicSinkClient;
28 import org.onap.policy.common.message.bus.event.client.TopicSinkClientException;
29 import org.onap.policy.models.pdp.concepts.PdpStatus;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 @AllArgsConstructor
34 public class XacmlPdpPapRegistration {
35
36     private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPdpPapRegistration.class);
37     private final TopicSinkClient client;
38
39     /**
40      * Sends PDP register and unregister message to the PAP.
41      *
42      * @param status of the PDP
43      * @throws TopicSinkClientException if the topic sink does not exist
44      */
45     public void pdpRegistration(PdpStatus status) throws TopicSinkClientException {
46         try {
47             if (!client.send(status)) {
48                 LOGGER.error("Failed to send to topic sink {}", client.getTopic());
49             }
50         } catch (IllegalStateException e) {
51             LOGGER.error("Failed ot send to topic sink {}", client.getTopic(), e);
52         }
53     }
54 }