fix import extra separations
[transportpce.git] / networkmodel / src / main / java / org / opendaylight / transportpce / networkmodel / listeners / DeviceListener221.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.device.rev181019.ChangeNotification;
12 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev181019.CreateTechInfoNotification;
13 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev181019.OrgOpenroadmDeviceListener;
14 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev181019.OtdrScanResult;
15 import org.slf4j.Logger;
16 import org.slf4j.LoggerFactory;
17
18 public class DeviceListener221 implements OrgOpenroadmDeviceListener {
19
20     private static final Logger LOG = LoggerFactory.getLogger(DeviceListener221.class);
21
22     /**
23      * Callback for change-notification.
24      *
25      * @param notification ChangeNotification object
26      */
27     @Override
28     public void onChangeNotification(ChangeNotification notification) {
29
30         LOG.info("Notification {} received {}", ChangeNotification.QNAME, notification);
31     }
32
33     @Override
34     public void onCreateTechInfoNotification(CreateTechInfoNotification notification) {
35
36     }
37
38     /**
39      * Callback for otdr-scan-result.
40      *
41      * @param notification OtdrScanResult object
42      */
43     @Override
44     public void onOtdrScanResult(OtdrScanResult notification) {
45
46         LOG.info("Notification {} received {}", OtdrScanResult.QNAME, notification);
47     }
48
49 }