Codota Logo
UsernamePasswordAuthenticationFilter.getPasswordParameter
Code IndexAdd Codota to your IDE (free)

How to use
getPasswordParameter
method
in
org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter

Best Java code snippets using org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter.getPasswordParameter (Showing top 6 results out of 315)

  • Common ways to obtain UsernamePasswordAuthenticationFilter
private void myMethod () {
UsernamePasswordAuthenticationFilter u =
  • Codota Iconnew UsernamePasswordAuthenticationFilter()
  • Smart code suggestions by Codota
}
origin: spring-projects/spring-security

/**
 * Gets the HTTP parameter that is used to submit the password.
 *
 * @return the HTTP parameter that is used to submit the password
 */
private String getPasswordParameter() {
  return getAuthenticationFilter().getPasswordParameter();
}
origin: org.springframework.security/spring-security-config

/**
 * Gets the HTTP parameter that is used to submit the password.
 *
 * @return the HTTP parameter that is used to submit the password
 */
private String getPasswordParameter() {
  return getAuthenticationFilter().getPasswordParameter();
}
origin: apache/servicemix-bundles

/**
 * Gets the HTTP parameter that is used to submit the password.
 *
 * @return the HTTP parameter that is used to submit the password
 */
private String getPasswordParameter() {
  return getAuthenticationFilter().getPasswordParameter();
}
origin: org.springframework.security/spring-security-javaconfig

/**
 * Gets the HTTP parameter that is used to submit the password.
 *
 * @return the HTTP parameter that is used to submit the password
 */
private String getPasswordParameter() {
  return getAuthenticationFilter().getPasswordParameter();
}
origin: com.jtbdevelopment.core-games/games-web

private String getPasswordParameter() {
 return getAuthenticationFilter().getPasswordParameter();
}
origin: apache/servicemix-bundles

private void init(UsernamePasswordAuthenticationFilter authFilter,
    AbstractAuthenticationProcessingFilter openIDFilter) {
  this.loginPageUrl = DEFAULT_LOGIN_PAGE_URL;
  this.logoutSuccessUrl = DEFAULT_LOGIN_PAGE_URL + "?logout";
  this.failureUrl = DEFAULT_LOGIN_PAGE_URL + "?" + ERROR_PARAMETER_NAME;
  if (authFilter != null) {
    formLoginEnabled = true;
    usernameParameter = authFilter.getUsernameParameter();
    passwordParameter = authFilter.getPasswordParameter();
    if (authFilter.getRememberMeServices() instanceof AbstractRememberMeServices) {
      rememberMeParameter = ((AbstractRememberMeServices) authFilter
          .getRememberMeServices()).getParameter();
    }
  }
  if (openIDFilter != null) {
    openIdEnabled = true;
    openIDusernameParameter = "openid_identifier";
    if (openIDFilter.getRememberMeServices() instanceof AbstractRememberMeServices) {
      openIDrememberMeParameter = ((AbstractRememberMeServices) openIDFilter
          .getRememberMeServices()).getParameter();
    }
  }
}
org.springframework.security.web.authenticationUsernamePasswordAuthenticationFiltergetPasswordParameter

Popular methods of UsernamePasswordAuthenticationFilter

  • setPasswordParameter
  • setUsernameParameter
  • <init>
  • getUsernameParameter
  • attemptAuthentication
  • setAuthenticationDetailsSource
  • setAuthenticationFailureHandler
  • setAuthenticationManager
  • setAuthenticationSuccessHandler
  • setAllowSessionCreation
  • setRememberMeServices
  • setRequiresAuthenticationRequestMatcher
  • setRememberMeServices,
  • setRequiresAuthenticationRequestMatcher,
  • afterPropertiesSet,
  • doFilter,
  • getAuthenticationManager,
  • getFailureHandler,
  • getRememberMeServices,
  • getSuccessHandler,
  • obtainPassword

Popular in Java

  • Making http requests using okhttp
  • getExternalFilesDir (Context)
  • addToBackStack (FragmentTransaction)
  • findViewById (Activity)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now