protected Forward viewUpdateAccount() {
_sharedFlow.ensureLogin();
_updateForm = new UpdateAccountForm(_sharedFlow.getAccount());
Forward forward = new Forward("update");
forward.addOutputForm(_updateForm);
forward.addActionOutput("languages", LANGUAGES);
forward.addActionOutput("categoryNames", _sharedFlow.getCategoryNames());
return forward;
}