Package io.ebeanservice.docstore.api
Interface DocStoreFactory
-
- All Known Implementing Classes:
NoneDocStoreFactory
public interface DocStoreFactory
Creates the integration components for DocStore integration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocStoreIntegrationcreate(SpiServer server)Create and return the DocStore integration components.<T> DocStoreBeanAdapter<T>createAdapter(io.ebeaninternal.server.deploy.BeanDescriptor<T> desc, io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor<T> deploy)Create the doc store specific adapter for the given bean type.
-
-
-
Method Detail
-
create
DocStoreIntegration create(SpiServer server)
Create and return the DocStore integration components.
-
createAdapter
<T> DocStoreBeanAdapter<T> createAdapter(io.ebeaninternal.server.deploy.BeanDescriptor<T> desc, io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor<T> deploy)
Create the doc store specific adapter for the given bean type.
-
-