Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.4)

Part Number E13941-04

weblogicx.jsp.tags
Class ProcessTag

java.lang.Object
  extended by TagSupport
      extended by weblogicx.jsp.tags.ProcessTag

public class ProcessTag
extends TagSupport

The process tag is used to declaratively process the results of form submissions. By specifying conditions based on the values of request parameters you can include or not include JSP on your page.


Constructor Summary
ProcessTag()
           
 
Method Summary
 int doStartTag()
           
 String getName()
           
 String getNotName()
           
 String getNotValue()
           
 String getValue()
           
 void release()
           
 void setName(String name)
          This is the name of the request parameter.
 void setNotName(String notName)
          This is the name of the request parameter that must be present for the enclosed JSP to be included.
 void setNotValue(String notValue)
          Only valid when name is set, this is the value that the name request parameter must not be equal to for this section of JSP to be included.
 void setValue(String value)
          Only valid when name is set, this is the value that the name request parameter must be equal to for this section of JSP to be included.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProcessTag

public ProcessTag()
Method Detail

setName

public void setName(String name)
This is the name of the request parameter. To which you may additionally specify value or notvalue. If "value" and "notvalue" are not set, the enclosed JSP is included if this request parameter is present.


getName

public String getName()

setNotName

public void setNotName(String notName)
This is the name of the request parameter that must be present for the enclosed JSP to be included.


getNotName

public String getNotName()

setValue

public void setValue(String value)
Only valid when name is set, this is the value that the name request parameter must be equal to for this section of JSP to be included.


getValue

public String getValue()

setNotValue

public void setNotValue(String notValue)
Only valid when name is set, this is the value that the name request parameter must not be equal to for this section of JSP to be included.


getNotValue

public String getNotValue()

doStartTag

public int doStartTag()
               throws JspException
Throws:
JspException

release

public void release()

Copyright 1996, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.4)

Part Number E13941-04