Package org.hibernate.validator.internal.metadata.raw

Examples of org.hibernate.validator.internal.metadata.raw.ConstrainedField.unwrapMode()


        GolfPlayer.class
    );

    ConstrainedField constrainedField = findConstrainedField( beanConfigurations, GolfPlayer.class, "name" );

    assertEquals( constrainedField.unwrapMode(), UnwrapMode.UNWRAP );
  }

  @Test
  @TestForIssue(jiraKey = "HV-925")
  public void testAutomaticUnwrapValidatedValueOnField() throws Exception {
View Full Code Here


        GolfPlayer.class
    );

    ConstrainedField constrainedField = findConstrainedField( beanConfigurations, GolfPlayer.class, "nickname" );

    assertEquals( constrainedField.unwrapMode(), UnwrapMode.AUTOMATIC );
  }

  @Test
  @TestForIssue(jiraKey = "HV-819")
  public void unwrapValidatedValueOnProperty() throws Exception {
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.