Package org.eclipse.jetty.http

Examples of org.eclipse.jetty.http.HttpMethod


            return; //this request is not for the same url as the original
       
        //restore the original request's method on this request
        if (LOG.isDebugEnabled()) LOG.debug("Restoring original method {} for {} with method {}", method, juri,httpRequest.getMethod());
        Request base_request = HttpChannel.getCurrentHttpChannel().getRequest();
        HttpMethod m = HttpMethod.fromString(method);
        base_request.setMethod(m,m.asString());
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jetty.http.HttpMethod

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.