Package org.jboss.as.web.host

Examples of org.jboss.as.web.host.WebHost


* @author <a href="mailto:alessio.soldano@jboss.com">Alessio Soldano</a>
*/
public class EndpointPublisherFactoryImpl implements EndpointPublisherFactory {

    public EndpointPublisher newEndpointPublisher(String hostname) throws Exception {
        WebHost virtualHost = ASHelper.getMSCService(WebHost.SERVICE_NAME.append(hostname),
                WebHost.class);
        return new EndpointPublisherImpl(virtualHost);
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.web.host.WebHost

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.