Package org.jboss.portletbridge

Examples of org.jboss.portletbridge.BridgeRequestScope.saveMessages()


   facesContext.addMessage(clientId, facesMessage);
   BridgeRequestScope state = new BridgeRequestScope(){

    
   };
   state.saveMessages(facesContext);
   Map messages = state.getMessages();
   assertEquals(1, messages.size());
   List list = (List)messages.get(clientId);
   assertEquals(1, list.size());
   assertSame(facesMessage, list.get(0));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.