| | |
| | | * |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2012 ForgeRock AS. |
| | | */ |
| | | package org.opends.dsml.protocol; |
| | | |
| | | |
| | | |
| | | import java.io.IOException; |
| | | |
| | | import org.opends.messages.Message; |
| | |
| | | // Set the result code and error message for the DSML response. |
| | | delResponse.setErrorMessage( |
| | | errorMessage != null ? errorMessage.toString() : null); |
| | | ResultCode code = objFactory.createResultCode(); |
| | | code.setCode(resultCode); |
| | | ResultCode code = ResultCodeFactory.create(objFactory, resultCode); |
| | | delResponse.setResultCode(code); |
| | | |
| | | // set the match DN |