Package be.recipe.services.executor
Class Property
- java.lang.Object
-
- be.recipe.services.executor.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 Summary
Fields Modifier and Type Field Description protected Stringkeyprotected Stringvalueprotected byte[]valuebase64
-
Constructor Summary
Constructors Constructor Description Property()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()Gets the value of the key property.StringgetValue()Gets the value of the value property.byte[]getValuebase64()Gets the value of the valuebase64 property.voidsetKey(String value)Sets the value of the key property.voidsetValue(String value)Sets the value of the value property.voidsetValuebase64(byte[] value)Sets the value of the valuebase64 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 isString
-
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 isString
-
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[]
-
-