001package eu.righettod;
002
003/**
004 * Enumeration used by the method <code>SecurityUtils.extractAllSensitiveInformation()</code> to identify types of information found.
005 */
006public enum SensitiveInformationType {
007    /**
008     * National identifier used by government entities in Luxembourg to identify uniquely citizens.
009     *
010     * @see "https://guichet.public.lu/en/citoyens/citoyennete/registre-national/identification/demande-numero-rnpp.html"
011     * @see "https://cnpd.public.lu/fr/decisions-avis/2009/identifiant-unique.html"
012     *
013     */
014    LUXEMBOURG_NATIONAL_IDENTIFICATION_NUMBER,
015
016    /**
017     * International Bank Account Number.
018     *
019     * @see "https://en.wikipedia.org/wiki/International_Bank_Account_Number"
020     */
021    IBAN
022
023}