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

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

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

origin: tomcat/catalina-optional

/**
 * Gracefully shut down active use of the public methods of this Component.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
public void stop() throws LifecycleException {
  // Perform normal superclass finalization
  super.stop();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: org.apache.tomcat/tomcat-catalina

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: codefollower/Tomcat-Research

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: org.apache.geronimo.ext.tomcat/catalina

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Gracefully terminate the active use of the public methods of this
 * component and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
 @Override
protected void stopInternal() throws LifecycleException {
  super.stopInternal();
  // Close any open DB connection
  close(this.dbConnection);
}
origin: tomcat/catalina-optional

close(dbConnection);
origin: org.apache.tomcat/tomcat-catalina

close(dbConnection);
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

close(dbConnection);
origin: org.apache.tomcat/tomcat-catalina

close(dbConnection);
origin: org.apache.catalina/com.springsource.org.apache.catalina

close(dbConnection);
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

close(dbConnection);
origin: com.ovea.tajin.servers/tajin-server-jetty9

close(dbConnection);
origin: org.apache.catalina/com.springsource.org.apache.catalina

close(dbConnection);
origin: codefollower/Tomcat-Research

close(dbConnection);
origin: com.ovea.tajin.server/tajin-server-jetty9

close(dbConnection);
origin: codefollower/Tomcat-Research

close(dbConnection);
org.apache.catalina.realmJDBCRealmclose

Javadoc

Close the specified database connection.

Popular methods of JDBCRealm

  • <init>
  • authenticate
    Attempt to authenticate the user with the provided credentials.
  • credentials
    Return a PreparedStatement configured to perform the SELECT required to retrieve user credentials fo
  • getPassword
    Get the password for the specified user.
  • 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

  • Finding current android device location
  • setRequestProperty (URLConnection)
  • requestLocationUpdates (LocationManager)
  • getApplicationContext (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top Sublime Text plugins
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