com.demandware.appsec.secure.manipulation.AbstractStringManipulator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of content-manipulator Show documentation
Show all versions of content-manipulator Show documentation
Provide a set of Context-Based Encoders and Filterers in Java that allow application developers to sanitize application data for safe output or processing
The newest version!
package com.demandware.appsec.secure.manipulation;
/**
* An abstract base for manipulators who require the full string to manipulate. E.g. an encoder that needs to know the
* previous/next character to decide what to do with the current character.
*
* @author Chris Smith
*/
public abstract class AbstractStringManipulator
extends AbstractManipulator
{
protected AbstractStringManipulator( IManipulateOption manipulatorOption )
{
super( manipulatorOption );
}
}