Package org.keycloak.validate.validators
Class LengthValidator
- java.lang.Object
-
- org.keycloak.validate.AbstractSimpleValidator
-
- org.keycloak.validate.AbstractStringValidator
-
- org.keycloak.validate.validators.LengthValidator
-
- All Implemented Interfaces:
ConfiguredProvider,Provider,ProviderFactory<Validator>,SimpleValidator,Validator,ValidatorFactory
public class LengthValidator extends AbstractStringValidator implements ConfiguredProvider
String value length validation - accepts plain string and collection of strings, for basic behavior like null/blank values handling and collections support seeAbstractStringValidator. Validator trims String value before the length validation, can be disabled byKEY_TRIM_DISABLEDboolean configuration entry set totrue.Configuration have to be always provided, with at least one of
KEY_MINandKEY_MAX.
-
-
Field Summary
Fields Modifier and Type Field Description static StringIDstatic LengthValidatorINSTANCEstatic StringKEY_MAXstatic StringKEY_MINstatic StringKEY_TRIM_DISABLEDstatic StringMESSAGE_INVALID_LENGTHstatic StringMESSAGE_INVALID_LENGTH_TOO_LONGstatic StringMESSAGE_INVALID_LENGTH_TOO_SHORT-
Fields inherited from class org.keycloak.validate.AbstractSimpleValidator
IGNORE_EMPTY_VALUE
-
-
Constructor Summary
Constructors Constructor Description LengthValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoValidate(String value, String inputHint, ValidationContext context, ValidatorConfig config)List<ProviderConfigProperty>getConfigProperties()StringgetHelpText()StringgetId()protected StringselectErrorMessage(ValidatorConfig config)Select error message depending on the allowed length interval bound configuration.ValidationResultvalidateConfig(KeycloakSession session, ValidatorConfig config)Validates the given validation config.-
Methods inherited from class org.keycloak.validate.AbstractStringValidator
doValidate, skipValidation
-
Methods inherited from class org.keycloak.validate.AbstractSimpleValidator
isIgnoreEmptyValuesConfigured, validate
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.provider.ConfiguredProvider
getConfig
-
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
Methods inherited from interface org.keycloak.validate.SimpleValidator
close, create, init, postInit
-
-
-
-
Field Detail
-
INSTANCE
public static final LengthValidator INSTANCE
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
MESSAGE_INVALID_LENGTH
public static final String MESSAGE_INVALID_LENGTH
- See Also:
- Constant Field Values
-
MESSAGE_INVALID_LENGTH_TOO_SHORT
public static final String MESSAGE_INVALID_LENGTH_TOO_SHORT
- See Also:
- Constant Field Values
-
MESSAGE_INVALID_LENGTH_TOO_LONG
public static final String MESSAGE_INVALID_LENGTH_TOO_LONG
- See Also:
- Constant Field Values
-
KEY_MIN
public static final String KEY_MIN
- See Also:
- Constant Field Values
-
KEY_MAX
public static final String KEY_MAX
- See Also:
- Constant Field Values
-
KEY_TRIM_DISABLED
public static final String KEY_TRIM_DISABLED
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getIdin interfaceProviderFactory<Validator>
-
doValidate
protected void doValidate(String value, String inputHint, ValidationContext context, ValidatorConfig config)
- Specified by:
doValidatein classAbstractStringValidator
-
selectErrorMessage
protected String selectErrorMessage(ValidatorConfig config)
Select error message depending on the allowed length interval bound configuration.
-
validateConfig
public ValidationResult validateConfig(KeycloakSession session, ValidatorConfig config)
Description copied from interface:ValidatorFactoryValidates the given validation config.Implementations can use the
KeycloakSessionto validate the givenValidatorConfig.- Specified by:
validateConfigin interfaceValidatorFactory- Parameters:
session- theKeycloakSessionconfig- the config to be validated- Returns:
- the validation result
-
getHelpText
public String getHelpText()
- Specified by:
getHelpTextin interfaceConfiguredProvider
-
getConfigProperties
public List<ProviderConfigProperty> getConfigProperties()
- Specified by:
getConfigPropertiesin interfaceConfiguredProvider
-
-