001package eu.righettod;
002
003/**
004 * Enumeration used by the method <code>SecurityUtils.sanitizeFile()</code> to define the type of file to sanitize.
005 */
006public enum InputFileType {
007    /**
008     * Image: PNG, GIF, ...
009     */
010    IMAGE,
011
012    /**
013     * PDF file
014     */
015    PDF
016}