Tabnine Logo
JDBCRealm.getPassword
Code IndexAdd Tabnine to your IDE (free)

How to use
getPassword
method
in
org.apache.catalina.realm.JDBCRealm

Best Java code snippets using org.apache.catalina.realm.JDBCRealm.getPassword (Showing top 18 results out of 315)

origin: org.apache.tomcat/tomcat-catalina

/**
 * Get the principal associated with the specified user.
 * @param username The user name
 * @return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username));
}
origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return (new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username)));
}
origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return (new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username)));
}
origin: codefollower/Tomcat-Research

/**
 * Return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return (new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username)));
}
origin: org.apache.geronimo.ext.tomcat/catalina

/**
 * Return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return (new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username)));
}
origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return (new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username)));
}
origin: tomcat/catalina-optional

/**
 * Return the Principal associated with the given user name.
 */
protected Principal getPrincipal(String username) {
  return (new GenericPrincipal(this,
                 username,
                 getPassword(username),
                 getRoles(username)));
}
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

/**
 * Get the principal associated with the specified user.
 * @param username The user name
 * @return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username));
}
origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Return the Principal associated with the given user name.
 */
@Override
protected synchronized Principal getPrincipal(String username) {
  return (new GenericPrincipal(username,
                 getPassword(username),
                 getRoles(username)));
}
origin: tomcat/catalina-optional

String dbCredentials = getPassword(username);
origin: org.apache.geronimo.ext.tomcat/catalina

String dbCredentials = getPassword(username);
origin: org.apache.catalina/com.springsource.org.apache.catalina

String dbCredentials = getPassword(username);
origin: com.ovea.tajin.servers/tajin-server-jetty9

String dbCredentials = getPassword(username);
origin: com.ovea.tajin.server/tajin-server-jetty9

String dbCredentials = getPassword(username);
origin: com.ovea.tajin.server/tajin-server-tomcat7

String dbCredentials = getPassword(username);
origin: codefollower/Tomcat-Research

String dbCredentials = getPassword(username);
origin: org.apache.tomcat/tomcat-catalina

String dbCredentials = getPassword(username);
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

String dbCredentials = getPassword(username);
org.apache.catalina.realmJDBCRealmgetPassword

Javadoc

Return the password associated with the given principal's user name.

Popular methods of JDBCRealm

  • <init>
  • authenticate
    Attempt to authenticate the user with the provided credentials.
  • close
    Close the specified database connection.
  • credentials
    Return a PreparedStatement configured to perform the SELECT required to retrieve user credentials fo
  • getRoles
    Return the roles associated with the given user name.
  • open
    Open (if necessary) and return a database connection for use by this Realm.
  • roles
    Return a PreparedStatement configured to perform the SELECT required to retrieve user roles for the
  • setConnectionName
    Set the username to use to connect to the database.
  • setConnectionPassword
    Set the password to use to connect to the database.
  • setConnectionURL
    Set the URL to use to connect to the database.
  • setDriverName
    Set the JDBC driver that will be used.
  • getObjectName
  • setDriverName,
  • getObjectName,
  • digest,
  • hasMessageDigest,
  • isRoleStoreDefined,
  • getCredentialHandler,
  • compareCredentials

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • compareTo (BigDecimal)
  • runOnUiThread (Activity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for WebStorm
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