Package ch.ivyteam.ivy.request
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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getParameter(String paramName)
Gets the response parameter with a certain nameIterator<String>
getParameterNames()
Gets the names of the parametersMap<String,Object>
getParameters()
Gets the response parametersvoid
setParameter(String paramName, Object paramValue)
Sets the response parameter
-
-
-
Method Detail
-
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 setparamValue
- 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.
-
-