Package br.net.woodstock.rockframework.persistence.orm

Examples of br.net.woodstock.rockframework.persistence.orm.CacheMode


  @Override
  protected void setQueryOption(final Query query, final String name, final Object value) {
    if (name.equals(Constants.OPTION_CACHE_MODE)) {
      if (value instanceof CacheMode) {
        CacheMode cacheMode = (CacheMode) value;
        if (cacheMode == CacheMode.ENABLED) {
          query.setCacheable(true);
          query.setCacheMode(org.hibernate.CacheMode.NORMAL);
        }
      } else if (value != null) {
View Full Code Here


  @Override
  protected void setQueryOption(final Query query, final String name, final Object value) {
    if (name.equals(Constants.OPTION_CACHE_MODE)) {
      if (value instanceof CacheMode) {
        CacheMode cacheMode = (CacheMode) value;
        if (cacheMode == CacheMode.ENABLED) {
          query.setCacheable(true);
          query.setCacheMode(org.hibernate.CacheMode.NORMAL);
        }
      } else if (value != null) {
View Full Code Here

TOP

Related Classes of br.net.woodstock.rockframework.persistence.orm.CacheMode

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.