// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.08.11 at 04:38:10 AM PDT // package org.ebayopensource.turmeric.common.config; 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.XmlType; /** * <p>Java class for OperationConfig complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="OperationConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="request-message" type="{http://www.ebayopensource.org/turmeric/common/config}MessageTypeConfig" minOccurs="0"/> * <element name="response-message" type="{http://www.ebayopensource.org/turmeric/common/config}MessageTypeConfig" minOccurs="0"/> * <element name="error-message" type="{http://www.ebayopensource.org/turmeric/common/config}MessageTypeConfig" minOccurs="0"/> * <element name="request-header" type="{http://www.ebayopensource.org/turmeric/common/config}MessageHeaderConfig" maxOccurs="unbounded" minOccurs="0"/> * <element name="response-header" type="{http://www.ebayopensource.org/turmeric/common/config}MessageHeaderConfig" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="methodName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OperationConfig", propOrder = { "requestMessage", "responseMessage", "errorMessage", "requestHeader", "responseHeader" }) public class OperationConfig { @XmlElement(name = "request-message") protected MessageTypeConfig requestMessage; @XmlElement(name = "response-message") protected MessageTypeConfig responseMessage; @XmlElement(name = "error-message") protected MessageTypeConfig errorMessage; @XmlElement(name = "request-header") protected List<MessageHeaderConfig> requestHeader; @XmlElement(name = "response-header") protected List<MessageHeaderConfig> responseHeader; @XmlAttribute(required = true) protected String name; @XmlAttribute(required = true) protected String methodName; /** * Gets the value of the requestMessage property. * * @return * possible object is * {@link MessageTypeConfig } * */ public MessageTypeConfig getRequestMessage() { return requestMessage; } /** * Sets the value of the requestMessage property. * * @param value * allowed object is * {@link MessageTypeConfig } * */ public void setRequestMessage(MessageTypeConfig value) { this.requestMessage = value; } /** * Gets the value of the responseMessage property. * * @return * possible object is * {@link MessageTypeConfig } * */ public MessageTypeConfig getResponseMessage() { return responseMessage; } /** * Sets the value of the responseMessage property. * * @param value * allowed object is * {@link MessageTypeConfig } * */ public void setResponseMessage(MessageTypeConfig value) { this.responseMessage = value; } /** * Gets the value of the errorMessage property. * * @return * possible object is * {@link MessageTypeConfig } * */ public MessageTypeConfig getErrorMessage() { return errorMessage; } /** * Sets the value of the errorMessage property. * * @param value * allowed object is * {@link MessageTypeConfig } * */ public void setErrorMessage(MessageTypeConfig value) { this.errorMessage = value; } /** * Gets the value of the requestHeader property. * * <p> * 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 <CODE>set</CODE> method for the requestHeader property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRequestHeader().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MessageHeaderConfig } * * */ public List<MessageHeaderConfig> getRequestHeader() { if (requestHeader == null) { requestHeader = new ArrayList<MessageHeaderConfig>(); } return this.requestHeader; } /** * Gets the value of the responseHeader property. * * <p> * 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 <CODE>set</CODE> method for the responseHeader property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResponseHeader().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MessageHeaderConfig } * * */ public List<MessageHeaderConfig> getResponseHeader() { if (responseHeader == null) { responseHeader = new ArrayList<MessageHeaderConfig>(); } return this.responseHeader; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the methodName property. * * @return * possible object is * {@link String } * */ public String getMethodName() { return methodName; } /** * Sets the value of the methodName property. * * @param value * allowed object is * {@link String } * */ public void setMethodName(String value) { this.methodName = value; } }