Package org.opends.server.api.plugin
Class PluginResult.PostResponse
- java.lang.Object
-
- org.opends.server.api.plugin.PluginResult.PostResponse
-
- Enclosing class:
- PluginResult
public static final class PluginResult.PostResponse extends Object
Defines a post response plugin result for core server operation processing consisting of either continue or skip further plugins.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PluginResult.PostResponsecontinueOperationProcessing()Defines a continue processing post response plugin result.booleancontinuePluginProcessing()Whether to invoke the rest of the plugins.static PluginResult.PostResponseskipFurtherPluginProcessing()Defines a skip further plugin processing post response plugin result.
-
-
-
Method Detail
-
continueOperationProcessing
public static PluginResult.PostResponse continueOperationProcessing()
Defines a continue processing post response plugin result.- Returns:
- a continue processing post response plugin result.
-
skipFurtherPluginProcessing
public static PluginResult.PostResponse skipFurtherPluginProcessing()
Defines a skip further plugin processing post response plugin result.- Returns:
- a skip further plugin processing post response plugin result.
-
continuePluginProcessing
public boolean continuePluginProcessing()
Whether to invoke the rest of the plugins.- Returns:
trueif the rest of the plugins should be invoked forfalseto skip the rest of the plugins.
-
-