All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.demandware.appsec.secure.manipulation.AbstractStringManipulator Maven / Gradle / Ivy

Go to download

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 );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy