congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
OAuth2AuthorizationCodeReactiveAuthenticationManager.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.springframework.security.oauth2.client.authentication.OAuth2AuthorizationCodeReactiveAuthenticationManager
constructor

Best Java code snippets using org.springframework.security.oauth2.client.authentication.OAuth2AuthorizationCodeReactiveAuthenticationManager.<init> (Showing top 6 results out of 315)

origin: spring-projects/spring-security

public OAuth2LoginReactiveAuthenticationManager(
    ReactiveOAuth2AccessTokenResponseClient<OAuth2AuthorizationCodeGrantRequest> accessTokenResponseClient,
    ReactiveOAuth2UserService<OAuth2UserRequest, OAuth2User> userService) {
  Assert.notNull(accessTokenResponseClient, "accessTokenResponseClient cannot be null");
  Assert.notNull(userService, "userService cannot be null");
  this.authorizationCodeManager = new OAuth2AuthorizationCodeReactiveAuthenticationManager(accessTokenResponseClient);
  this.userService = userService;
}
origin: spring-projects/spring-security

/**
 * Gets the {@link ReactiveAuthenticationManager} to use. First tries an explicitly configured manager, and
 * defaults to {@link OAuth2AuthorizationCodeReactiveAuthenticationManager}
 *
 * @return the {@link ReactiveAuthenticationManager} to use
 */
private ReactiveAuthenticationManager getAuthenticationManager() {
  if (this.authenticationManager == null) {
    this.authenticationManager = new OAuth2AuthorizationCodeReactiveAuthenticationManager(new WebClientReactiveAuthorizationCodeTokenResponseClient());
  }
  return this.authenticationManager;
}
origin: spring-projects/spring-security

@Before
public void setup() {
  this.manager = new OAuth2AuthorizationCodeReactiveAuthenticationManager(this.accessTokenResponseClient);
}
origin: org.springframework.security/spring-security-config

/**
 * Gets the {@link ReactiveAuthenticationManager} to use. First tries an explicitly configured manager, and
 * defaults to {@link OAuth2AuthorizationCodeReactiveAuthenticationManager}
 *
 * @return the {@link ReactiveAuthenticationManager} to use
 */
private ReactiveAuthenticationManager getAuthenticationManager() {
  if (this.authenticationManager == null) {
    this.authenticationManager = new OAuth2AuthorizationCodeReactiveAuthenticationManager(new WebClientReactiveAuthorizationCodeTokenResponseClient());
  }
  return this.authenticationManager;
}
origin: apache/servicemix-bundles

public OAuth2LoginReactiveAuthenticationManager(
    ReactiveOAuth2AccessTokenResponseClient<OAuth2AuthorizationCodeGrantRequest> accessTokenResponseClient,
    ReactiveOAuth2UserService<OAuth2UserRequest, OAuth2User> userService) {
  Assert.notNull(accessTokenResponseClient, "accessTokenResponseClient cannot be null");
  Assert.notNull(userService, "userService cannot be null");
  this.authorizationCodeManager = new OAuth2AuthorizationCodeReactiveAuthenticationManager(accessTokenResponseClient);
  this.userService = userService;
}
origin: apache/servicemix-bundles

/**
 * Gets the {@link ReactiveAuthenticationManager} to use. First tries an explicitly configured manager, and
 * defaults to {@link OAuth2AuthorizationCodeReactiveAuthenticationManager}
 *
 * @return the {@link ReactiveAuthenticationManager} to use
 */
private ReactiveAuthenticationManager getAuthenticationManager() {
  if (this.authenticationManager == null) {
    this.authenticationManager = new OAuth2AuthorizationCodeReactiveAuthenticationManager(new WebClientReactiveAuthorizationCodeTokenResponseClient());
  }
  return this.authenticationManager;
}
org.springframework.security.oauth2.client.authenticationOAuth2AuthorizationCodeReactiveAuthenticationManager<init>

Popular methods of OAuth2AuthorizationCodeReactiveAuthenticationManager

  • onSuccess
  • authenticate

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getResourceAsStream (ClassLoader)
  • getSystemService (Context)
  • addToBackStack (FragmentTransaction)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • JButton (javax.swing)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now