Browse Source

Add Deprecated ObjectPostProcessor constructor

Issue gh-16174
pull/16216/head
Tran Ngoc Nhan 1 year ago committed by Josh Cummings
parent
commit
8c0ea3e630
  1. 13
      config/src/main/java/org/springframework/security/config/annotation/authentication/builders/AuthenticationManagerBuilder.java

13
config/src/main/java/org/springframework/security/config/annotation/authentication/builders/AuthenticationManagerBuilder.java

@ -65,6 +65,19 @@ public class AuthenticationManagerBuilder @@ -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.

Loading…
Cancel
Save