Package org.hibernate.validator.resourceloading

Examples of org.hibernate.validator.resourceloading.CachingResourceBundleLocator


  public ResourceBundleMessageInterpolator(ResourceBundleLocator userResourceBundleLocator, boolean cacheMessages) {

    defaultLocale = Locale.getDefault();

    if ( userResourceBundleLocator == null ) {
      this.userResourceBundleLocator = new CachingResourceBundleLocator(
          new PlatformResourceBundleLocator(
              USER_VALIDATION_MESSAGES
          )
      );
    }
    else {
      this.userResourceBundleLocator = new CachingResourceBundleLocator( userResourceBundleLocator );
    }

    this.defaultResourceBundleLocator =
        new CachingResourceBundleLocator(
            new PlatformResourceBundleLocator( DEFAULT_VALIDATION_MESSAGES )
        );

    this.cacheMessages = cacheMessages;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.resourceloading.CachingResourceBundleLocator

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.