FileDocCategorySizeDatePackage
PECoyoteResponse.javaAPI DocGlassfish v2 API3107Fri May 04 22:36:04 BST 2007com.sun.enterprise.web.connector.coyote

PECoyoteResponse

public class PECoyoteResponse extends org.apache.coyote.tomcat5.CoyoteResponse
Customized version of the Tomcat 5 CoyoteResponse

Fields Summary
private static final Logger
logger
Constructors Summary
public PECoyoteResponse(boolean chunkingDisabled)


    
    /*
     * Constructor.
     */
       
	super(chunkingDisabled);
    
Methods Summary
protected java.lang.StringgetCookieString(javax.servlet.http.Cookie cookie)
Gets the string representation of the given cookie.

param
cookie The cookie whose string representation to get
return
The cookie's string representation


        PwcWebModule wm = (PwcWebModule) getContext();
        boolean encodeCookies = false;
        if (wm != null && wm.getEncodeCookies()) {
            encodeCookies = true;
        }

        return getCookieString(cookie, encodeCookies);