Class AbstractSecurityBuilder<O>
java.lang.Object
org.springframework.security.config.annotation.AbstractSecurityBuilder<O>
- Type Parameters:
- O- the type of Object that is being built
- All Implemented Interfaces:
- SecurityBuilder<O>
- Direct Known Subclasses:
- AbstractConfiguredSecurityBuilder
A base 
SecurityBuilder that ensures the object being built is only built one
 time.- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
AbstractSecurityBuilderpublic AbstractSecurityBuilder()
 
- 
- 
Method Details- 
buildDescription copied from interface:SecurityBuilderBuilds the object and returns it or null.- Specified by:
- buildin interface- SecurityBuilder<O>
- Returns:
- the Object to be built or null if the implementation allows it.
- Throws:
- Exception- if an error occurred when building the Object
 
- 
getObjectGets the object that was built. If it has not been built yet an Exception is thrown.- Returns:
- the Object that was built
 
- 
doBuildSubclasses should implement this to perform the build.
 
-