Minor checkstyle corrections
[transportpce.git] / renderer / src / main / java / org / opendaylight / transportpce / renderer / 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.renderer.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.slf4j.Logger;
14 import org.slf4j.LoggerFactory;
15
16 public class LldpListener implements OrgOpenroadmLldpListener {
17     private static final Logger LOG = LoggerFactory.getLogger(OrgOpenroadmLldpListener.class);
18
19     /**
20      * Callback for lldp-nbr-info-change.
21      *
22      * @param notification LldpNbrInfoChange object
23      */
24     @Override
25     public void onLldpNbrInfoChange(LldpNbrInfoChange notification) {
26
27         LOG.info("Notification {} received {}", LldpNbrInfoChange.QNAME, notification);
28
29     }
30 }