
ws.example.jaxws.dropwizard.roskart.com.mtomservice.HelloResponse Maven / Gradle / Ivy
package ws.example.jaxws.dropwizard.roskart.com.mtomservice;
import javax.activation.DataHandler;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlMimeType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HelloResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HelloResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="binary" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HelloResponse", propOrder = {
"title",
"binary"
})
public class HelloResponse {
@XmlElement(required = true)
protected String title;
@XmlElement(required = true)
@XmlMimeType("application/octet-stream")
protected DataHandler binary;
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the binary property.
*
* @return
* possible object is
* {@link DataHandler }
*
*/
public DataHandler getBinary() {
return binary;
}
/**
* Sets the value of the binary property.
*
* @param value
* allowed object is
* {@link DataHandler }
*
*/
public void setBinary(DataHandler value) {
this.binary = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy