Class WSParameter

java.lang.Object
com.iizix.ws.engine.WSParameter

public class WSParameter extends Object
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 Details

    • paramName

      public String paramName
      The parameter name.
    • value

      public String value
      The Value.
    • isURIPathParameter

      public final boolean isURIPathParameter
      The flag if this parameter is used in the URI path.
  • Constructor Details

    • WSParameter

      public WSParameter(String paramName, String value, boolean isURIPathParameter)
      Constructor.
      Parameters:
      paramName - Name of parameter.
      value - The parameter value.
      isURIPathParameter - Flag if this parameter is used in the URI path.