ExecutionContext context) throws ActionException {
}
private void setOrCreateOptionValue(HAccount account, UserOptions name,
String newVal) {
HAccountOption option =
account.getEditorOptions().get(name.getPersistentName());
if (option == null) {
option = new HAccountOption(name.getPersistentName(), newVal);
option.setAccount(account);
account.getEditorOptions().put(name.getPersistentName(), option);
} else {
option.setValue(newVal);
}
}