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

Packages that use Response
org.apache.commons.latka   
org.apache.commons.latka.event   
org.apache.commons.latka.http   
org.apache.commons.latka.jelly   
org.apache.commons.latka.jelly.validators   
org.apache.commons.latka.validators   
 

Uses of Response in org.apache.commons.latka
 

Methods in org.apache.commons.latka with parameters of type Response
 void Validator.validate(Response response)
          Run custom validation.
 

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

Methods in org.apache.commons.latka.event that return Response
 Response RequestEvent.getResponse()
          the response associated with the event's request
 Response BaseRequestEvent.getResponse()
           
 

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

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

Classes in org.apache.commons.latka.http that implement Response
 class ResponseImpl
          An implementation of a Latka Response interface based on the Apache Commons HttpClient package.
 

Methods in org.apache.commons.latka.http that return Response
 Response RequestImpl.execute()
          Executes the request.
 Response Request.execute()
          Execute this HTTP request.
protected  Response RequestImpl.executeRequestPerHost()
          Execute the request - perform the http interaction.
 

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

Fields in org.apache.commons.latka.jelly declared as Response
protected  Response RequestTag._response
           
 

Methods in org.apache.commons.latka.jelly that return Response
protected  Response ValidateTag.getResponse()
           
 Response RequestTag.getResponse()
          The first time this method is called, a live HTTP call will be made to the server, returning null if the response cannot be obtained.
 

Uses of Response in org.apache.commons.latka.jelly.validators
 

Fields in org.apache.commons.latka.jelly.validators declared as Response
protected  Response HttpValidatorTagSupport._response
          the response being validated
 

Methods in org.apache.commons.latka.jelly.validators that return Response
 Response HttpValidatorTagSupport.getResponse()
          the response being validated
 

Uses of Response in org.apache.commons.latka.validators
 

Methods in org.apache.commons.latka.validators with parameters of type Response
 boolean XPathValidator.assertTrue(Response response)
           
 boolean ResponseHeaderValidator.assertTrue(Response response)
          Checks to see that the header exists, and also checks its value if setHeaderValue(String) has been called
 boolean RegexpValidator.assertTrue(Response response)
           
 boolean CookieValidator.assertTrue(Response response)
           
abstract  boolean BaseConditionalValidator.assertTrue(Response response)
          Return true or false, depending on whether or not the test conditions were met.
 void StatusTextValidator.validate(Response response)
           
 void StatusCodeValidator.validate(Response response)
           
 void MaxRequestTimeValidator.validate(Response response)
           
 void GoldenFileValidator.validate(Response response)
           
 void ByteLengthValidator.validate(Response response)
           
abstract  void BaseValidator.validate(Response response)
          Validate a response
 void BaseConditionalValidator.validate(Response response)
          Final method.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.