Package com.sonian.elasticsearch.http.jetty

Examples of com.sonian.elasticsearch.http.jetty.JettyHttpServerTransport


    protected void doStart() throws Exception {
        super.doStart();
        Server server = getServer();
        // JettyHttpServerTransport can be either set explicitly in jetty.xml or obtained from server
        if (transport == null) {
            JettyHttpServerTransport transport = (JettyHttpServerTransport) server.getAttribute(JettyHttpServerTransport.TRANSPORT_ATTRIBUTE);
            if (transport == null) {
                throw new IllegalArgumentException("Transport is not specified");
            }
            setTransport(transport);
        }
View Full Code Here

TOP

Related Classes of com.sonian.elasticsearch.http.jetty.JettyHttpServerTransport

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.