com.consol.citrus.model.testcase.ws.SendModel Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 generiert
// Siehe https://javaee.github.io/jaxb-v2/
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2024.04.24 um 05:13:03 PM CEST
//
package com.consol.citrus.model.testcase.ws;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.consol.citrus.model.testcase.core.SendActionType;
/**
* Java-Klasse für SoapSendActionType complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="SoapSendActionType">
* <complexContent>
* <extension base="{http://www.citrusframework.org/schema/testcase}SendActionType">
* <sequence>
* <element name="attachment" type="{http://www.citrusframework.org/schema/ws/testcase}SoapAttachmentType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="mtom-enabled" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="soap-action" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="content-type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="accept" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SoapSendActionType", propOrder = {
"attachments"
})
@XmlRootElement(name = "send")
public class SendModel
extends SendActionType
{
@XmlElement(name = "attachment")
protected List attachments;
@XmlAttribute(name = "mtom-enabled")
@XmlSchemaType(name = "anySimpleType")
protected String mtomEnabled;
@XmlAttribute(name = "soap-action")
@XmlSchemaType(name = "anySimpleType")
protected String soapAction;
@XmlAttribute(name = "content-type")
protected String contentType;
@XmlAttribute(name = "accept")
protected String accept;
/**
* Gets the value of the attachments property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the attachments property.
*
*
* For example, to add a new item, do as follows:
*
* getAttachments().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SoapAttachmentType }
*
*
*/
public List getAttachments() {
if (attachments == null) {
attachments = new ArrayList();
}
return this.attachments;
}
/**
* Ruft den Wert der mtomEnabled-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMtomEnabled() {
return mtomEnabled;
}
/**
* Legt den Wert der mtomEnabled-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMtomEnabled(String value) {
this.mtomEnabled = value;
}
/**
* Ruft den Wert der soapAction-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSoapAction() {
return soapAction;
}
/**
* Legt den Wert der soapAction-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSoapAction(String value) {
this.soapAction = value;
}
/**
* Ruft den Wert der contentType-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContentType() {
return contentType;
}
/**
* Legt den Wert der contentType-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContentType(String value) {
this.contentType = value;
}
/**
* Ruft den Wert der accept-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccept() {
return accept;
}
/**
* Legt den Wert der accept-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccept(String value) {
this.accept = value;
}
}