
org.passay.CharacterData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of passay Show documentation
Show all versions of passay Show documentation
Library for checking that a password complies with a custom set of rules
/* See LICENSE for licensing and NOTICE for copyright. */
package org.passay;
/**
* Input data used by {@link CharacterRule}.
*
* @author Middleware Services
*/
public interface CharacterData
{
/**
* Return the error code used for message resolution.
*
* @return error code
*/
String getErrorCode();
/**
* Returns the characters.
*
* @return characters
*/
String getCharacters();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy