congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
RealmBase.stop
Code IndexAdd Tabnine to your IDE (free)

How to use
stop
method
in
org.apache.catalina.realm.RealmBase

Best Java code snippets using org.apache.catalina.realm.RealmBase.stop (Showing top 7 results out of 315)

origin: org.glassfish.main.web/web-core

/**
 * 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();
}
origin: tomcat/catalina

/**
 * 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 synchronized void stop() throws LifecycleException {
  // Perform normal superclass finalization
  super.stop();
  // Release reference to our user database
  database = null;
}
origin: tomcat/catalina-optional

/**
 * Gracefully shut down active use of the public methods of this <code>Component</code>.
 *
 * @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();
}
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 synchronized void stop() throws LifecycleException {
  // Perform normal superclass finalization
  super.stop();
  // No shutdown activities required
}
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();
}
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: 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 directory server connection
  close(this.context);
}
org.apache.catalina.realmRealmBasestop

Javadoc

Gracefully terminate the active use of the public methods of this component. This method should be the last one called on a given instance of this component. It should also send a LifecycleEvent of type STOP_EVENT to any registered listeners.

Popular methods of RealmBase

  • hasRole
    Return true if the specified Principal has the specified security role, within the context of this R
  • getDigest
    Return the digest associated with given principal's user name.
  • getDigestEncoding
    Returns the digest encoding charset.
  • getPassword
    Return the password associated with the given principal's user name.
  • getPrincipal
    Return the Principal associated with the given certificate.
  • hasMessageDigest
  • resultsToArray
    Convert an ArrayList to a SecurityConstraint [].
  • getRealmPath
  • setContainer
    Set the Container with which this Realm has been associated.
  • Digest
    Digest password using the algorithm specified and convert the result to a corresponding hex string.
  • digest
    Digest the password using the specified algorithm and convert the result to a corresponding hexadeci
  • getRealmSuffix
  • digest,
  • getRealmSuffix,
  • startInternal,
  • stopInternal,
  • getObjectName,
  • setRealmPath,
  • setState,
  • getName,
  • destroy,
  • getDigestCharset

Popular in Java

  • Running tasks concurrently on multiple threads
  • onRequestPermissionsResult (Fragment)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top PhpStorm 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