Uses of Interface
org.owasp.html.AttributePolicy
-
Packages that use AttributePolicy Package Description org.owasp.html An efficientHtmlSanitizer
configurable via a flexibleHtmlPolicyBuilder
. -
-
Uses of AttributePolicy in org.owasp.html
Classes in org.owasp.html that implement AttributePolicy Modifier and Type Class Description class
FilterUrlByProtocolAttributePolicy
An attribute policy for attributes whose values are URLs that requires that the value have no protocol or have an allowed protocol.Fields in org.owasp.html declared as AttributePolicy Modifier and Type Field Description static AttributePolicy
AttributePolicy. IDENTITY_ATTRIBUTE_POLICY
static AttributePolicy
AttributePolicy. REJECT_ALL_ATTRIBUTE_POLICY
Methods in org.owasp.html that return AttributePolicy Modifier and Type Method Description static AttributePolicy
AttributePolicy.Util. join(AttributePolicy... policies)
An attribute policy equivalent to applying all the given policies in order, failing early if any of them fails.Methods in org.owasp.html with parameters of type AttributePolicy Modifier and Type Method Description static AttributePolicy
AttributePolicy.Util. join(AttributePolicy... policies)
An attribute policy equivalent to applying all the given policies in order, failing early if any of them fails.HtmlPolicyBuilder.AttributeBuilder
HtmlPolicyBuilder.AttributeBuilder. matching(AttributePolicy policy)
Filters and/or transforms the attribute values allowed by laterallow*
calls.
-