Package de.xima.fc.gui.validator.name
Class AUniqueStringFieldValidator<TEntity extends de.xima.cmn.dao.interfaces.IEntity<Long>>
- java.lang.Object
-
- de.xima.fc.gui.validator.name.AUniqueEntityFieldValidator<TEntity,String>
-
- de.xima.fc.gui.validator.name.AUniqueStringFieldValidator<TEntity>
-
- Type Parameters:
TEntity
- Type of the entity owning the field.
- All Implemented Interfaces:
Serializable
,EventListener
,javax.faces.validator.Validator
- Direct Known Subclasses:
AUniqueNameValidator
public abstract class AUniqueStringFieldValidator<TEntity extends de.xima.cmn.dao.interfaces.IEntity<Long>> extends AUniqueEntityFieldValidator<TEntity,String>
Abstract base class for faces validators that check whether a certain string field of an entity is unique amongst all existing entities within a certain scope.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
ignoreCase
-
Constructor Summary
Constructors Modifier Constructor Description protected
AUniqueStringFieldValidator(Class<TEntity> entityClass)
protected
AUniqueStringFieldValidator(Class<TEntity> entityClass, boolean ignoreCase)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
convertValue(Object value)
protected boolean
hasValue(String value)
-
Methods inherited from class de.xima.fc.gui.validator.name.AUniqueEntityFieldValidator
addScope, addSearch, createError, createError, validate
-
-
-
-
Method Detail
-
convertValue
protected final String convertValue(Object value)
- Specified by:
convertValue
in classAUniqueEntityFieldValidator<TEntity extends de.xima.cmn.dao.interfaces.IEntity<Long>,String>
- Parameters:
value
- Value as received from the UI.- Returns:
- The value, converted to the expected type.
-
-