Interface AttributeContentValidator<T>
-
- Type Parameters:
T- type of the object being validated
- All Known Implementing Classes:
AbstractAttributeContentValidator,BaseMediaAttributeContentValidator,CompositeAttributeContentValidator,DateFormatAttributeContentValidator,DecimalAttributeContentValidator,DefaultAttributeContentValidator,DoubleAttributeContentValidator,FloatAttributeContentValidator,IntegerAttributeContentValidator,LanguageCheckAttributeContentValidator,LongAttributeContentValidator,MediaAttributeContentValidator,MediaContainerAttributeContentValidator,NullCheckAttributeContentValidator,NumberAttributeContentValidator,UniqueIdentifierAttributeContentValidator
public interface AttributeContentValidator<T>Interface to validate the value of the attributes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ValidationError>validate(T value, AttributeDescriptorModel attributeDescriptor)Performs validation on the given arguments.
-
-
-
Method Detail
-
validate
java.util.List<ValidationError> validate(T value, AttributeDescriptorModel attributeDescriptor)
Performs validation on the given arguments.- Parameters:
value- the value objectattributeDescriptor- the attribute descriptor of the givenvalue.
-
-