
cz.abclinuxu.datoveschranky.ws.dm.TFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isds-web-services Show documentation
Show all versions of isds-web-services Show documentation
Entity classes generated from WSDL.
The newest version!
package cz.abclinuxu.datoveschranky.ws.dm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
/**
* Java class for tFile complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tFile">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="dmEncodedContent" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* <element name="dmXMLContent">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <any processContents='skip' namespace=''/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tFile", propOrder = {
"dmEncodedContent",
"dmXMLContent"
})
@XmlSeeAlso({
cz.abclinuxu.datoveschranky.ws.dm.TFilesArray.DmFile.class
})
public class TFile {
protected byte[] dmEncodedContent;
protected TFile.DmXMLContent dmXMLContent;
/**
* Gets the value of the dmEncodedContent property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getDmEncodedContent() {
return dmEncodedContent;
}
/**
* Sets the value of the dmEncodedContent property.
*
* @param value
* allowed object is
* byte[]
*/
public void setDmEncodedContent(byte[] value) {
this.dmEncodedContent = value;
}
/**
* Gets the value of the dmXMLContent property.
*
* @return
* possible object is
* {@link TFile.DmXMLContent }
*
*/
public TFile.DmXMLContent getDmXMLContent() {
return dmXMLContent;
}
/**
* Sets the value of the dmXMLContent property.
*
* @param value
* allowed object is
* {@link TFile.DmXMLContent }
*
*/
public void setDmXMLContent(TFile.DmXMLContent value) {
this.dmXMLContent = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <any processContents='skip' namespace=''/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"any"
})
public static class DmXMLContent {
@XmlAnyElement
protected Element any;
/**
* Gets the value of the any property.
*
* @return
* possible object is
* {@link Element }
*
*/
public Element getAny() {
return any;
}
/**
* Sets the value of the any property.
*
* @param value
* allowed object is
* {@link Element }
*
*/
public void setAny(Element value) {
this.any = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy