Example usage for org.hibernate.jpa AvailableSettings VALIDATION_MODE

List of usage examples for org.hibernate.jpa AvailableSettings VALIDATION_MODE

Introduction

In this page you can find the example usage for org.hibernate.jpa AvailableSettings VALIDATION_MODE.

Prototype

String VALIDATION_MODE

To view the source code for org.hibernate.jpa AvailableSettings VALIDATION_MODE.

Click Source Link

Usage

From source file:org.jooby.internal.hbm.HbmUnitDescriptor.java

License:Apache License

@Override
public ValidationMode getValidationMode() {
    return ValidationMode.valueOf(property(AvailableSettings.VALIDATION_MODE, "NONE").toUpperCase());
}