Package org.apache.openjpa.lib.conf
Interface Configurable
- 
- All Known Implementing Classes:
 AbstractInstrumentationProvider,IdentifierUtilImpl,JULLogFactory,LogFactoryImpl
public interface ConfigurableThis 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendConfiguration()Invoked upon completion of bean property configuration for this object.voidsetConfiguration(Configuration conf)Invoked prior to setting bean properties.voidstartConfiguration()Invoked before bean property configuration is begun on this object. 
 - 
 
- 
- 
Method Detail
- 
setConfiguration
void setConfiguration(Configuration conf)
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. 
 - 
 
 -