001package io.ebeanservice.docstore.api;
002
003import io.ebean.DocumentStore;
004
005/**
006 * All the required features for DocStore integration.
007 */
008public interface DocStoreIntegration {
009
010  /**
011   * Return the DocStoreUpdateProcessor to use.
012   */
013  DocStoreUpdateProcessor updateProcessor();
014
015  /**
016   * Return the DocStore.
017   */
018  DocumentStore documentStore();
019
020}