Class Property


  • public class Property
    extends Object

    Java class for property complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="property">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <choice>
               <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
               <element name="valuebase64" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
             </choice>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     
    • Field Detail

      • value

        protected String value
      • valuebase64

        protected byte[] valuebase64
    • Constructor Detail

      • Property

        public Property()
    • Method Detail

      • getKey

        public String getKey()
        Gets the value of the key property.
        Returns:
        possible object is String
      • setKey

        public void setKey​(String value)
        Sets the value of the key property.
        Parameters:
        value - allowed object is String
      • getValue

        public String getValue()
        Gets the value of the value property.
        Returns:
        possible object is String
      • setValue

        public void setValue​(String value)
        Sets the value of the value property.
        Parameters:
        value - allowed object is String
      • getValuebase64

        public byte[] getValuebase64()
        Gets the value of the valuebase64 property.
        Returns:
        possible object is byte[]
      • setValuebase64

        public void setValuebase64​(byte[] value)
        Sets the value of the valuebase64 property.
        Parameters:
        value - allowed object is byte[]