Changed docs to reflect that init should apply configurers

This commit is contained in:
Clement Ng 2019-07-04 23:38:28 -07:00 committed by Rob Winch
parent 3d2542ce54
commit 28855e9cd6
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public interface SecurityConfigurer<O, B extends SecurityBuilder<O>> {
* Initialize the {@link SecurityBuilder}. Here only shared state should be created
* and modified, but not properties on the {@link SecurityBuilder} used for building
* the object. This ensures that the {@link #configure(SecurityBuilder)} method uses
* the correct shared objects when building.
* the correct shared objects when building. Configurers should be applied here.
*
* @param builder
* @throws Exception