FileDocCategorySizeDatePackage
RedirectTag.javaAPI DocGlassfish v2 API4626Sat May 05 19:17:56 BST 2007org.apache.taglibs.standard.tag.el.core

RedirectTag

public class RedirectTag extends org.apache.taglibs.standard.tag.common.core.RedirectSupport

A handler for <redirect>, which redirects the browser to a new URL.

author
Shawn Bayern

Fields Summary
private String
url_
private String
context_
Constructors Summary
public RedirectTag()
Constructs a new URLEncodeTag. As with TagSupport, subclasses should not provide other constructors and are expected to call the superclass constructor

        super();
        init();
    
Methods Summary
public intdoStartTag()


        // evaluate any expressions we were passed, once per invocation
        evaluateExpressions();

	// chain to the parent implementation
	return super.doStartTag();
    
private voidevaluateExpressions()

        /* 
         * Note: we don't check for type mismatches here; we assume
         * the expression evaluator will return the expected type
         * (by virtue of knowledge we give it about what that type is).
         * A ClassCastException here is truly unexpected, so we let it
         * propagate up.
         */

	url = (String) ExpressionUtil.evalNotNull(
	    "redirect", "url", url_, String.class, this, pageContext);
	context = (String) ExpressionUtil.evalNotNull(
	    "redirect", "context", context_, String.class, this, pageContext);
    
private voidinit()

        // null implies "no expression"
	url_ = context_ = null;
    
public voidrelease()

        super.release();
        init();
    
public voidsetContext(java.lang.String context_)

        this.context_ = context_;
    
public voidsetUrl(java.lang.String url_)

        this.url_ = url_;