Package org.apache.tomcat.modules.config

Examples of org.apache.tomcat.modules.config.DynamicMBeanProxy


   
    // -------------------- Tomcat callbacks --------------------

    private void createMBean( String domain, Object proxy, String name ) {
        try {
            DynamicMBeanProxy mbean=new DynamicMBeanProxy();
            mbean.setReal( proxy );
            if( name!=null ) {
                mbean.setName( "name=" + name );
            }

            mbean.registerMBean( domain );
           
            // Set mserver once
            if (mserver == null)
                mserver = mbean.getMBeanServer();
               
        } catch( Throwable t ) {
            log( "Error creating mbean ", t );
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.tomcat.modules.config.DynamicMBeanProxy

Copyright © 2018 www.massapicom. 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.