|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.opends.server.api.plugin.PluginResult.SubordinateModifyDN
public static final class PluginResult.SubordinateModifyDN
Defines a subordinate modify DN 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 | |
---|---|
static PluginResult.SubordinateModifyDN |
continueOperationProcessing()
Defines a continue processing subordinate modify DN plugin result. |
boolean |
continuePluginProcessing()
Whether to invoke the rest of the plugins. |
boolean |
continueProcessing()
Whether to continue operation processing. |
Message |
getErrorMessage()
Retrieves the error message if continueProcessing
returned false . |
DN |
getMatchedDN()
Retrieves the matched DN for the operation if continueProcessing returned false . |
java.util.List<java.lang.String> |
getReferralURLs()
Retrieves the referral URLs for the operation if continueProcessing returned false . |
ResultCode |
getResultCode()
Retrieves the result code for the operation if continueProcessing returned false . |
static PluginResult.SubordinateModifyDN |
skipFurtherPluginProcesssing()
Defines a skip further plugin processing subordinate modify DN plugin result. |
static PluginResult.SubordinateModifyDN |
stopProcessing(ResultCode resultCode,
Message errorMessage)
Contrust a new stop processing subordinate modify DN plugin result. |
static PluginResult.SubordinateModifyDN |
stopProcessing(ResultCode resultCode,
Message errorMessage,
DN matchedDN,
java.util.List<java.lang.String> referralURLs)
Defines a new stop processing subordinate modify DN plugin result. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static PluginResult.SubordinateModifyDN continueOperationProcessing()
public static PluginResult.SubordinateModifyDN skipFurtherPluginProcesssing()
public static PluginResult.SubordinateModifyDN stopProcessing(ResultCode resultCode, Message errorMessage, DN matchedDN, java.util.List<java.lang.String> referralURLs)
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.
public static PluginResult.SubordinateModifyDN stopProcessing(ResultCode resultCode, Message errorMessage)
resultCode
- The result code for this result.errorMessage
- An message explaining why processing
should stop.
public boolean continueProcessing()
true
if processing should continue
or false
otherwise.public boolean continuePluginProcessing()
true
if the rest of the plugins should
be invoked for false
to skip the rest of the
plugins.public Message getErrorMessage()
continueProcessing
returned false
.
null
if none is provided.public ResultCode getResultCode()
continueProcessing
returned false
.
null
if none is provided.public DN getMatchedDN()
continueProcessing
returned false
.
null
if none is provided.public java.util.List<java.lang.String> getReferralURLs()
continueProcessing
returned false
.
null
if none is provided.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |