Remove QueuedNotificationManagerMXBean 71/82171/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 20 May 2019 10:43:49 +0000 (12:43 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 20 May 2019 10:45:37 +0000 (12:45 +0200)
This interface is available from yangtools directly, remove
it from controller.

Change-Id: Ic894c0e9fc5d114ebff07bb11f67f1ec67611031
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBean.java [deleted file]
opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBeanImpl.java

diff --git a/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBean.java b/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBean.java
deleted file mode 100644 (file)
index dd89e00..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (c) 2014 Brocade Communications 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.md.sal.common.util.jmx;
-
-import java.util.List;
-
-import org.opendaylight.yangtools.util.concurrent.ListenerNotificationQueueStats;
-
-/**
- * MXBean interface for {@link org.opendaylight.yangtools.util.concurrent.QueuedNotificationManager} statistic metrics.
- *
- * @author Thomas Pantelis
- */
-public interface QueuedNotificationManagerMXBean {
-
-    /**
-     * Returns a list of stat instances for each current listener notification task in progress.
-     */
-    List<ListenerNotificationQueueStats> getCurrentListenerQueueStats();
-
-    /**
-     * Returns the configured maximum listener queue size.
-     */
-    int getMaxListenerQueueSize();
-}
index 0f324cbfd76a4fdf750b78b25f30322c8a26eaac..2ede0810316c3dc547736003302ed188ecef3499 100644 (file)
@@ -5,13 +5,14 @@
  * 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.md.sal.common.util.jmx;
 
-import com.google.common.base.Preconditions;
+import static java.util.Objects.requireNonNull;
+
 import java.util.List;
 import org.opendaylight.yangtools.util.concurrent.ListenerNotificationQueueStats;
 import org.opendaylight.yangtools.util.concurrent.QueuedNotificationManager;
+import org.opendaylight.yangtools.util.concurrent.QueuedNotificationManagerMXBean;
 
 /**
  * Implementation of the QueuedNotificationManagerMXBean interface.
@@ -29,10 +30,10 @@ public class QueuedNotificationManagerMXBeanImpl extends AbstractMXBean
 
     private final QueuedNotificationManager<?,?> manager;
 
-    public QueuedNotificationManagerMXBeanImpl(QueuedNotificationManager<?,?> manager,
-            String beanName, String beanType, String beanCategory) {
+    public QueuedNotificationManagerMXBeanImpl(final QueuedNotificationManager<?,?> manager,
+            final String beanName, final String beanType, final String beanCategory) {
         super(beanName, beanType, beanCategory);
-        this.manager = Preconditions.checkNotNull(manager);
+        this.manager = requireNonNull(manager);
     }
 
     @Override