2 * ============LICENSE_START=======================================================
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 * SPDX-License-Identifier: Apache-2.0
21 * ============LICENSE_END=========================================================
24 package org.onap.policy.pdpx.main.comm;
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;
34 public class XacmlPdpPapRegistration {
36 private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPdpPapRegistration.class);
37 private final TopicSinkClient client;
40 * Sends PDP register and unregister message to the PAP.
42 * @param status of the PDP
43 * @throws TopicSinkClientException if the topic sink does not exist
45 public void pdpRegistration(PdpStatus status) throws TopicSinkClientException {
47 if (!client.send(status)) {
48 LOGGER.error("Failed to send to topic sink {}", client.getTopic());
50 } catch (IllegalStateException e) {
51 LOGGER.error("Failed ot send to topic sink {}", client.getTopic(), e);