Package org.apache.openjpa.lib.conf
Interface Configurable
- All Known Subinterfaces:
 Auditor,CacheDistributionPolicy,FinderCache<K,,V, R> PreparedQueryCache
- All Known Implementing Classes:
 AbstractDataCache,AbstractDB2Dictionary,AbstractInstrumentationProvider,AbstractJDBCSavepointManager,AbstractQueryCache,AbstractRemoteCommitProvider,AbstractSQLServerDictionary,AbstractUpdateManager,AccessDictionary,AuditLogger,AutoDriverDataSource,AutomaticManagedRuntime,BatchingConstraintUpdateManager,BatchingOperationOrderUpdateManager,CacheDictionary,CacheMarshallerImpl,ClassTableJDBCSeq,ConcurrentDataCache,ConcurrentQueryCache,ConstraintUpdateManager,DB2Dictionary,DBCPDriverDataSource,DBDictionary,DBIdentifierUtilImpl,DefaultCacheDistributionPolicy,DerbyDictionary,DynamicSchemaFactory,DynamicTCPRemoteCommitProvider,EmpressDictionary,FileSchemaFactory,FinderCacheImpl,FirebirdDictionary,FoxProDictionary,H2Dictionary,HerdDBDictionary,HSQLDictionary,IdentifierUtilImpl,InformixDictionary,IngresDictionary,InterbaseDictionary,InverseManager,InvocationManagedRuntime,JDataStoreDictionary,JDBC3SavepointManager,JMSRemoteCommitProvider,JMXProvider,JULLogFactory,KubernetesTCPRemoteCommitProvider,LazySchemaFactory,LogFactoryImpl,MappingDefaultsImpl,MappingRepository,MariaDBDictionary,MaxDBDictionary,MetaDataRepository,MySQLDictionary,NativeJDBCSeq,OpenJPAVersionAndConfigurationTypeValidationPolicy,OperationOrderUpdateManager,OracleDictionary,PartitionedDataCache,PersistenceMappingDefaults,PersistenceMappingFactory,PersistenceMetaDataFactory,PointbaseDictionary,PostgresDictionary,PreparedQueryCacheImpl,SingleJVMRemoteCommitProvider,SolidDBDictionary,SQLFactoryImpl,SQLServerDictionary,SybaseDictionary,TableJDBCSeq,TableSchemaFactory,TCPRemoteCommitProvider,TypeBasedCacheDistributionPolicy,ValidatingLifecycleEventManager,ValueTableJDBCSeq,WASManagedRuntime
public interface Configurable
This interface provides a mechanism for notifying interested
 objects when configuration events occur. It provides an object
 with the opportunity to set itself up for configuration and to
 perform any necessary post-configuration.
- Author:
 - Patrick Linskey
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidInvoked upon completion of bean property configuration for this object.voidInvoked prior to setting bean properties.voidInvoked before bean property configuration is begun on this object. 
- 
Method Details
- 
setConfiguration
Invoked prior to setting bean properties. - 
startConfiguration
void startConfiguration()Invoked before bean property configuration is begun on this object. - 
endConfiguration
void endConfiguration()Invoked upon completion of bean property configuration for this object. 
 -