Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-spec / src / main / java / org / opendaylight / mdsal / binding / javav2 / spec / runtime / NotificationListener.java
diff --git a/binding2/mdsal-binding2-spec/src/main/java/org/opendaylight/mdsal/binding/javav2/spec/runtime/NotificationListener.java b/binding2/mdsal-binding2-spec/src/main/java/org/opendaylight/mdsal/binding/javav2/spec/runtime/NotificationListener.java
deleted file mode 100644 (file)
index e08c940..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.mdsal.binding.javav2.spec.runtime;
-
-import com.google.common.annotations.Beta;
-import java.util.EventListener;
-import org.opendaylight.mdsal.binding.javav2.spec.base.Notification;
-
-/**
- * Marker interface for generated notification listener interfaces. This interface
- * exists solely as support for generated code. Users should never implement this
- * interface directly, but rather implement one of the sub-interfaces generated
- * from a YANG model.
- *
- * <p>
- * The subclasses of this interface have callbacks for events, which are derived
- * from {@link Notification} class in form void
- * on{NotificationType}(NotificationType notification).
- *
- * <p>
- * E.g. if we have notification SessionUp the callback will have signature:
- * <code>void onSessionUp(SessionUp notification)</code>
- */
-@Beta
-public interface NotificationListener extends EventListener {
-}