code.google.com home

Uses of Interface
org.owasp.html.HtmlStreamEventReceiver

Packages that use HtmlStreamEventReceiver
org.owasp.html An efficient HtmlSanitizer configurable via a flexible HtmlPolicyBuilder
org.owasp.html.examples   
 

Uses of HtmlStreamEventReceiver in org.owasp.html
 

Subinterfaces of HtmlStreamEventReceiver in org.owasp.html
static interface HtmlSanitizer.Policy
          Receives events based on the HTML stream, and applies a policy to decide what HTML constructs to allow.
 

Classes in org.owasp.html that implement HtmlStreamEventReceiver
 class HtmlStreamRenderer
          Given a series of HTML tokens, writes valid, normalized HTML to the output.
 class TagBalancingHtmlStreamEventReceiver
          Wraps an HTML stream event receiver to fill in missing close tags.
 

Methods in org.owasp.html that return types with arguments of type HtmlStreamEventReceiver
 com.google.common.base.Function<HtmlStreamEventReceiver,HtmlSanitizer.Policy> HtmlPolicyBuilder.toFactory()
          Like HtmlPolicyBuilder.build(org.owasp.html.HtmlStreamEventReceiver) but can be reused to create many different policies each backed by a different output channel.
 

Methods in org.owasp.html with parameters of type HtmlStreamEventReceiver
 HtmlSanitizer.Policy HtmlPolicyBuilder.build(HtmlStreamEventReceiver out)
          Produces a policy based on the allow and disallow calls previously made.
 

Constructors in org.owasp.html with parameters of type HtmlStreamEventReceiver
TagBalancingHtmlStreamEventReceiver(HtmlStreamEventReceiver underlying)
           
 

Uses of HtmlStreamEventReceiver in org.owasp.html.examples
 

Fields in org.owasp.html.examples with type parameters of type HtmlStreamEventReceiver
static com.google.common.base.Function<HtmlStreamEventReceiver,HtmlSanitizer.Policy> EbayPolicyExample.POLICY_DEFINITION
           
static com.google.common.base.Function<HtmlStreamEventReceiver,HtmlSanitizer.Policy> SlashdotPolicyExample.POLICY_DEFINITION
          A policy definition that matches the minimal HTML that Slashdot allows.
 


code.google.com home