Package org.opends.server.api.plugin
Class PluginResult.IntermediateResponse
- java.lang.Object
-
- org.opends.server.api.plugin.PluginResult.IntermediateResponse
-
- All Implemented Interfaces:
PluginResult.OperationResult
- Enclosing class:
- PluginResult
public static final class PluginResult.IntermediateResponse extends Object implements PluginResult.OperationResult
Defines an intermediate response plugin result for core server operation processing consisting of either continue, skip further plugins, or stop operation processing with a result code, matched DN, referral URLs, and error message.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PluginResult.IntermediateResponsecontinueOperationProcessing(boolean sendResponse)Defines a continue processing intermediate response plugin result.booleancontinuePluginProcessing()Whether to invoke the rest of the plugins.booleancontinueProcessing()Indicates whether processing on the associated operation should continue.ResultgetResult()The result for this plugin result.booleansendResponse()Whether to send the intermediate response to the client.static PluginResult.IntermediateResponseskipFurtherPluginProcessing(boolean sendResponse)Defines a skip further plugin processing intermediate response plugin result.static PluginResult.IntermediateResponsestopProcessing(boolean sendResponse, ResultCode resultCode, LocalizableMessage errorMessage)Constructs a new stop processing intermediate response plugin result.static PluginResult.IntermediateResponsestopProcessing(boolean sendResponse, ResultCode resultCode, LocalizableMessage errorMessage, Dn matchedDN, List<String> referralURLs)Defines a new stop processing intermediate response plugin result.
-
-
-
Method Detail
-
continueOperationProcessing
public static PluginResult.IntermediateResponse continueOperationProcessing(boolean sendResponse)
Defines a continue processing intermediate response plugin result.- Parameters:
sendResponse- Whether to send the intermediate response to the client.- Returns:
- a continue processing intermediate response plugin result.
-
skipFurtherPluginProcessing
public static PluginResult.IntermediateResponse skipFurtherPluginProcessing(boolean sendResponse)
Defines a skip further plugin processing intermediate response plugin result.- Parameters:
sendResponse- Whether to send the intermediate response to the client.- Returns:
- a skip further plugin processing intermediate response plugin result.
-
stopProcessing
public static PluginResult.IntermediateResponse stopProcessing(boolean sendResponse, ResultCode resultCode, LocalizableMessage errorMessage, Dn matchedDN, List<String> referralURLs)
Defines a new stop processing intermediate response plugin result.- Parameters:
sendResponse- Whether to send the intermediate response to the client.resultCode- The result code for this result.errorMessage- An message explaining why processing should stop.matchedDN- The matched DN for this result.referralURLs- The set of referral URLs for this result.- Returns:
- a new stop processing intermediate response plugin result.
-
stopProcessing
public static PluginResult.IntermediateResponse stopProcessing(boolean sendResponse, ResultCode resultCode, LocalizableMessage errorMessage)
Constructs a new stop processing intermediate response plugin result.- Parameters:
sendResponse- Whether to send the intermediate response to the client.resultCode- The result code for this result.errorMessage- An message explaining why processing should stop.- Returns:
- a new stop processing intermediate response plugin result.
-
continueProcessing
public boolean continueProcessing()
Description copied from interface:PluginResult.OperationResultIndicates whether processing on the associated operation should continue.- Specified by:
continueProcessingin interfacePluginResult.OperationResult- Returns:
trueif processing on the associated operation should continue, orfalseif it should stop.
-
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.
-
sendResponse
public boolean sendResponse()
Whether to send the intermediate response to the client.- Returns:
trueif the intermediate response should be sent to the client orfalseotherwise.
-
getResult
public Result getResult()
Description copied from interface:PluginResult.OperationResultThe result for this plugin result.- Specified by:
getResultin interfacePluginResult.OperationResult- Returns:
- the result for this plugin result
-
-