Uses of Interface
org.apache.commons.latka.http.Request

Packages that use Request
org.apache.commons.latka   
org.apache.commons.latka.event   
org.apache.commons.latka.http   
org.apache.commons.latka.jelly   
 

Uses of Request in org.apache.commons.latka
 

Methods in org.apache.commons.latka with parameters of type Request
 boolean DefaultLatkaEventInfo.didRequestSucceed(Request request)
          Check to see if a particular Request succeeded or failed.
 

Uses of Request in org.apache.commons.latka.event
 

Methods in org.apache.commons.latka.event that return Request
 Request RequestEvent.getRequest()
          the request the event is about
 Request BaseRequestEvent.getRequest()
           
 

Methods in org.apache.commons.latka.event with parameters of type Request
 boolean LatkaEventInfo.didRequestSucceed(Request request)
          Check to see if a particular Request succeeded or failed.
 

Constructors in org.apache.commons.latka.event with parameters of type Request
RequestFailedEvent(Request request, Response response, ValidationException e)
          Create a new request failed event
BaseRequestEvent(Request request, Response response)
          Store the request, response and session for later retrieval
RequestSucceededEvent(Request request, Response response)
          Create the event for the given request and response
RequestErrorEvent(Request request, Response response, java.lang.Throwable t)
          Create an event from the request, response and some Throwable
RequestSkippedEvent(Request request, Response response)
          Create a RequestSkippedEvent with the provided request and response
 

Uses of Request in org.apache.commons.latka.http
 

Classes in org.apache.commons.latka.http that implement Request
 class RequestImpl
          An implementation of a Latka Request interface based on the Jakarta Commons HttpClient package.
 

Methods in org.apache.commons.latka.http that return Request
 Request ResponseImpl.getRequest()
          Defined in interface
 Request SessionImpl.createRequest(java.net.URL url, int httpMethod, java.lang.String version)
          Creates a request object with the specified URL, HTTP Method, and version.
 Request SessionImpl.createRequest(java.lang.String label, java.net.URL url, int httpMethod, java.lang.String version, boolean followRedirects)
          Creates a labeled request object with the specified URL, HTTP Method, version, and redirect handling behavior.
 Request SessionImpl.createRequest(java.net.URL url, int httpMethod, Proxy proxy, java.lang.String version)
          Creates a request object with the specified URL, HTTP Method, and version to be accessed via the provided proxy.
 Request SessionImpl.createRequest(java.lang.String label, java.net.URL url, int httpMethod, java.lang.String version, boolean followRedirects, Proxy proxy)
          Create a labeled request , with the specified URL, HTTP method, version, and redirect handling behavior, using the given proxy for communications.
 Request Session.createRequest(java.net.URL url, int httpMethod, java.lang.String version)
          Creates a request object with the specified URL, HTTP Method, and version.
 Request Session.createRequest(java.lang.String label, java.net.URL url, int httpMethod, java.lang.String version, boolean followRedirects)
          Creates a labeled request object, with the specified URL, HTTP Method, version, and redirect handling behavior.
 Request Session.createRequest(java.net.URL url, int httpMethod, Proxy proxy, java.lang.String version)
          Creates a request object with the specified URL, HTTP Method, and version to be accessed via the provided proxy.
 Request Session.createRequest(java.lang.String label, java.net.URL url, int httpMethod, java.lang.String version, boolean followRedirects, Proxy proxy)
          Create a labeled request with the specified URL, HTTP method, version, and redirect handling behavior, using the given proxy for communication.
 Request Response.getRequest()
          Getter for request property
 

Uses of Request in org.apache.commons.latka.jelly
 

Fields in org.apache.commons.latka.jelly declared as Request
protected  Request RequestTag._request
           
 

Methods in org.apache.commons.latka.jelly that return Request
 Request RequestTag.getRequest()
           
 Request JellyUtils.findParentRequest(org.apache.commons.jelly.Tag tag)
          Given a tag, find a parent RequestTag and return its Request object.
 



Copyright © 2002-2007 The Apache Software Foundation. All Rights Reserved.