pe.gob.sunat.service.SendPack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunat-web-services Show documentation
Show all versions of sunat-web-services Show documentation
Sunat Web Services Endpoints
package pe.gob.sunat.service;
import javax.activation.DataHandler;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlMimeType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for sendPack complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="sendPack">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="contentFile" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* <element name="partyType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "sendPack", propOrder = {
"fileName",
"contentFile",
"partyType"
})
public class SendPack {
protected String fileName;
@XmlMimeType("application/octet-stream")
protected DataHandler contentFile;
protected String partyType;
/**
* 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;
}
/**
* Gets the value of the contentFile property.
*
* @return
* possible object is
* {@link DataHandler }
*
*/
public DataHandler getContentFile() {
return contentFile;
}
/**
* Sets the value of the contentFile property.
*
* @param value
* allowed object is
* {@link DataHandler }
*
*/
public void setContentFile(DataHandler value) {
this.contentFile = value;
}
/**
* Gets the value of the partyType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPartyType() {
return partyType;
}
/**
* Sets the value of the partyType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPartyType(String value) {
this.partyType = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy