votorola.a.web
Class VRequestCycle

java.lang.Object
  extended by org.apache.wicket.RequestCycle
      extended by org.apache.wicket.protocol.http.WebRequestCycle
          extended by VRequestCycle

@ThreadRestricted(value="wicket")
public final class VRequestCycle
extends WebRequestCycle

A request cycle in the Web-based voter interface.


Field Summary
 
Fields inherited from class org.apache.wicket.RequestCycle
application, processor, request, response
 
Constructor Summary
VRequestCycle(VApplication application, WebRequest request, Response response)
          Constructs a VRequestCycle.
 
Method Summary
 BundleFormatter bunA()
          Returns the application (A) bundle formatter for the request.
 BundleFormatter bunW()
          Returns the Web (W) bundle formatter for the request.
static VRequestCycle get()
           
 URI uriFor(IPageMap pageMap, Class pageClass)
          Returns a URI for a bookmarkable page.
 URI uriFor(IPageMap pageMap, Class pageClass, PageParameters parameters)
          Returns a URI for a bookmarkable page.
 VApplication vApplication()
           
 WebRequest vRequest()
           
 WebResponse vResponse()
           
 VSession vSession()
           
 
Methods inherited from class org.apache.wicket.protocol.http.WebRequestCycle
getProcessor, getWebRequest, getWebResponse, getWebSession, isRedirect, newClientInfo, redirectTo
 
Methods inherited from class org.apache.wicket.RequestCycle
detach, getApplication, getClientInfo, getMetaData, getOriginalResponse, getPageParameters, getRedirect, getRequest, getRequestTarget, getResponse, getResponsePage, getResponsePageClass, getSession, getStartTime, isUrlForNewWindowEncoding, logRuntimeException, onBeginRequest, onEndRequest, onRuntimeException, request, request, request, set, setAutomaticallyClearFeedbackMessages, setMetaData, setRedirect, setRequest, setRequestTarget, setResponse, setResponsePage, setResponsePage, setResponsePage, setResponsePage, setUrlForNewWindowEncoding, toString, urlFor, urlFor, urlFor, urlFor, urlFor, urlFor, urlFor, urlFor, urlFor, wasHandled
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VRequestCycle

VRequestCycle(VApplication application,
              WebRequest request,
              Response response)
Constructs a VRequestCycle.

Method Detail

bunA

public BundleFormatter bunA()
Returns the application (A) bundle formatter for the request. It uses bundle base name 'votorola.a.locale.A'.

See Also:
locale/A.properties

bunW

public BundleFormatter bunW()
Returns the Web (W) bundle formatter for the request. It uses bundle base name 'votorola.a.locale.W'.

See Also:
locale/W.properties

uriFor

public URI uriFor(IPageMap pageMap,
                  Class pageClass)
Returns a URI for a bookmarkable page.

Returns:
normalized URI
See Also:
RequestCycle.urlFor(IPageMap,Class,PageParameters)

uriFor

public URI uriFor(IPageMap pageMap,
                  Class pageClass,
                  PageParameters parameters)
Returns a URI for a bookmarkable page.

Returns:
normalized URI
See Also:
RequestCycle.urlFor(IPageMap,Class,PageParameters)

vApplication

public VApplication vApplication()
See Also:
RequestCycle.getApplication()

vRequest

public WebRequest vRequest()
See Also:
RequestCycle.getRequest()

vResponse

public WebResponse vResponse()
See Also:
RequestCycle.getResponse()

vSession

public VSession vSession()
See Also:
RequestCycle.getSession()

get

public static VRequestCycle get()