// // 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.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <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}ProcessSpecification"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}Role"/> * <element name="ApplicationCertificateRef" type="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}CertificateRef.type" maxOccurs="unbounded" minOccurs="0"/> * <element name="ApplicationSecurityDetailsRef" type="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}SecurityDetailsRef.type" minOccurs="0"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}ServiceBinding"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "processSpecification", "role", "applicationCertificateRef", "applicationSecurityDetailsRef", "serviceBinding" }) @XmlRootElement(name = "CollaborationRole") public class CollaborationRole { @XmlElement(name = "ProcessSpecification", required = true) protected ProcessSpecification processSpecification; @XmlElement(name = "Role", required = true) protected Role role; @XmlElement(name = "ApplicationCertificateRef") protected List<CertificateRefType> applicationCertificateRef; @XmlElement(name = "ApplicationSecurityDetailsRef") protected SecurityDetailsRefType applicationSecurityDetailsRef; @XmlElement(name = "ServiceBinding", required = true) protected ServiceBinding serviceBinding; /** * Gets the value of the processSpecification property. * * @return * possible object is * {@link ProcessSpecification } * */ public ProcessSpecification getProcessSpecification() { return processSpecification; } /** * Sets the value of the processSpecification property. * * @param value * allowed object is * {@link ProcessSpecification } * */ public void setProcessSpecification(ProcessSpecification value) { this.processSpecification = value; } /** * Gets the value of the role property. * * @return * possible object is * {@link Role } * */ public Role getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is * {@link Role } * */ public void setRole(Role value) { this.role = value; } /** * Gets the value of the applicationCertificateRef 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 applicationCertificateRef property. * * <p> * For example, to add a new item, do as follows: * <pre> * getApplicationCertificateRef().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CertificateRefType } * * */ public List<CertificateRefType> getApplicationCertificateRef() { if (applicationCertificateRef == null) { applicationCertificateRef = new ArrayList<CertificateRefType>(); } return this.applicationCertificateRef; } /** * Gets the value of the applicationSecurityDetailsRef property. * * @return * possible object is * {@link SecurityDetailsRefType } * */ public SecurityDetailsRefType getApplicationSecurityDetailsRef() { return applicationSecurityDetailsRef; } /** * Sets the value of the applicationSecurityDetailsRef property. * * @param value * allowed object is * {@link SecurityDetailsRefType } * */ public void setApplicationSecurityDetailsRef(SecurityDetailsRefType value) { this.applicationSecurityDetailsRef = value; } /** * Gets the value of the serviceBinding property. * * @return * possible object is * {@link ServiceBinding } * */ public ServiceBinding getServiceBinding() { return serviceBinding; } /** * Sets the value of the serviceBinding property. * * @param value * allowed object is * {@link ServiceBinding } * */ public void setServiceBinding(ServiceBinding value) { this.serviceBinding = value; } }