fix some sonar issues
[transportpce.git] / networkmodel / src / main / java / org / opendaylight / transportpce / networkmodel / listeners / LldpListener.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 org.opendaylight.yang.gen.v1.http.org.openroadm.lldp.rev161014.LldpNbrInfoChange;
12 import org.opendaylight.yang.gen.v1.http.org.openroadm.lldp.rev161014.OrgOpenroadmLldpListener;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.NodeId;
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 public class LldpListener implements OrgOpenroadmLldpListener {
18
19     private static final Logger LOG = LoggerFactory.getLogger(LldpListener.class);
20     private final NodeId nodeId;
21
22     public LldpListener(final String nodeId) {
23         this.nodeId = new NodeId(nodeId);
24     }
25
26     /**
27      * Callback for lldp-nbr-info-change.
28      * @param notification LldpNbrInfoChange object
29      */
30     @Override
31     public void onLldpNbrInfoChange(LldpNbrInfoChange notification) {
32         LOG.info("Notification {} received {}", LldpNbrInfoChange.QNAME, notification);
33     }
34 }