info.magnolia.cms.util
Class ServletUtils

java.lang.Object
  extended by info.magnolia.cms.util.ServletUtils

public abstract class ServletUtils
extends Object

Utility methods for operations related to Servlet API.

Author:
tmattsson
See Also:
RequestHeaderUtil

Field Summary
static String ERROR_REQUEST_STATUS_CODE_ATTRIBUTE
           
static String FORWARD_REQUEST_URI_ATTRIBUTE
           
static String INCLUDE_REQUEST_URI_ATTRIBUTE
           
 
Constructor Summary
ServletUtils()
           
 
Method Summary
static DispatcherType getDispatcherType(javax.servlet.http.HttpServletRequest request)
          Returns the dispatcher type of the request, the dispatcher type is defined to be identical to the semantics of filter mappings in web.xml.
static
<T extends javax.servlet.ServletRequest>
T
getWrappedRequest(javax.servlet.ServletRequest request, Class<T> clazz)
          Finds a request wrapper object inside the chain of request wrappers.
static LinkedHashMap<String,String> initParametersToMap(javax.servlet.FilterConfig config)
          Returns the init parameters for a FilterConfig object as a Map, preserving the order in which they are exposed by the FilterConfig object.
static LinkedHashMap<String,String> initParametersToMap(javax.servlet.ServletConfig config)
          Returns the init parameters for a ServletConfig object as a Map, preserving the order in which they are exposed by the ServletConfig object.
static boolean isError(javax.servlet.http.HttpServletRequest request)
          Returns true if the request is rendering an error page, either due to a call to sendError() or an exception being thrown in a filter or a servlet that reached the container.
static boolean isForward(javax.servlet.http.HttpServletRequest request)
          Returns true if the request is currently processing a forward operation.
static boolean isInclude(javax.servlet.http.HttpServletRequest request)
          Returns true if the request is currently processing an include operation.
static boolean isMultipart(javax.servlet.http.HttpServletRequest request)
          Returns true if the request has a content type that indicates that is a multipart request.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FORWARD_REQUEST_URI_ATTRIBUTE

public static final String FORWARD_REQUEST_URI_ATTRIBUTE
See Also:
Constant Field Values

INCLUDE_REQUEST_URI_ATTRIBUTE

public static final String INCLUDE_REQUEST_URI_ATTRIBUTE
See Also:
Constant Field Values

ERROR_REQUEST_STATUS_CODE_ATTRIBUTE

public static final String ERROR_REQUEST_STATUS_CODE_ATTRIBUTE
See Also:
Constant Field Values
Constructor Detail

ServletUtils

public ServletUtils()
Method Detail

initParametersToMap

public static LinkedHashMap<String,String> initParametersToMap(javax.servlet.ServletConfig config)
Returns the init parameters for a ServletConfig object as a Map, preserving the order in which they are exposed by the ServletConfig object.


initParametersToMap

public static LinkedHashMap<String,String> initParametersToMap(javax.servlet.FilterConfig config)
Returns the init parameters for a FilterConfig object as a Map, preserving the order in which they are exposed by the FilterConfig object.


getWrappedRequest

public static <T extends javax.servlet.ServletRequest> T getWrappedRequest(javax.servlet.ServletRequest request,
                                                                           Class<T> clazz)
Finds a request wrapper object inside the chain of request wrappers.


isMultipart

public static boolean isMultipart(javax.servlet.http.HttpServletRequest request)
Returns true if the request has a content type that indicates that is a multipart request.


isForward

public static boolean isForward(javax.servlet.http.HttpServletRequest request)
Returns true if the request is currently processing a forward operation. This method will return false after an include operation has begun and will return true after that include operations has completed.


isInclude

public static boolean isInclude(javax.servlet.http.HttpServletRequest request)
Returns true if the request is currently processing an include operation.


isError

public static boolean isError(javax.servlet.http.HttpServletRequest request)
Returns true if the request is rendering an error page, either due to a call to sendError() or an exception being thrown in a filter or a servlet that reached the container. Will return true also after an include() or forward() while rendering the error page.


getDispatcherType

public static DispatcherType getDispatcherType(javax.servlet.http.HttpServletRequest request)
Returns the dispatcher type of the request, the dispatcher type is defined to be identical to the semantics of filter mappings in web.xml.



Copyright © 2003-2011 Magnolia International Ltd.. All Rights Reserved.