Package com.iizix.ws.engine
Class WSParameter
java.lang.Object
com.iizix.ws.engine.WSParameter
A Web Service parameter consists of a Parameter name and a Value. As the Web Service Request can possibly contain several parameters with the same name (e.g. Google Translate), a Map cannot be used to store the values.
- Author:
- Christopher Mindus
Field Summary
Modifier and TypeFieldDescriptionfinal boolean
The flag if this parameter is used in the URI path.The parameter name.The Value.Constructor Summary
ConstructorDescriptionWSParameter
(String paramName, String value, boolean isURIPathParameter) Constructor.Method Summary
Field Details
paramName
The parameter name.value
The Value.isURIPathParameter
public final boolean isURIPathParameterThe flag if this parameter is used in the URI path.
Constructor Details
WSParameter
Constructor.- Parameters:
paramName
- Name of parameter.value
- The parameter value.isURIPathParameter
- Flag if this parameter is used in the URI path.