Class Parameter

  • All Implemented Interfaces:
    java.lang.Cloneable

    public class Parameter
    extends java.lang.Object
    implements java.lang.Cloneable
    The Class Parameter.
    • get-disable-ssl-verification
    • protocol-version
    • retries
    • timeout
    Author:
    Alejandro Galue
    • Constructor Summary

      Constructors 
      Constructor Description
      Parameter()
      Instantiates a new parameter.
      Parameter​(java.lang.String name, java.lang.String value)
      Instantiates a new parameter.
      Parameter​(Parameter copy)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Parameter clone()  
      java.lang.String getName()
      Gets the name.
      java.lang.String getValue()
      Gets the value.
      void setName​(java.lang.String name)
      Sets the name.
      void setValue​(java.lang.String value)
      Sets the value.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • Parameter

        public Parameter()
        Instantiates a new parameter.
      • Parameter

        public Parameter​(java.lang.String name,
                         java.lang.String value)
        Instantiates a new parameter.
        Parameters:
        name - the name
        value - the value
      • Parameter

        public Parameter​(Parameter copy)
    • Method Detail

      • getName

        public java.lang.String getName()
        Gets the name.
        Returns:
        the name
      • getValue

        public java.lang.String getValue()
        Gets the value.
        Returns:
        the value
      • setName

        public void setName​(java.lang.String name)
        Sets the name.
        Parameters:
        name - the new name
      • setValue

        public void setValue​(java.lang.String value)
        Sets the value.
        Parameters:
        value - the new value
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • clone

        public Parameter clone()
        Overrides:
        clone in class java.lang.Object