final Account account = securityManager.getAccount(username);
account.setEnabled(enable);
try {
account.save(broker);
return Sequence.EMPTY_SEQUENCE;
} catch(final ConfigurationException ce) {
throw new XPathException(ce.getMessage(), ce);
} catch(final PermissionDeniedException pde) {
throw new XPathException(pde.getMessage(), pde);