}
public ActionForward changeCreditNoteState(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) {
final CreditNote creditNote = getCreditNoteFromViewState();
final CreditNoteState creditNoteState = CreditNoteState.valueOf(((CreditNotesActionForm) form).getCreditNoteState());
try {
ChangeCreditNoteState.run(getUserView(request).getPerson(), creditNote, creditNoteState);
} catch (DomainExceptionWithLabelFormatter ex) {