Searched refs:shutdown (Results 1 - 25 of 41) sorted by relevance

12

/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/
H A DGlassFishRuntimeDecorator.java62 public void shutdown() throws GlassFishException { method in class:GlassFishRuntimeDecorator
63 decoratedGfr.shutdown();
H A DGlassFishMain.java203 gfr.shutdown();
H A DStaticGlassFishRuntime.java134 public synchronized void shutdown() throws GlassFishException { method in class:StaticGlassFishRuntime
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DServer.java77 * the first line is read and compared with the specified shutdown command.
78 * If the command matches, shutdown of the server is initiated.
118 * Return the port number we listen to for shutdown commands.
124 * Set the port number we listen to for shutdown commands.
132 * Return the shutdown command string we are waiting for.
138 * Set the shutdown command we are waiting for.
140 * @param shutdown The new shutdown command
142 public void setShutdown(String shutdown); argument
157 * Wait until a proper shutdown comman
[all...]
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/
H A DOSGiGlassFishRuntime.java55 * framework during bootstrap and hence can stop it upon shutdown.
71 public void shutdown() throws GlassFishException { method in class:OSGiGlassFishRuntime
73 return; // already shutdown
83 super.shutdown();
H A DEmbeddedOSGiGlassFishRuntime.java102 public synchronized void shutdown() throws GlassFishException { method in class:EmbeddedOSGiGlassFishRuntime
114 System.out.println("Completed shutdown of GlassFish runtime");
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardServer.java249 * The port number on which we wait for shutdown commands.
256 * the shutdown command string is longer than 1024 characters.
268 * The shutdown command string we are looking for.
270 private String shutdown = "SHUTDOWN"; field in class:StandardServer
388 * Return the port number we listen to for shutdown commands.
398 * Set the port number we listen to for shutdown commands.
410 * Return the shutdown command string we are waiting for.
414 return (this.shutdown);
420 * Set the shutdown command we are waiting for.
422 * @param shutdown Th
424 setShutdown(String shutdown) argument
[all...]
/glassfish-3.1.2/common/mbeanserver/src/main/java/org/glassfish/admin/mbeanserver/
H A DJMXStartupService.java123 shutdown();
148 private synchronized void shutdown() { method in class:JMXStartupService
151 if (mBootAMX != null) mBootAMX.shutdown();
154 if (mConnectorsStarterThread != null) mConnectorsStarterThread.shutdown();
158 mLogger.log(java.util.logging.Level.INFO, "jmx.startupService.shutdown");
227 void shutdown() { method in class:JMXStartupService.JMXConnectorsStarterThread
H A DBootAMX.java185 public void shutdown() method in class:BootAMX
193 Util.getLogger().log( java.util.logging.Level.WARNING, "BootAMX.shutdown", e);
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DGlassFishRuntime.java119 public abstract void shutdown() throws GlassFishException; method in class:GlassFishRuntime
163 throw new GlassFishException("Already shutdown", null);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/
H A DCatalina.java381 * Create and configure the Digester we will be using for shutdown.
429 String shutdown = server.getShutdown();
430 for (int i = 0; i < shutdown.length(); i++)
431 stream.write(shutdown.charAt(i));
593 // Register shutdown hook
597 // fine without the shutdown hook.
619 // fine without the shutdown hook.
635 * Await and shutdown.
661 * Shutdown hook which will perform a clean shutdown of Catalina if needed.
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DAppServerStartup.java149 // spwan a non-daemon thread that waits indefinitely for shutdown request.
163 wait(); // Wait indefinitely until shutdown is requested
267 shutdown();
305 // if a severe error happened that should trigger shutdown.
307 shutdown();
321 shutdown();
379 private void shutdown() { method in class:AppServerStartup
397 // During shutdown because of shutdown hooks, we can be stopped multiple times.
437 // first send the shutdown even
[all...]
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/api/
H A DJavaEETransactionManager.java220 * Perform shutdown cleanup.
222 public void shutdown(); method in interface:JavaEETransactionManager
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/startup/
H A DTransactionLifecycleService.java123 tm.shutdown();
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/
H A DVerifierMain.java67 addShutdownHook(); // Since in gui mode, we don't get a chance to clean up, we need to install a shutdown hook
110 gfr.shutdown();
/glassfish-3.1.2/ha/ha-file-store/src/main/java/org/glassfish/ha/store/adapter/file/
H A DFileBackingStore.java64 private boolean shutdown; field in class:FileBackingStore
214 for (int i = 0; (i < size) && (!shutdown); i++) {
241 public void shutdown() { method in class:FileBackingStore
242 shutdown = true;
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DTransactionFactoryImpl.java555 TimeoutManager.shutdown(false);
556 RecoveryManager.shutdown(false);
557 DelegatedRecoveryManager.shutdown(false);
H A DDefaultTransactionService.java332 public static void shutdown( boolean immediate ) { method in class:DefaultTransactionService
352 currentInstance.shutdown(immediate);
H A DCurrentImpl.java1052 synchronized void shutdown( boolean immediate ) { method in class:CurrentImpl
1054 // Inform the basic transaction services to shutdown.
1056 CurrentTransaction.shutdown(immediate);
H A DDelegatedTimeoutManager.java490 * is being shut down. For immediate shutdown, the timeout thread is
502 void shutdown(boolean immediate) { method in class:DelegatedTimeoutManager
507 // shutdown immediately regardless.
H A DTimeoutManager.java519 * is being shut down. For immediate shutdown, the timeout thread is
531 static void shutdown(boolean immediate) { method in class:TimeoutManager
536 // shutdown immediately regardless.
/glassfish-3.1.2/extras/embedded/common/osgi-main/src/main/java/org/glassfish/uberjar/osgimain/
H A DMain.java127 executor.shutdown();
/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/
H A DWeldDeployer.java224 String shutdown = appInfo.getTransientAppMetaData(WELD_SHUTDOWN, String.class);
225 if (Boolean.valueOf(shutdown) == Boolean.TRUE) {
232 bootstrap.shutdown();
234 _logger.log(Level.WARNING, "JCDI shutdown error", e);
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/
H A DAMXStartupService.java139 shutdown();
145 private void shutdown() { method in class:AMXStartupService
152 ImplUtil.getLogger().log(java.util.logging.Level.WARNING, "AMXStartupService.shutdown: MBeans have not been unregistered: " + remainingAMX);
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DServer.java153 * root will be deleted once the server is shutdown.
167 * root will be deleted once the server is shutdown.
556 * ports will be closed and shutdown services will be ran.
569 glassfishRuntime.shutdown();
570 logger.finer("GlassFishruntime has been shutdown");

Completed in 1063 milliseconds

12