Class ConstraintViolationCreationContext
- java.lang.Object
-
- de.knightsoftnet.validators.client.impl.ConstraintViolationCreationContext
-
public class ConstraintViolationCreationContext extends Object
Container class for the information needed to create a constraint violation.- Author:
- Hardy Ferentschik
-
-
Constructor Summary
Constructors Constructor Description ConstraintViolationCreationContext(String message, org.hibernate.validator.internal.engine.path.PathImpl property)ConstraintViolationCreationContext(String message, org.hibernate.validator.internal.engine.path.PathImpl property, Map<String,Object> messageParameters, Map<String,Object> expressionVariables, Object dynamicPayload)constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetDynamicPayload()Map<String,Object>getExpressionVariables()StringgetMessage()Map<String,Object>getMessageParameters()org.hibernate.validator.internal.engine.path.PathImplgetPath()StringtoString()
-
-
-
Constructor Detail
-
ConstraintViolationCreationContext
public ConstraintViolationCreationContext(String message, org.hibernate.validator.internal.engine.path.PathImpl property)
-
ConstraintViolationCreationContext
public ConstraintViolationCreationContext(String message, org.hibernate.validator.internal.engine.path.PathImpl property, Map<String,Object> messageParameters, Map<String,Object> expressionVariables, Object dynamicPayload)
constructor.- Parameters:
message- validation messageproperty- path of the fieldmessageParameters- map of message parametersexpressionVariables- map of expression variablesdynamicPayload- object of the payload
-
-