package com.thesecretserver.service; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for FileDownloadResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="FileDownloadResult"> * <complexContent> * <extension base="{urn:thesecretserver.com}WebServiceResult"> * <sequence> * <element name="FileAttachment" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * <element name="FileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FileDownloadResult", propOrder = { "fileAttachment", "fileName" }) public class FileDownloadResult extends WebServiceResult { @XmlElement(name = "FileAttachment") protected byte[] fileAttachment; @XmlElement(name = "FileName") protected String fileName; /** * Gets the value of the fileAttachment property. * * @return * possible object is * byte[] */ public byte[] getFileAttachment() { return fileAttachment; } /** * Sets the value of the fileAttachment property. * * @param value * allowed object is * byte[] */ public void setFileAttachment(byte[] value) { this.fileAttachment = value; } /** * Gets the value of the fileName property. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Sets the value of the fileName property. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = value; } }