Package net.sf.cindy.session.jmx

Examples of net.sf.cindy.session.jmx.JmxSessionAcceptor


            throw new IllegalArgumentException("unsupported session type: "
                    + type);
        try {
            SessionAcceptor acceptor = (SessionAcceptor) c.newInstance();
            if (MBEAN_SERVER != null)
                MBEAN_SERVER.registerMBean(new JmxSessionAcceptor(acceptor),
                        getObjectName("SessionAcceptor-"
                                + ACCEPTOR_COUNTER.incrementAndGet()));
            return acceptor;
        } catch (Exception e) {
            throw new RuntimeException(e);
View Full Code Here

TOP

Related Classes of net.sf.cindy.session.jmx.JmxSessionAcceptor

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.