Interface IResponse

All Known Subinterfaces:
IHttpResponse, IProcessStartEventResponse

public interface IResponse
This is the common interfaces for all responses returned by ivy
Since:
16.05.2006
API:
This is a public API.
  • Method Details

    • getParameter

      Object getParameter(String paramName)
      Gets the response parameter with a certain name
      Parameters:
      paramName - the parameter name to get
      Returns:
      parameter value or null if parameter is not set
      API:
      This public API is available in IvyScript and Java. It has the visibility NOVICE.
    • setParameter

      void setParameter(String paramName, Object paramValue)
      Sets the response parameter
      Parameters:
      paramName - the name of the parameter to set
      paramValue - the value of the parameter
      API:
      This public API is available in IvyScript and Java. It has the visibility NOVICE.
    • getParameterNames

      Iterator<String> getParameterNames()
      Gets the names of the parameters
      Returns:
      iterator with the names
      API:
      This public API is available in IvyScript and Java. It has the visibility NOVICE.
    • getParameters

      Map<String,Object> getParameters()
      Gets the response parameters
      Returns:
      map with the parameters
      API:
      This public API is available in IvyScript and Java. It has the visibility NOVICE.