public static void add(PortletRequest req, String key, Object value) {
add(req.getPortletSession(), key, value);
}
public static void add(PortletSession ses, String key, Object value) {
PortletSessionImpl sessImpl = (PortletSessionImpl) ses;
Map messages = _getMessages(sessImpl.getSession());
messages.put(key, value);
}