Package org.hibernate.ogm.dialect.mongodb.query.parsing.predicate

Examples of org.hibernate.ogm.dialect.mongodb.query.parsing.predicate.MongoDBRootPredicate


    this.propertyHelper = propertyHelper;
  }

  @Override
  public RootPredicate<DBObject> getRootPredicate(Class<?> entityType) {
    return new MongoDBRootPredicate();
  }
View Full Code Here


    this.propertyHelper = propertyHelper;
  }

  @Override
  public RootPredicate<DBObject> getRootPredicate(String entityType) {
    return new MongoDBRootPredicate();
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.dialect.mongodb.query.parsing.predicate.MongoDBRootPredicate

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.