Package org.hivedb.hibernate.simplified

Examples of org.hivedb.hibernate.simplified.HiveInterceptorDecorator


  public Session openSession(String resource, String indexName, Object secondaryIndexKey, Interceptor interceptor) {
    return openSession(hive.directory().getNodeIdsOfSecondaryIndexKey(resource, indexName, secondaryIndexKey), wrapWithHiveInterceptor(interceptor));
  }

  public Interceptor getDefaultInterceptor() {
    return new HiveInterceptorDecorator(config, hive);
  }
View Full Code Here


  public Interceptor getDefaultInterceptor() {
    return new HiveInterceptorDecorator(config, hive);
  }

  public Interceptor wrapWithHiveInterceptor(Interceptor interceptor) {
    return new HiveInterceptorDecorator(interceptor, config, hive);
  }
View Full Code Here

TOP

Related Classes of org.hivedb.hibernate.simplified.HiveInterceptorDecorator

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.