Ver código fonte

Changed docs to reflect that init should apply configurers

Clement Ng 6 anos atrás
pai
commit
28855e9cd6

+ 1 - 1
config/src/main/java/org/springframework/security/config/annotation/SecurityConfigurer.java

@@ -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