Skip to content

Commit

Permalink
Add Deprecated ObjectPostProcessor constructor
Browse files Browse the repository at this point in the history
Issue gh-16174
  • Loading branch information
ngocnhan-tran1996 authored and jzheaux committed Dec 4, 2024
1 parent 9c3b119 commit 8c0ea3e
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 8c0ea3e

Please sign in to comment.