Class Blob
- java.lang.Object
-
- nz.ac.waikato.adams.webservice.rats.blob.Blob
-
public class Blob extends Object
Java class for Blob complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Blob"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="data" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> <element name="props" type="{http://blob.rats.webservice.adams.waikato.ac.nz/}Properties" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.activation.DataHandler
data
protected Properties
props
-
Constructor Summary
Constructors Constructor Description Blob()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.activation.DataHandler
getData()
Gets the value of the data property.Properties
getProps()
Gets the value of the props property.void
setData(javax.activation.DataHandler value)
Sets the value of the data property.void
setProps(Properties value)
Sets the value of the props property.
-
-
-
Field Detail
-
data
protected javax.activation.DataHandler data
-
props
protected Properties props
-
-
Method Detail
-
getData
public javax.activation.DataHandler getData()
Gets the value of the data property.- Returns:
- possible object is
DataHandler
-
setData
public void setData(javax.activation.DataHandler value)
Sets the value of the data property.- Parameters:
value
- allowed object isDataHandler
-
getProps
public Properties getProps()
Gets the value of the props property.- Returns:
- possible object is
Properties
-
setProps
public void setProps(Properties value)
Sets the value of the props property.- Parameters:
value
- allowed object isProperties
-
-