Package org.jboss.modcluster.container

Examples of org.jboss.modcluster.container.Engine


    @Test
    public void getEngines() {
        Iterator<Engine> engines = this.server.getEngines().iterator();
       
        assertTrue(engines.hasNext());
        Engine engine = engines.next();
        assertSame(this.connector, engine.getProxyConnector());
        assertFalse(engines.hasNext());
    }
View Full Code Here

TOP

Related Classes of org.jboss.modcluster.container.Engine

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.