public DeleteUserResponseDocument deleteUser(DeleteUserDocument input)
throws XregistryException {
log.info("Request Received " + input.xmlText());
registryImpl.deleteUser(findUserDN(), input.getDeleteUser().getUserName());
DeleteUserResponseDocument responseDocument = DeleteUserResponseDocument.Factory
.newInstance();
responseDocument.addNewDeleteUserResponse();
log.info("Response: " + responseDocument.xmlText());
return responseDocument;
}