Class Property


  • public class Property
    extends java.lang.Object
    Wrapper class for the systemPropery argument type.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String key  
      private java.lang.String value  
    • Constructor Summary

      Constructors 
      Constructor Description
      Property()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getKey()
      Getter for the field key.
      java.lang.String getValue()
      Getter for the field value.
      void setKey​(java.lang.String key)
      Setter for the field key.
      void setValue​(java.lang.String value)
      Setter for the field value.
      • Methods inherited from class java.lang.Object

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

      • key

        private java.lang.String key
      • value

        private java.lang.String value
    • Constructor Detail

      • Property

        public Property()
    • Method Detail

      • getKey

        public java.lang.String getKey()

        Getter for the field key.

        Returns:
        a String object.
      • setKey

        public void setKey​(java.lang.String key)

        Setter for the field key.

        Parameters:
        key - a String object.
      • getValue

        public java.lang.String getValue()

        Getter for the field value.

        Returns:
        a String object.
      • setValue

        public void setValue​(java.lang.String value)

        Setter for the field value.

        Parameters:
        value - a String object.