Package org.hibernate.beanvalidation.tck.tests.methodvalidation.model

Examples of org.hibernate.beanvalidation.tck.tests.methodvalidation.model.Item


  })
  public void testOneViolationForCascadedValidation() throws Exception {
    String methodName = "getItem";

    Object object = new OrderLine( null );
    Item returnValue = new Item( "foo" );
    Method method = OrderLine.class.getMethod( methodName );

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
View Full Code Here

TOP

Related Classes of org.hibernate.beanvalidation.tck.tests.methodvalidation.model.Item

Copyright © 2018 www.massapicom. 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.