Migrate OSGI compendium reference
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / sal / binding / test / mock / FooListener.java
index 3629689cdf33cc83af1deccb36e15341b3c5cc4a..b9065b6182ac3e0044daaea51d3d64b66bd1191c 100644 (file)
@@ -1,10 +1,17 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. 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.controller.sal.binding.test.mock;
 
 import org.opendaylight.yangtools.yang.binding.NotificationListener;
 
+@Deprecated
 public interface FooListener extends NotificationListener {
 
     void onFooUpdate(FooUpdate notification);
-    void onBarUpdate(BarUpdate notification);
-    
+
 }