Package org.torquebox.web.as

Examples of org.torquebox.web.as.HttpConnectorStartService


            unit.addToAttachmentList( PoolMetaData.ATTACHMENTS_KEY, poolMetaData );
        }
       
        String forceConnectorStart = System.getProperty( "org.torquebox.web.force_http_connector_start", "false" );
        if (Boolean.parseBoolean( forceConnectorStart )) {
            HttpConnectorStartService webStartService = new HttpConnectorStartService();
            phaseContext.getServiceTarget().addService( WebServices.WEB_CONNECTOR_START, webStartService )
                    .addDependency( CoreServices.runtimeStartPoolName( unit, "web" ) )
                    .addDependency( CoreServices.serviceRegistryName( unit ), ServiceRegistry.class, webStartService.getServiceRegistryInjector() )
                    .install();
        }
    }
View Full Code Here

TOP

Related Classes of org.torquebox.web.as.HttpConnectorStartService

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.