// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs // 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.03 at 06:49:54 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 ClientGroupConfig complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ClientGroupConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="invocation-options" type="{http://www.ebayopensource.org/turmeric/common/config}InvocationOptionConfig" minOccurs="0"/> * <element name="cache-policy" type="{http://www.ebayopensource.org/turmeric/common/config}CachePolicyConfig" minOccurs="0"/> * <element name="pipeline-config" type="{http://www.ebayopensource.org/turmeric/common/config}PipelineConfig" minOccurs="0"/> * <element name="protocol-processor" type="{http://www.ebayopensource.org/turmeric/common/config}ProtocolProcessorConfig" maxOccurs="unbounded" minOccurs="0"/> * <element name="transport" type="{http://www.ebayopensource.org/turmeric/common/config}TransportConfig" maxOccurs="unbounded" minOccurs="0"/> * <element name="data-binding-config" type="{http://www.ebayopensource.org/turmeric/common/config}DataBindingConfig" minOccurs="0"/> * </sequence> * <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="service-name" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClientGroupConfig", propOrder = { "invocationOptions", "cachePolicy", "pipelineConfig", "protocolProcessor", "transport", "dataBindingConfig" }) public class ClientGroupConfig { @XmlElement(name = "invocation-options") protected InvocationOptionConfig invocationOptions; @XmlElement(name = "cache-policy") protected CachePolicyConfig cachePolicy; @XmlElement(name = "pipeline-config") protected PipelineConfig pipelineConfig; @XmlElement(name = "protocol-processor") protected List<ProtocolProcessorConfig> protocolProcessor; protected List<TransportConfig> transport; @XmlElement(name = "data-binding-config") protected DataBindingConfig dataBindingConfig; @XmlAttribute protected String group; @XmlAttribute(name = "service-name") protected String serviceName; /** * Gets the value of the invocationOptions property. * * @return * possible object is * {@link InvocationOptionConfig } * */ public InvocationOptionConfig getInvocationOptions() { return invocationOptions; } /** * Sets the value of the invocationOptions property. * * @param value * allowed object is * {@link InvocationOptionConfig } * */ public void setInvocationOptions(InvocationOptionConfig value) { this.invocationOptions = value; } /** * Gets the value of the cachePolicy property. * * @return * possible object is * {@link CachePolicyConfig } * */ public CachePolicyConfig getCachePolicy() { return cachePolicy; } /** * Sets the value of the cachePolicy property. * * @param value * allowed object is * {@link CachePolicyConfig } * */ public void setCachePolicy(CachePolicyConfig value) { this.cachePolicy = value; } /** * Gets the value of the pipelineConfig property. * * @return * possible object is * {@link PipelineConfig } * */ public PipelineConfig getPipelineConfig() { return pipelineConfig; } /** * Sets the value of the pipelineConfig property. * * @param value * allowed object is * {@link PipelineConfig } * */ public void setPipelineConfig(PipelineConfig value) { this.pipelineConfig = value; } /** * Gets the value of the protocolProcessor 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 protocolProcessor property. * * <p> * For example, to add a new item, do as follows: * <pre> * getProtocolProcessor().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ProtocolProcessorConfig } * * */ public List<ProtocolProcessorConfig> getProtocolProcessor() { if (protocolProcessor == null) { protocolProcessor = new ArrayList<ProtocolProcessorConfig>(); } return this.protocolProcessor; } /** * Gets the value of the transport 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 transport property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTransport().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TransportConfig } * * */ public List<TransportConfig> getTransport() { if (transport == null) { transport = new ArrayList<TransportConfig>(); } return this.transport; } /** * Gets the value of the dataBindingConfig property. * * @return * possible object is * {@link DataBindingConfig } * */ public DataBindingConfig getDataBindingConfig() { return dataBindingConfig; } /** * Sets the value of the dataBindingConfig property. * * @param value * allowed object is * {@link DataBindingConfig } * */ public void setDataBindingConfig(DataBindingConfig value) { this.dataBindingConfig = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the serviceName property. * * @return * possible object is * {@link String } * */ public String getServiceName() { return serviceName; } /** * Sets the value of the serviceName property. * * @param value * allowed object is * {@link String } * */ public void setServiceName(String value) { this.serviceName = value; } }