i have a JSF/Seam Page and added a new not HTML Interface. I reused the business logic, so StatusMessages.instance().add is used everywhere.
Is there a default way to access and handle this StatusMessages from Java or do i have to extend the base class and pass the protected messages list?
thx
Edit:
StatusMessages.instance().add(Severity.ERROR, "Please enter a username.");
The FacesMessages is not returning his own messages List (where i saw the entry in the debugger) (FacesMessages.instance() is the same object as StatusMessages.instance() )
FacesMessages.instance().getCurrentMessages();
It is calling this
FacesContext.getCurrentInstance().getMessages();
and this is returning an empty iterator.