Package org.hibernate.ogm.datastore.couchdb.utils.backend.json.designdocument

Examples of org.hibernate.ogm.datastore.couchdb.utils.backend.json.designdocument.AssociationsDesignDocument


    return ( (CouchDBDatastoreProvider) provider ).getDataStore();
  }

  private DatabaseTestClient getDatabaseTestClient(CouchDBDatastore dataStore) {
    if ( !dataStore.exists( AssociationsDesignDocument.DOCUMENT_ID, true ) ) {
      dataStore.saveDocument( new AssociationsDesignDocument() );
    }
    if ( !dataStore.exists( EntitiesDesignDocument.DOCUMENT_ID, true ) ) {
      dataStore.saveDocument( new EntitiesDesignDocument() );
    }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.datastore.couchdb.utils.backend.json.designdocument.AssociationsDesignDocument

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.