javax.validation
Interface ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext

Enclosing interface:
ConstraintValidatorContext.ConstraintViolationBuilder

public static interface ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext

Represent a node whose context is configurable (ie. index, key and isInIterable) and that is not necessarily a leaf node (ie. subnodes can be added).


Method Summary
 ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext addBeanNode()
          Add a bean node (class-level) to the path the ConstraintViolation will be associated to.
 ConstraintValidatorContext addConstraintViolation()
          Add the new ConstraintViolation to be generated if the constraint validator mark the value as invalid.
 ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addNode(String name)
          Deprecated. since 1.1 - replaced by addPropertyNode and addBeanNode
 ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addPropertyNode(String name)
          Add a property node to the path the ConstraintViolation will be associated to.
 ConstraintValidatorContext.ConstraintViolationBuilder.NodeContextBuilder inIterable()
          Mark the node as being in an Iterable or a Map
 

Method Detail

inIterable

ConstraintValidatorContext.ConstraintViolationBuilder.NodeContextBuilder inIterable()
Mark the node as being in an Iterable or a Map

Returns:
a builder representing iterable details

addNode

@Deprecated
ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addNode(String name)
Deprecated. since 1.1 - replaced by addPropertyNode and addBeanNode

Add a node to the path the ConstraintViolation will be associated to. name describes a single property. In particular, dot (.) is not allowed.

Parameters:
name - property name
Returns:
a builder representing node name

addPropertyNode

ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addPropertyNode(String name)
Add a property node to the path the ConstraintViolation will be associated to. name describes a single property. In particular, dot (.) is not allowed.

Parameters:
name - property name
Returns:
a builder representing node name
Throws:
IllegalArgumentException - if the name is null
Since:
1.1

addBeanNode

ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext addBeanNode()
Add a bean node (class-level) to the path the ConstraintViolation will be associated to. Note that bean nodes are always leaf nodes.

Returns:
a builder representing the bean node
Since:
1.1

addConstraintViolation

ConstraintValidatorContext addConstraintViolation()
Add the new ConstraintViolation to be generated if the constraint validator mark the value as invalid. Methods of the ConstraintViolationBuilder instance this object comes from and the constraint violation builder nested objects throw IllegalStateException after this call.

Returns:
ConstraintValidatorContext instance the ConstraintViolationBuilder comes from


Copyright © 2007-2013. All Rights Reserved.