Class AbstractJdbcStoreConfiguration
- java.lang.Object
-
- org.infinispan.configuration.cache.AbstractStoreConfiguration
-
- org.infinispan.persistence.jdbc.configuration.AbstractJdbcStoreConfiguration
-
- All Implemented Interfaces:
BaseConfigurationInfo
,ConfigurationInfo
,StoreConfiguration
- Direct Known Subclasses:
JdbcStringBasedStoreConfiguration
public abstract class AbstractJdbcStoreConfiguration extends AbstractStoreConfiguration implements ConfigurationInfo
-
-
Field Summary
-
Fields inherited from class org.infinispan.configuration.cache.AbstractStoreConfiguration
attributes, FETCH_PERSISTENT_STATE, IGNORE_MODIFICATIONS, MAX_BATCH_SIZE, PRELOAD, PROPERTIES, PURGE_ON_STARTUP, SEGMENTED, SHARED, TRANSACTIONAL
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractJdbcStoreConfiguration(AttributeSet attributes, AsyncStoreConfiguration async, ConnectionFactoryConfiguration connectionFactory)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeSet
attributeDefinitionSet()
ConnectionFactoryConfiguration
connectionFactory()
java.lang.Integer
dbMajorVersion()
java.lang.Integer
dbMinorVersion()
DatabaseType
dialect()
boolean
equals(java.lang.Object obj)
int
hashCode()
boolean
manageConnectionFactory()
java.util.List<ConfigurationInfo>
subElements()
java.lang.String
toString()
-
Methods inherited from class org.infinispan.configuration.cache.AbstractStoreConfiguration
async, attributes, fetchPersistentState, ignoreModifications, maxBatchSize, preload, properties, purgeOnStartup, segmented, shared, transactional
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.infinispan.commons.configuration.BaseConfigurationInfo
attributes, getElementDefinition
-
-
-
-
Constructor Detail
-
AbstractJdbcStoreConfiguration
protected AbstractJdbcStoreConfiguration(AttributeSet attributes, AsyncStoreConfiguration async, ConnectionFactoryConfiguration connectionFactory)
-
-
Method Detail
-
attributeDefinitionSet
public static AttributeSet attributeDefinitionSet()
-
subElements
public java.util.List<ConfigurationInfo> subElements()
- Specified by:
subElements
in interfaceConfigurationInfo
- Overrides:
subElements
in classAbstractStoreConfiguration
- Returns:
- the list of sub elements.
-
connectionFactory
public ConnectionFactoryConfiguration connectionFactory()
-
manageConnectionFactory
public boolean manageConnectionFactory()
-
dialect
public DatabaseType dialect()
-
dbMajorVersion
public java.lang.Integer dbMajorVersion()
-
dbMinorVersion
public java.lang.Integer dbMinorVersion()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classAbstractStoreConfiguration
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractStoreConfiguration
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classAbstractStoreConfiguration
-
-