package net.conselldemallorca.helium.wsintegraciones.portafirmasws.cws; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para SignatureImage complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="SignatureImage"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="base64-data" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="mime-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignatureImage", propOrder = { "base64Data", "mimeType" }) public class SignatureImage { @XmlElement(name = "base64-data", required = true, nillable = true) protected String base64Data; @XmlElementRef(name = "mime-type", type = JAXBElement.class) protected JAXBElement<String> mimeType; /** * Obtiene el valor de la propiedad base64Data. * * @return * possible object is * {@link String } * */ public String getBase64Data() { return base64Data; } /** * Define el valor de la propiedad base64Data. * * @param value * allowed object is * {@link String } * */ public void setBase64Data(String value) { this.base64Data = value; } /** * Obtiene el valor de la propiedad mimeType. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getMimeType() { return mimeType; } /** * Define el valor de la propiedad mimeType. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setMimeType(JAXBElement<String> value) { this.mimeType = value; } }