Class EncodingTag

java.lang.Object
javax.servlet.jsp.tagext.SimpleTagSupport
org.owasp.encoder.tag.EncodingTag
All Implemented Interfaces:
javax.servlet.jsp.tagext.JspTag, javax.servlet.jsp.tagext.SimpleTag
Direct Known Subclasses:
ForCDATATag, ForCssStringTag, ForCssUrlTag, ForHtmlAttributeTag, ForHtmlContentTag, ForHtmlTag, ForHtmlUnquotedAttributeTag, ForJavaScriptAttributeTag, ForJavaScriptBlockTag, ForJavaScriptSourceTag, ForJavaScriptTag, ForUriComponentTag, ForUriTag, ForXmlAttributeTag, ForXmlCommentTag, ForXmlContentTag, ForXmlTag

public abstract class EncodingTag extends javax.servlet.jsp.tagext.SimpleTagSupport
The base class for the encoding tags within this package.
Author:
Jeremy Long (jeremy.long@gmail.com)
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected String
    The value to be written out by the tag.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Sets the value to be written out by the tag.

    Methods inherited from class javax.servlet.jsp.tagext.SimpleTagSupport

    doTag, findAncestorWithClass, getJspBody, getJspContext, getParent, setJspBody, setJspContext, setParent

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • _value

      protected String _value
      The value to be written out by the tag.
  • Constructor Details

    • EncodingTag

      public EncodingTag()
  • Method Details

    • setValue

      public void setValue(String value)
      Sets the value to be written out by the tag.
      Parameters:
      value - the value to be written out by the tag.