Examples of ReturnValueDescriptor


Examples of javax.validation.metadata.ReturnValueDescriptor

    CrossParameterDescriptor crossParameterDescriptor = methodDescriptor.getCrossParameterDescriptor();
    Set<ConstraintDescriptor<?>> constraintDescriptors = crossParameterDescriptor.getConstraintDescriptors();
    assertCorrectConstraintTypes( constraintDescriptors, ELAssert.class);

    methodDescriptor = beanDescriptor.getConstraintsForMethod( "paintCar", int.class );
    ReturnValueDescriptor returnValueDescriptor = methodDescriptor.getReturnValueDescriptor();
    constraintDescriptors = returnValueDescriptor.getConstraintDescriptors();
    assertCorrectConstraintTypes( constraintDescriptors, ELAssert.class);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.