Package com.sun.jersey.api.core

Examples of com.sun.jersey.api.core.HttpResponseContext


     * Redirect to a URI that ends in a slash.
     *
     * TODO use the complete URI.
     */
    private boolean redirect(UriRuleContext context) {
        final HttpResponseContext response = context.getResponse();
       
        response.setResponse(
                Response.temporaryRedirect(
                    context.getUriInfo().getRequestUriBuilder().path("/").build()
                ).build()
            );
        return true;
View Full Code Here

TOP

Related Classes of com.sun.jersey.api.core.HttpResponseContext

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.