Move PAP database provider to spring boot default
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / comm / PdpHeartbeatListener.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
5  *  Modifications Copyright (C) 2021-2022 Bell Canada. 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.pap.main.comm;
24
25 import lombok.AllArgsConstructor;
26 import lombok.NoArgsConstructor;
27 import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure;
28 import org.onap.policy.common.endpoints.listeners.TypedMessageListener;
29 import org.onap.policy.models.pdp.concepts.PdpStatus;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Component;
32
33 /**
34  * Listener for PDP Status messages which either represent registration or heart beat.
35  *
36  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
37  */
38 @AllArgsConstructor
39 @NoArgsConstructor
40 @Component
41 public class PdpHeartbeatListener implements TypedMessageListener<PdpStatus> {
42
43     @Autowired
44     private PdpStatusMessageHandler pdpStatusMessageHandler;
45
46
47     @Override
48     public void onTopicEvent(final CommInfrastructure infra, final String topic, final PdpStatus message) {
49         pdpStatusMessageHandler.handlePdpStatus(message);
50     }
51 }