package io.ebeaninternal.server.deploy;
import io.ebean.config.DatabaseConfig;
import io.ebean.config.EncryptKey;
import io.ebean.config.NamingConvention;
import io.ebean.core.type.ScalarType;
import io.ebeaninternal.server.cache.SpiCacheManager;
import io.ebeaninternal.server.deploy.id.IdBinder;
import io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor;
import io.ebeanservice.docstore.api.DocStoreBeanAdapter;
Provides a method to find a BeanDescriptor.
Used during deployment of to resolve relationships between beans.
/**
* Provides a method to find a BeanDescriptor.
* <p>
* Used during deployment of to resolve relationships between beans.
* </p>
*/
public interface BeanDescriptorMap {
Return the name of the server/database.
/**
* Return the name of the server/database.
*/
String getServerName();
Return the DatabaseConfig.
/**
* Return the DatabaseConfig.
*/
DatabaseConfig getConfig();
Return the Cache Manager.
/**
* Return the Cache Manager.
*/
SpiCacheManager getCacheManager();
Return the naming convention.
/**
* Return the naming convention.
*/
NamingConvention getNamingConvention();
Return true if multiple values can be bound as Array or Table Value and hence share the same query plan.
/**
* Return true if multiple values can be bound as Array or Table Value and hence share the same query plan.
*/
boolean isMultiValueSupported();
Return the BeanDescriptor for a given class.
/**
* Return the BeanDescriptor for a given class.
*/
<T> BeanDescriptor<T> getBeanDescriptor(Class<T> entityType);
Return the Encrypt key given the table and column name.
/**
* Return the Encrypt key given the table and column name.
*/
EncryptKey getEncryptKey(String tableName, String columnName);
Create a IdBinder for this bean property.
/**
* Create a IdBinder for this bean property.
*/
IdBinder createIdBinder(BeanProperty id);
Create a doc store specific adapter for this bean type.
/**
* Create a doc store specific adapter for this bean type.
*/
<T> DocStoreBeanAdapter<T> createDocStoreBeanAdapter(BeanDescriptor<T> descriptor, DeployBeanDescriptor<T> deploy);
Return the scalarType for the given JDBC type.
/**
* Return the scalarType for the given JDBC type.
*/
ScalarType<?> getScalarType(int jdbcType);
Return the scalarType for the given logical type.
/**
* Return the scalarType for the given logical type.
*/
ScalarType<?> getScalarType(String cast);
Return true if Jackson core is present on the classpath.
/**
* Return true if Jackson core is present on the classpath.
*/
boolean isJacksonCorePresent();
}