upgrade openroadm models to 2.2.1
[transportpce.git] / networkmodel / src / main / java / org / opendaylight / transportpce / networkmodel / listeners / TcaListener221.java
diff --git a/networkmodel/src/main/java/org/opendaylight/transportpce/networkmodel/listeners/TcaListener221.java b/networkmodel/src/main/java/org/opendaylight/transportpce/networkmodel/listeners/TcaListener221.java
new file mode 100644 (file)
index 0000000..68cec92
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Copyright © 2017 AT&T and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.transportpce.networkmodel.listeners;
+
+import org.opendaylight.yang.gen.v1.http.org.openroadm.tca.rev181019.OrgOpenroadmTcaListener;
+import org.opendaylight.yang.gen.v1.http.org.openroadm.tca.rev181019.TcaNotification;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class TcaListener221 implements OrgOpenroadmTcaListener {
+
+    private static final Logger LOG = LoggerFactory.getLogger(TcaListener221.class);
+
+    /**
+     * Callback for tca-notification.
+     * @param notification TcaNotification object
+     */
+    @Override
+    public void onTcaNotification(TcaNotification notification) {
+        LOG.info("Notification {} received {}", TcaNotification.QNAME, notification);
+    }
+
+}
\ No newline at end of file