Package com.sun.enterprise.management.j2ee

Examples of com.sun.enterprise.management.j2ee.J2EEClusterImpl


        for (int i = 0; i < clusters.length; i++) {
            final String nameProp = AMX.NAME_KEY + '=' + clusters[i];
            final String props = Util.concatenateProps(j2eeTypeProp, nameProp);
            final ObjectName on = JMXUtil.newObjectName(amxJMXDomain, props);
            try {
                mbs.registerMBean(new J2EEClusterImpl(null), on);
                _logger.info(on + " is registered.");
            } catch (Exception e) {
                throw new RuntimeException(e.getMessage());
            }
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.management.j2ee.J2EEClusterImpl

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.