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 SummaryFieldsModifier and TypeFieldDescription- final booleanThe flag if this parameter is used in the URI path.The parameter name.The Value.
- Constructor SummaryConstructorsConstructorDescription- WSParameter- (String paramName, String value, boolean isURIPathParameter) Constructor.
- Method Summary
- Field Details- paramNameThe parameter name.
- valueThe Value.
- isURIPathParameterpublic final boolean isURIPathParameterThe flag if this parameter is used in the URI path.
 
- Constructor Details- WSParameterConstructor.- Parameters:
- paramName- Name of parameter.
- value- The parameter value.
- isURIPathParameter- Flag if this parameter is used in the URI path.