Class NVPair

  • All Implemented Interfaces:

    
    public class NVPair
    
                        

    Description:

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      NVPair()
      NVPair(String name, String value) The constructor takes a name and value which represent HTTP request parameters.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      void setName(String name) Set the name
      void setValue(String value) Set the value
      String getName() Return the name
      String getValue() Return the value
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NVPair

        NVPair()
      • NVPair

        NVPair(String name, String value)
        The constructor takes a name and value which represent HTTP request parameters.
        Parameters:
        name - name of the request parameter
        value - value of the request parameter
    • Method Detail

      • setName

         void setName(String name)

        Set the name

        Parameters:
        name - name of the request parameter
      • setValue

         void setValue(String value)

        Set the value

        Parameters:
        value - value of the request parameter