| | |
| | | { |
| | | private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass(); |
| | | |
| | | |
| | | /** The matched DN for this response. */ |
| | | private DN matchedDN; |
| | | /** The result code for this response. */ |
| | |
| | | /** The error message for this response. */ |
| | | private LocalizableMessage errorMessage; |
| | | |
| | | |
| | | |
| | | /** |
| | | * Creates a new delete response protocol op with the provided result code. |
| | | * |
| | |
| | | this.resultCode = resultCode; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Creates a new delete response protocol op with the provided result code and |
| | | * error message. |
| | |
| | | this.errorMessage = errorMessage; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Creates a new delete response protocol op with the provided information. |
| | | * |
| | |
| | | this.referralURLs = referralURLs; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the result code for this response. |
| | | * |
| | |
| | | return resultCode; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the error message for this response. |
| | | * |
| | |
| | | return errorMessage; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the matched DN for this response. |
| | | * |
| | |
| | | return matchedDN; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the set of referral URLs for this response. |
| | | * |