BUG-4514: clean children in InternalJMXRegistrator
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / jmx / InternalJMXRegistration.java
diff --git a/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/jmx/InternalJMXRegistration.java b/opendaylight/config/config-manager/src/main/java/org/opendaylight/controller/config/manager/impl/jmx/InternalJMXRegistration.java
new file mode 100644 (file)
index 0000000..4f4f990
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2013 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.config.manager.impl.jmx;
+
+import com.google.common.base.Preconditions;
+import javax.management.ObjectName;
+
+final class InternalJMXRegistration implements AutoCloseable {
+    private final InternalJMXRegistrator internalJMXRegistrator;
+    private final ObjectName on;
+
+    InternalJMXRegistration(final InternalJMXRegistrator internalJMXRegistrator, final ObjectName on) {
+        this.internalJMXRegistrator = Preconditions.checkNotNull(internalJMXRegistrator);
+        this.on = on;
+    }
+
+    @Override
+    public void close() {
+        internalJMXRegistrator.unregisterMBean(on);
+    }
+}