org.kie.remote.jaxb.gen.AddContentFromUserCommand Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.02.22 at 05:32:12 PM CET
//
package org.kie.remote.jaxb.gen;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for addContentFromUserCommand complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="addContentFromUserCommand">
* <complexContent>
* <extension base="{}taskCommand">
* <sequence>
* <element name="document-content-bytes" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* <element name="output-content-map" type="{}jaxbStringObjectPairArray" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "addContentFromUserCommand", propOrder = {
"documentContentBytes",
"outputContentMap"
})
@XmlRootElement(name = "add-content-from-user-command")
public class AddContentFromUserCommand
extends TaskCommand
{
@XmlElement(name = "document-content-bytes")
protected byte[] documentContentBytes;
@XmlElement(name = "output-content-map")
protected JaxbStringObjectPairArray outputContentMap;
/**
* Gets the value of the documentContentBytes property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getDocumentContentBytes() {
return documentContentBytes;
}
/**
* Sets the value of the documentContentBytes property.
*
* @param value
* allowed object is
* byte[]
*/
public void setDocumentContentBytes(byte[] value) {
this.documentContentBytes = value;
}
/**
* Gets the value of the outputContentMap property.
*
* @return
* possible object is
* {@link JaxbStringObjectPairArray }
*
*/
public JaxbStringObjectPairArray getOutputContentMap() {
return outputContentMap;
}
/**
* Sets the value of the outputContentMap property.
*
* @param value
* allowed object is
* {@link JaxbStringObjectPairArray }
*
*/
public void setOutputContentMap(JaxbStringObjectPairArray value) {
this.outputContentMap = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy