Don't use NotificationListener (NodeRegistration)
[transportpce.git] / networkmodel / src / main / java / org / opendaylight / transportpce / networkmodel / listeners / DeOperationsListener221.java
1 /*
2  * Copyright © 2017 AT&T and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.networkmodel.listeners;
10
11 import java.util.Set;
12 import org.opendaylight.mdsal.binding.api.NotificationService.CompositeListener;
13 import org.opendaylight.yang.gen.v1.http.org.openroadm.de.operations.rev181019.RestartNotification;
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 public class DeOperationsListener221 {
18
19     private static final Logger LOG = LoggerFactory.getLogger(DeOperationsListener221.class);
20
21     public CompositeListener getCompositeListener() {
22         return new CompositeListener(Set.of(
23             new CompositeListener.Component<>(RestartNotification.class, this::onRestartNotification)));
24     }
25
26     /**
27      * Callback for restart-notification.
28      *
29      * @param notification RestartNotification object
30      */
31     private void onRestartNotification(RestartNotification notification) {
32         LOG.info("Notification {} received {}", RestartNotification.QNAME, notification);
33     }
34
35 }