org.passay.SequenceData 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
The newest version!
/* See LICENSE for licensing and NOTICE for copyright. */
package org.passay;
/**
* Container for one or more {@link CharacterSequence}.
*
* @author Middleware Services
*/
public interface SequenceData
{
/**
* Return the error code used for message resolution.
*
* @return error code
*/
String getErrorCode();
/** @return one or more illegal character sequences. */
CharacterSequence[] getSequences();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy