com.liferay.portal.kernel.servlet.SessionMessages Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.liferay.portal.kernel.servlet;
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.portlet.PortletRequest;
import javax.portlet.PortletSession;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
/**
* View Source
*
* @author Brian Wing Shun Chan
*
*/
public class SessionMessages {
public static final String KEY = SessionMessages.class.getName();
// Servlet Request
public static void add(HttpServletRequest request, String key) {
add(request.getSession(), key);
}
public static void add(HttpSession session, String key) {
Map messages = _getMessages(session);
messages.put(key, key);
}
public static void add(
HttpServletRequest request, String key, Object value) {
add(request.getSession(), key, value);
}
public static void add(HttpSession session, String key, Object value) {
Map messages = _getMessages(session);
messages.put(key, value);
}
public static void clear(HttpServletRequest request) {
clear(request.getSession());
}
public static void clear(HttpSession session) {
Map messages = _getMessages(session);
messages.clear();
}
public static boolean contains(HttpServletRequest request, String key) {
return contains(request.getSession(), key);
}
public static boolean contains(HttpSession session, String key) {
Map messages = _getMessages(session);
return messages.containsKey(key);
}
public static Object get(HttpServletRequest request, String key) {
return get(request.getSession(), key);
}
public static Object get(HttpSession session, String key) {
Map messages = _getMessages(session);
return messages.get(key);
}
public static boolean isEmpty(HttpServletRequest request) {
return isEmpty(request.getSession());
}
public static boolean isEmpty(HttpSession session) {
Map messages = _getMessages(session);
return messages.isEmpty();
}
public static Iterator iterator(HttpServletRequest request) {
return iterator(request.getSession());
}
public static Iterator iterator(HttpSession session) {
Map messages = _getMessages(session);
return Collections.unmodifiableSet(messages.keySet()).iterator();
}
public static void print(HttpServletRequest request) {
print(request.getSession());
}
public static void print(HttpSession session) {
Iterator itr = iterator(session);
while (itr.hasNext()) {
System.out.println(itr.next());
}
}
public static int size(HttpServletRequest request) {
return size(request.getSession());
}
public static int size(HttpSession session) {
Map messages = _getMessages(session);
return messages.size();
}
private static Map _getMessages(HttpSession session) {
Map messages = null;
try {
messages = (Map)session.getAttribute(KEY);
if (messages == null) {
messages = new LinkedHashMap();
session.setAttribute(KEY, messages);
}
}
catch (IllegalStateException ise) {
messages = new LinkedHashMap();
}
return messages;
}
// Portlet Request
public static void add(PortletRequest portletRequest, String key) {
add(portletRequest.getPortletSession(), key);
}
public static void add(PortletSession portletSession, String key) {
Map messages = _getMessages(portletSession);
messages.put(key, key);
}
public static void add(
PortletRequest portletRequest, String key, Object value) {
add(portletRequest.getPortletSession(), key, value);
}
public static void add(
PortletSession portletSession, String key, Object value) {
Map messages = _getMessages(portletSession);
messages.put(key, value);
}
public static void clear(PortletRequest portletRequest) {
clear(portletRequest.getPortletSession());
}
public static void clear(PortletSession portletSession) {
Map messages = _getMessages(portletSession);
messages.clear();
}
public static boolean contains(PortletRequest portletRequest, String key) {
return contains(portletRequest.getPortletSession(), key);
}
public static boolean contains(PortletSession portletSession, String key) {
Map messages = _getMessages(portletSession);
return messages.containsKey(key);
}
public static Object get(PortletRequest portletRequest, String key) {
return get(portletRequest.getPortletSession(), key);
}
public static Object get(PortletSession portletSession, String key) {
Map messages = _getMessages(portletSession);
return messages.get(key);
}
public static boolean isEmpty(PortletRequest portletRequest) {
return isEmpty(portletRequest.getPortletSession());
}
public static boolean isEmpty(PortletSession portletSession) {
Map messages = _getMessages(portletSession);
return messages.isEmpty();
}
public static Iterator iterator(PortletRequest portletRequest) {
return iterator(portletRequest.getPortletSession());
}
public static Iterator iterator(PortletSession portletSession) {
Map messages = _getMessages(portletSession);
return Collections.unmodifiableSet(messages.keySet()).iterator();
}
public static void print(PortletRequest portletRequest) {
print(portletRequest.getPortletSession());
}
public static void print(PortletSession portletSession) {
Iterator itr = iterator(portletSession);
while (itr.hasNext()) {
System.out.println(itr.next());
}
}
public static int size(PortletRequest portletRequest) {
return size(portletRequest.getPortletSession());
}
public static int size(PortletSession portletSession) {
Map messages = _getMessages(portletSession);
return messages.size();
}
private static Map _getMessages(
PortletSession portletSession) {
Map messages = null;
try {
messages = (Map)portletSession.getAttribute(KEY);
if (messages == null) {
messages = new LinkedHashMap();
portletSession.setAttribute(KEY, messages);
}
}
catch (IllegalStateException ise) {
messages = new LinkedHashMap();
}
return messages;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy