|
@@ -65,6 +65,19 @@ public class AuthenticationManagerBuilder
|
|
|
|
|
|
private AuthenticationEventPublisher eventPublisher;
|
|
|
|
|
|
+ /**
|
|
|
+ * Creates a new instance
|
|
|
+ * @param objectPostProcessor the
|
|
|
+ * {@link org.springframework.security.config.annotation.ObjectPostProcessor} instance
|
|
|
+ * to use.
|
|
|
+ * @deprecated
|
|
|
+ */
|
|
|
+ @Deprecated(since = "6.4", forRemoval = true)
|
|
|
+ public AuthenticationManagerBuilder(
|
|
|
+ org.springframework.security.config.annotation.ObjectPostProcessor<Object> objectPostProcessor) {
|
|
|
+ super(objectPostProcessor, true);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Creates a new instance
|
|
|
* @param objectPostProcessor the {@link ObjectPostProcessor} instance to use.
|