Package org.weakref.jmx.testing

Source Code of org.weakref.jmx.testing.TestingMBeanModule

package org.weakref.jmx.testing;

import com.google.inject.AbstractModule;
import com.google.inject.Scopes;
import org.weakref.jmx.guice.MBeanModule;

import javax.management.MBeanServer;

public class TestingMBeanModule
    extends AbstractModule
{
    @Override
    protected void configure()
    {
        install(new MBeanModule());
        bind(MBeanServer.class).to(TestingMBeanServer.class).in(Scopes.SINGLETON);
    }
}
TOP

Related Classes of org.weakref.jmx.testing.TestingMBeanModule

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.