Example usage for org.springframework.web.servlet.view RedirectView subclass-usage

List of usage examples for org.springframework.web.servlet.view RedirectView subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.view RedirectView subclass-usage.

Usage

From source file org.iwethey.forums.web.SimpleRedirectView.java

/**
 * Simple object to redirect to a page without including query information
 * like the Spring RedirectView does.
 * <p>
 * $Id: SimpleRedirectView.java 55 2004-12-07 21:53:42Z anderson $
 * <p>

From source file ar.com.zauber.commons.spring.servlet.view.PermanentlyRedirectView.java

/**
 * <p>
 * Extension a {@link RedirectView} que permite enviar una respuesta
 * de tipo 301 (Moved Permanently) al cliente. Ver
 * http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html.
 * </p>

From source file org.hdiv.web.servlet.view.RedirectViewHDIV.java

/**
 * <p>View that redirects to an absolute, context relative, or current request
 * relative URL. By default all primitive model attributes (or collections
 * thereof) are exposed as HTTP query parameters, but this behavior can be changed
 * by overriding the {@link #isEligibleProperty(String, Object)} method.
 * 

From source file com.rsmart.certification.impl.control.RedirectView.java

public class RedirectView extends org.springframework.web.servlet.view.RedirectView {
    /**
     ** Determine whether the given model element should be exposed as a
     ** query property. The default implementation considers Strings and
     ** primitives as eligible, and also arrays and Collections/Iterables
     ** with corresponding elements..

From source file org.sakaiproject.metaobj.shared.control.RedirectView.java

import javax.servlet.http.HttpServletResponse;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.sakaiproject.component.cover.ComponentManager;
import org.sakaiproject.metaobj.shared.mgt.PortalParamManager;

From source file edu.mayo.cts2.framework.webapp.rest.view.NoPathParamRedirectView.java

/**
 * The Class NoPathParamRedirectView.
 *
 * @author <a href="mailto:kevin.peterson@mayo.edu">Kevin Peterson</a>
 */
public class NoPathParamRedirectView extends RedirectView {