/*
|
* CDDL HEADER START
|
*
|
* The contents of this file are subject to the terms of the
|
* Common Development and Distribution License, Version 1.0 only
|
* (the "License"). You may not use this file except in compliance
|
* with the License.
|
*
|
* You can obtain a copy of the license at
|
* trunk/opends/resource/legal-notices/OpenDS.LICENSE
|
* or https://OpenDS.dev.java.net/OpenDS.LICENSE.
|
* See the License for the specific language governing permissions
|
* and limitations under the License.
|
*
|
* When distributing Covered Code, include this CDDL HEADER in each
|
* file and include the License file at
|
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
|
* add the following below this CDDL HEADER, with the fields enclosed
|
* by brackets "[]" replaced with your own identifying * information:
|
* Portions Copyright [yyyy] [name of copyright owner]
|
*
|
* CDDL HEADER END
|
*
|
*
|
* Portions Copyright 2006 Sun Microsystems, Inc.
|
*/
|
package org.opends.server.plugins;
|
|
|
|
import java.util.ArrayList;
|
import java.util.List;
|
import java.util.Set;
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
import org.opends.server.api.ClientConnection;
|
import org.opends.server.api.plugin.DirectoryServerPlugin;
|
import org.opends.server.api.plugin.PluginType;
|
import org.opends.server.api.plugin.IntermediateResponsePluginResult;
|
import org.opends.server.api.plugin.LDIFPluginResult;
|
import org.opends.server.api.plugin.PostConnectPluginResult;
|
import org.opends.server.api.plugin.PostDisconnectPluginResult;
|
import org.opends.server.api.plugin.PostOperationPluginResult;
|
import org.opends.server.api.plugin.PostResponsePluginResult;
|
import org.opends.server.api.plugin.PreOperationPluginResult;
|
import org.opends.server.api.plugin.PreParsePluginResult;
|
import org.opends.server.api.plugin.SearchEntryPluginResult;
|
import org.opends.server.api.plugin.SearchReferencePluginResult;
|
import org.opends.server.api.plugin.StartupPluginResult;
|
import org.opends.server.config.ConfigEntry;
|
import org.opends.server.core.AbandonOperation;
|
import org.opends.server.core.AddOperation;
|
import org.opends.server.core.BindOperation;
|
import org.opends.server.core.CompareOperation;
|
import org.opends.server.core.DeleteOperation;
|
import org.opends.server.core.DirectoryServer;
|
import org.opends.server.core.ExtendedOperation;
|
import org.opends.server.core.ModifyOperation;
|
import org.opends.server.core.ModifyDNOperation;
|
import org.opends.server.core.Operation;
|
import org.opends.server.core.SearchOperation;
|
import org.opends.server.core.UnbindOperation;
|
import org.opends.server.types.DisconnectReason;
|
import org.opends.server.types.Entry;
|
import org.opends.server.types.IntermediateResponse;
|
import org.opends.server.types.LDIFExportConfig;
|
import org.opends.server.types.LDIFImportConfig;
|
import org.opends.server.types.SearchResultEntry;
|
import org.opends.server.types.SearchResultReference;
|
|
|
|
/**
|
* This class defines a very simple plugin that simply increments a counter each
|
* time a plugin is called. There will be separate counters for each basic
|
* type of plugin, including:
|
* <BR>
|
* <UL>
|
* <LI>pre-parse</LI>
|
* <LI>pre-operation</LI>
|
* <LI>post-operation</LI>
|
* <LI>post-response</LI>
|
* <LI>search result entry</LI>
|
* <LI>search result reference</LI>
|
* <LI>intermediate response</LI>
|
* <LI>post-connect</LI>
|
* <LI>post-disconnect</LI>
|
* <LI>LDIF import</LI>
|
* <LI>LDIF export</LI>
|
* <LI>startup</LI>
|
* <LI>shutdown</LI>
|
* </UL>
|
*/
|
public class InvocationCounterPlugin
|
extends DirectoryServerPlugin
|
{
|
// Define the counters that will be used to keep track of everything.
|
private static AtomicInteger preParseCounter = new AtomicInteger(0);
|
private static AtomicInteger preOperationCounter = new AtomicInteger(0);
|
private static AtomicInteger postOperationCounter = new AtomicInteger(0);
|
private static AtomicInteger postResponseCounter = new AtomicInteger(0);
|
private static AtomicInteger searchEntryCounter = new AtomicInteger(0);
|
private static AtomicInteger searchReferenceCounter = new AtomicInteger(0);
|
private static AtomicInteger intermediateResponseCounter =
|
new AtomicInteger(0);
|
private static AtomicInteger postConnectCounter = new AtomicInteger(0);
|
private static AtomicInteger postDisconnectCounter = new AtomicInteger(0);
|
private static AtomicInteger ldifImportCounter = new AtomicInteger(0);
|
private static AtomicInteger ldifExportCounter = new AtomicInteger(0);
|
private static boolean startupCalled = false;
|
private static boolean shutdownCalled = false;
|
|
|
|
/**
|
* Creates a new instance of this Directory Server plugin. Every
|
* plugin must implement a default constructor (it is the only one
|
* that will be used to create plugins defined in the
|
* configuration), and every plugin constructor must call
|
* <CODE>super()</CODE> as its first element.
|
*/
|
public InvocationCounterPlugin()
|
{
|
super();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public void initializePlugin(DirectoryServer directoryServer,
|
Set<PluginType> pluginTypes,
|
ConfigEntry configEntry)
|
{
|
// No implementation required.
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(AbandonOperation abandonOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(AddOperation addOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(BindOperation bindOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(CompareOperation compareOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(DeleteOperation deleteOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(ExtendedOperation extendedOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(ModifyOperation modifyOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(ModifyDNOperation modifyDNOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(SearchOperation searchOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreParsePluginResult doPreParse(UnbindOperation unbindOperation)
|
{
|
preParseCounter.incrementAndGet();
|
return new PreParsePluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the pre-parse plugins have been called
|
* since the last reset.
|
*
|
* @return The number of times that the pre-parse plugins have been called
|
* since the last reset.
|
*/
|
public static int getPreParseCount()
|
{
|
return preParseCounter.get();
|
}
|
|
|
|
/**
|
* Resets the pre-parse plugin invocation count to zero.
|
*
|
* @return The pre-parse plugin invocation count before it was reset.
|
*/
|
public static int resetPreParseCount()
|
{
|
return preParseCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(AddOperation addOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(BindOperation bindOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(CompareOperation
|
compareOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(DeleteOperation
|
deleteOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(ExtendedOperation
|
extendedOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(ModifyOperation
|
modifyOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(ModifyDNOperation
|
modifyDNOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PreOperationPluginResult doPreOperation(SearchOperation
|
searchOperation)
|
{
|
preOperationCounter.incrementAndGet();
|
return new PreOperationPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the pre-operation plugins have been
|
* called since the last reset.
|
*
|
* @return The number of times that the pre-operation plugins have been
|
* called since the last reset.
|
*/
|
public static int getPreOperationCount()
|
{
|
return preOperationCounter.get();
|
}
|
|
|
|
/**
|
* Resets the pre-operation plugin invocation count to zero.
|
*
|
* @return The pre-operation plugin invocation count before it was reset.
|
*/
|
public static int resetPreOperationCount()
|
{
|
return preOperationCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(AbandonOperation
|
abandonOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(AddOperation addOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(BindOperation bindOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(CompareOperation
|
compareOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(DeleteOperation
|
deleteOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(ExtendedOperation
|
extendedOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(ModifyOperation
|
modifyOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(ModifyDNOperation
|
modifyDNOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(SearchOperation
|
searchOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostOperationPluginResult doPostOperation(UnbindOperation
|
unbindOperation)
|
{
|
postOperationCounter.incrementAndGet();
|
return new PostOperationPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the post-operation plugins have been
|
* called since the last reset.
|
*
|
* @return The number of times that the post-operation plugins have been
|
* called since the last reset.
|
*/
|
public static int getPostOperationCount()
|
{
|
return postOperationCounter.get();
|
}
|
|
|
|
/**
|
* Resets the post-operation plugin invocation count to zero.
|
*
|
* @return The post-operation plugin invocation count before it was reset.
|
*/
|
public static int resetPostOperationCount()
|
{
|
return postOperationCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(AddOperation addOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(BindOperation bindOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(CompareOperation
|
compareOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(DeleteOperation
|
deleteOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(ExtendedOperation
|
extendedOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(ModifyOperation
|
modifyOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(ModifyDNOperation
|
modifyDNOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostResponsePluginResult doPostResponse(SearchOperation
|
searchOperation)
|
{
|
postResponseCounter.incrementAndGet();
|
return new PostResponsePluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the post-response plugins have been
|
* called since the last reset.
|
*
|
* @return The number of times that the post-response plugins have been
|
* called since the last reset.
|
*/
|
public static int getPostResponseCount()
|
{
|
return postResponseCounter.get();
|
}
|
|
|
|
/**
|
* Resets the post-response plugin invocation count to zero.
|
*
|
* @return The post-response plugin invocation count before it was reset.
|
*/
|
public static int resetPostResponseCount()
|
{
|
return postResponseCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public SearchEntryPluginResult processSearchEntry(
|
SearchOperation searchOperation,
|
SearchResultEntry searchEntry)
|
{
|
searchEntryCounter.incrementAndGet();
|
return new SearchEntryPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the search result entry plugins have
|
* been called since the last reset.
|
*
|
* @return The number of times that the search result entry plugins have been
|
* called since the last reset.
|
*/
|
public static int getSearchEntryCount()
|
{
|
return searchEntryCounter.get();
|
}
|
|
|
|
/**
|
* Resets the search result entry plugin invocation count to zero.
|
*
|
* @return The search result entry plugin invocation count before it was
|
* reset.
|
*/
|
public static int resetSearchEntryCount()
|
{
|
return searchEntryCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public SearchReferencePluginResult processSearchReference(
|
SearchOperation searchOperation,
|
SearchResultReference searchReference)
|
{
|
searchReferenceCounter.incrementAndGet();
|
return new SearchReferencePluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the search result reference plugins have
|
* been called since the last reset.
|
*
|
* @return The number of times that the search result reference plugins have
|
* been called since the last reset.
|
*/
|
public static int getSearchReferenceCount()
|
{
|
return searchReferenceCounter.get();
|
}
|
|
|
|
/**
|
* Resets the search result reference plugin invocation count to zero.
|
*
|
* @return The search result reference plugin invocation count before it was
|
* reset.
|
*/
|
public static int resetSearchReferenceCount()
|
{
|
return searchReferenceCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public IntermediateResponsePluginResult processIntermediateResponse(
|
IntermediateResponse intermediateResponse)
|
{
|
intermediateResponseCounter.incrementAndGet();
|
return new IntermediateResponsePluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times the intermediate response plugins have been
|
* called since the last reset.
|
*
|
* @return The number of times the intermediate response plugins have been
|
* called since the last reset.
|
*/
|
public static int getIntermediateResponseCount()
|
{
|
return intermediateResponseCounter.get();
|
}
|
|
|
|
/**
|
* Resets the intermediate response plugin invocation count to zero.
|
*
|
* @return The intermediate response plugin invocation count before it was
|
* reset.
|
*/
|
public static int resetIntermediateResponseCount()
|
{
|
return intermediateResponseCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostConnectPluginResult doPostConnect(ClientConnection
|
clientConnection)
|
{
|
postConnectCounter.incrementAndGet();
|
return new PostConnectPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the post-connect plugins have been
|
* called since the last reset.
|
*
|
* @return The number of times that the post-connect plugins have been called
|
* since the last reset.
|
*/
|
public static int getPostConnectCount()
|
{
|
return postConnectCounter.get();
|
}
|
|
|
|
/**
|
* Resets the post-connect plugin invocation count to zero.
|
*
|
* @return The post-connect plugin invocation count before it was reset.
|
*/
|
public static int resetPostConnectCount()
|
{
|
return postConnectCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public PostDisconnectPluginResult doPostDisconnect(
|
ClientConnection clientConnection, DisconnectReason disconnectReason,
|
int msgID, String message)
|
{
|
postDisconnectCounter.incrementAndGet();
|
return new PostDisconnectPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the post-disconnect plugins have been
|
* called since the last reset.
|
*
|
* @return The number of times that the post-disconnect plugins have been
|
* called since the last reset.
|
*/
|
public static int getPostDisconnectCount()
|
{
|
return postDisconnectCounter.get();
|
}
|
|
|
|
/**
|
* Resets the post-disconnect plugin invocation count to zero.
|
*
|
* @return The post-disconnect plugin invocation count before it was reset.
|
*/
|
public static int resetPostDisconnectCount()
|
{
|
return postDisconnectCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public LDIFPluginResult doLDIFImport(LDIFImportConfig importConfig,
|
Entry entry)
|
{
|
ldifImportCounter.incrementAndGet();
|
return new LDIFPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the LDIF import plugins have been called
|
* since the last reset.
|
*
|
* @return The number of times that the LDIF import plugins have been called
|
* since the last reset.
|
*/
|
public static int getLDIFImportCount()
|
{
|
return ldifImportCounter.get();
|
}
|
|
|
|
/**
|
* Resets the LDIF import plugin invocation count to zero.
|
*
|
* @return The LDIF import plugin invocation count before it was reset.
|
*/
|
public static int resetLDIFImportCount()
|
{
|
return ldifImportCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public LDIFPluginResult doLDIFExport(LDIFExportConfig exportConfig,
|
Entry entry)
|
{
|
ldifExportCounter.incrementAndGet();
|
return new LDIFPluginResult();
|
}
|
|
|
|
/**
|
* Retrieves the number of times that the LDIF export plugins have been called
|
* since the last reset.
|
*
|
* @return The number of times that the LDIF export plugins have been called
|
* since the last reset.
|
*/
|
public static int getLDIFExportCount()
|
{
|
return ldifExportCounter.get();
|
}
|
|
|
|
/**
|
* Resets the LDIF export plugin invocation count to zero.
|
*
|
* @return The LDIF export plugin invocation count before it was reset.
|
*/
|
public static int resetLDIFExportCount()
|
{
|
return ldifExportCounter.getAndSet(0);
|
}
|
|
|
|
/**
|
* Resets all of the invocation counters. This does not impact the startup
|
* or shutdown flag.
|
*/
|
public static void resetAllCounters()
|
{
|
resetPreParseCount();
|
resetPreOperationCount();
|
resetPostOperationCount();
|
resetPostResponseCount();
|
resetSearchEntryCount();
|
resetSearchReferenceCount();
|
resetIntermediateResponseCount();
|
resetPostConnectCount();
|
resetPostDisconnectCount();
|
resetLDIFImportCount();
|
resetLDIFExportCount();
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public StartupPluginResult doStartup()
|
{
|
startupCalled = true;
|
return new StartupPluginResult();
|
}
|
|
|
|
/**
|
* Indicates whether the server startup plugins have been called.
|
*
|
* @return <CODE>true</CODE> if the server startup plugins have been called,
|
* or <CODE>false</CODE> if not.
|
*/
|
public static boolean startupCalled()
|
{
|
return startupCalled;
|
}
|
|
|
|
/**
|
* Resets the flag that indicates whether the startup plugins have been
|
* called.
|
*/
|
public static void resetStartupCalled()
|
{
|
startupCalled = false;
|
}
|
|
|
|
/**
|
* {@inheritDoc}
|
*/
|
@Override()
|
public void doShutdown()
|
{
|
shutdownCalled = true;
|
}
|
|
|
|
/**
|
* Indicates whether the server shutdown plugins have been called.
|
*
|
* @return <CODE>true</CODE> if the server shutdown plugins have been called,
|
* or <CODE>false</CODE> if not.
|
*/
|
public static boolean shutdownCalled()
|
{
|
return shutdownCalled;
|
}
|
|
|
|
/**
|
* Resets the flag that indicates whether the shutdown plugins have been
|
* called.
|
*/
|
public static void resetShutdownCalled()
|
{
|
shutdownCalled = false;
|
}
|
}
|