// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2013.08.09 at 10:45:26 AM EST // package org.jentrata.ebxml.cpa; 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.XmlType; import javax.xml.datatype.Duration; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}ReliableMessaging" minOccurs="0"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}PersistDuration" minOccurs="0"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}SenderNonRepudiation" minOccurs="0"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}SenderDigitalEnvelope" minOccurs="0"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}NamespaceSupported" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}version use="required""/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "reliableMessaging", "persistDuration", "senderNonRepudiation", "senderDigitalEnvelope", "namespaceSupported" }) @XmlRootElement(name = "ebXMLSenderBinding") public class EbXMLSenderBinding { @XmlElement(name = "ReliableMessaging") protected ReliableMessaging reliableMessaging; @XmlElement(name = "PersistDuration") protected Duration persistDuration; @XmlElement(name = "SenderNonRepudiation") protected SenderNonRepudiation senderNonRepudiation; @XmlElement(name = "SenderDigitalEnvelope") protected SenderDigitalEnvelope senderDigitalEnvelope; @XmlElement(name = "NamespaceSupported") protected List<NamespaceSupported> namespaceSupported; @XmlAttribute(name = "version", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd", required = true) protected String version; /** * Gets the value of the reliableMessaging property. * * @return * possible object is * {@link ReliableMessaging } * */ public ReliableMessaging getReliableMessaging() { return reliableMessaging; } /** * Sets the value of the reliableMessaging property. * * @param value * allowed object is * {@link ReliableMessaging } * */ public void setReliableMessaging(ReliableMessaging value) { this.reliableMessaging = value; } /** * Gets the value of the persistDuration property. * * @return * possible object is * {@link Duration } * */ public Duration getPersistDuration() { return persistDuration; } /** * Sets the value of the persistDuration property. * * @param value * allowed object is * {@link Duration } * */ public void setPersistDuration(Duration value) { this.persistDuration = value; } /** * Gets the value of the senderNonRepudiation property. * * @return * possible object is * {@link SenderNonRepudiation } * */ public SenderNonRepudiation getSenderNonRepudiation() { return senderNonRepudiation; } /** * Sets the value of the senderNonRepudiation property. * * @param value * allowed object is * {@link SenderNonRepudiation } * */ public void setSenderNonRepudiation(SenderNonRepudiation value) { this.senderNonRepudiation = value; } /** * Gets the value of the senderDigitalEnvelope property. * * @return * possible object is * {@link SenderDigitalEnvelope } * */ public SenderDigitalEnvelope getSenderDigitalEnvelope() { return senderDigitalEnvelope; } /** * Sets the value of the senderDigitalEnvelope property. * * @param value * allowed object is * {@link SenderDigitalEnvelope } * */ public void setSenderDigitalEnvelope(SenderDigitalEnvelope value) { this.senderDigitalEnvelope = value; } /** * Gets the value of the namespaceSupported 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 namespaceSupported property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNamespaceSupported().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link NamespaceSupported } * * */ public List<NamespaceSupported> getNamespaceSupported() { if (namespaceSupported == null) { namespaceSupported = new ArrayList<NamespaceSupported>(); } return this.namespaceSupported; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }