wicket.jmx
Interface RequestCycleSettingsMBean

All Known Implementing Classes:
RequestCycleSettings

public interface RequestCycleSettingsMBean

Request cycle settings.

Author:
eelcohillenius

Method Summary
 boolean getBufferResponse()
           
 boolean getGatherExtendedBrowserInfo()
          Gets whether Wicket should try to get extensive client info by redirecting to a page that polls for client capabilities.
 java.lang.String getResponseRequestEncoding()
          In order to do proper form parameter decoding it is important that the response and the following request have the same encoding.
 void setBufferResponse(boolean bufferResponse)
           
 void setGatherExtendedBrowserInfo(boolean gatherExtendedBrowserInfo)
          Sets whether Wicket should try to get extensive client info by redirecting to a page that polls for client capabilities.
 void setResponseRequestEncoding(java.lang.String responseRequestEncoding)
          In order to do proper form parameter decoding it is important that the response and the following request have the same encoding.
 

Method Detail

getBufferResponse

boolean getBufferResponse()
Returns:
True if this application buffers its responses

getGatherExtendedBrowserInfo

boolean getGatherExtendedBrowserInfo()
Gets whether Wicket should try to get extensive client info by redirecting to a page that polls for client capabilities. This method is used by the default implementation of WebRequestCycle.newClientInfo(), so if that method is overriden, there is no guarantee this method will be taken into account.

Returns:
Whether to gather extensive client info

getResponseRequestEncoding

java.lang.String getResponseRequestEncoding()
In order to do proper form parameter decoding it is important that the response and the following request have the same encoding. see http://www.crazysquirrel.com/computing/general/form-encoding.jspx for additional information.

Returns:
The request and response encoding

setBufferResponse

void setBufferResponse(boolean bufferResponse)
Parameters:
bufferResponse - True if this application should buffer responses.

setGatherExtendedBrowserInfo

void setGatherExtendedBrowserInfo(boolean gatherExtendedBrowserInfo)
Sets whether Wicket should try to get extensive client info by redirecting to a page that polls for client capabilities. This method is used by the default implementation of WebRequestCycle.newClientInfo(), so if that method is overriden, there is no guarantee this method will be taken into account.

Parameters:
gatherExtendedBrowserInfo - Whether to gather extensive client info

setResponseRequestEncoding

void setResponseRequestEncoding(java.lang.String responseRequestEncoding)
In order to do proper form parameter decoding it is important that the response and the following request have the same encoding. see http://www.crazysquirrel.com/computing/general/form-encoding.jspx for additional information. Default encoding: UTF-8

Parameters:
responseRequestEncoding - The request and response encoding to be used.


Copyright © 2004-2007 Wicket developers. All Rights Reserved.