// // 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.math.BigInteger; 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.XmlIDREF; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; 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}SignatureTransforms" minOccurs="0"/> * <element ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}EncryptionTransforms" minOccurs="0"/> * </sequence> * <attribute ref="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}idref use="required""/> * <attribute name="excludedFromSignature" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * <attribute name="minOccurs" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * <attribute name="maxOccurs" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "signatureTransforms", "encryptionTransforms" }) @XmlRootElement(name = "Constituent") public class Constituent { @XmlElement(name = "SignatureTransforms") protected SignatureTransforms signatureTransforms; @XmlElement(name = "EncryptionTransforms") protected EncryptionTransforms encryptionTransforms; @XmlAttribute(name = "idref", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd", required = true) @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object idref; @XmlAttribute(name = "excludedFromSignature", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") protected Boolean excludedFromSignature; @XmlAttribute(name = "minOccurs", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger minOccurs; @XmlAttribute(name = "maxOccurs", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger maxOccurs; /** * Gets the value of the signatureTransforms property. * * @return * possible object is * {@link SignatureTransforms } * */ public SignatureTransforms getSignatureTransforms() { return signatureTransforms; } /** * Sets the value of the signatureTransforms property. * * @param value * allowed object is * {@link SignatureTransforms } * */ public void setSignatureTransforms(SignatureTransforms value) { this.signatureTransforms = value; } /** * Gets the value of the encryptionTransforms property. * * @return * possible object is * {@link EncryptionTransforms } * */ public EncryptionTransforms getEncryptionTransforms() { return encryptionTransforms; } /** * Sets the value of the encryptionTransforms property. * * @param value * allowed object is * {@link EncryptionTransforms } * */ public void setEncryptionTransforms(EncryptionTransforms value) { this.encryptionTransforms = value; } /** * Gets the value of the idref property. * * @return * possible object is * {@link Object } * */ public Object getIdref() { return idref; } /** * Sets the value of the idref property. * * @param value * allowed object is * {@link Object } * */ public void setIdref(Object value) { this.idref = value; } /** * Gets the value of the excludedFromSignature property. * * @return * possible object is * {@link Boolean } * */ public boolean isExcludedFromSignature() { if (excludedFromSignature == null) { return false; } else { return excludedFromSignature; } } /** * Sets the value of the excludedFromSignature property. * * @param value * allowed object is * {@link Boolean } * */ public void setExcludedFromSignature(Boolean value) { this.excludedFromSignature = value; } /** * Gets the value of the minOccurs property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMinOccurs() { return minOccurs; } /** * Sets the value of the minOccurs property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMinOccurs(BigInteger value) { this.minOccurs = value; } /** * Gets the value of the maxOccurs property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaxOccurs() { return maxOccurs; } /** * Sets the value of the maxOccurs property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaxOccurs(BigInteger value) { this.maxOccurs = value; } }