// // 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.05.03 at 05:21:27 PM BRT // package br.com.caelum.stella.nfe.xsd.recepcao; 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.XmlID; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for SignedInfoType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SignedInfoType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CanonicalizationMethod"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" fixed="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="SignatureMethod"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" fixed="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Reference" type="{http://www.w3.org/2000/09/xmldsig#}ReferenceType"/> * </sequence> * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignedInfoType", namespace = "http://www.w3.org/2000/09/xmldsig#", propOrder = { "canonicalizationMethod", "signatureMethod", "reference" }) public class SignedInfoType { @XmlElement(name = "CanonicalizationMethod", required = true) protected SignedInfoType.CanonicalizationMethod canonicalizationMethod; @XmlElement(name = "SignatureMethod", required = true) protected SignedInfoType.SignatureMethod signatureMethod; @XmlElement(name = "Reference", required = true) protected ReferenceType reference; @XmlAttribute(name = "Id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the canonicalizationMethod property. * * @return * possible object is * {@link SignedInfoType.CanonicalizationMethod } * */ public SignedInfoType.CanonicalizationMethod getCanonicalizationMethod() { return canonicalizationMethod; } /** * Sets the value of the canonicalizationMethod property. * * @param value * allowed object is * {@link SignedInfoType.CanonicalizationMethod } * */ public void setCanonicalizationMethod(SignedInfoType.CanonicalizationMethod value) { this.canonicalizationMethod = value; } /** * Gets the value of the signatureMethod property. * * @return * possible object is * {@link SignedInfoType.SignatureMethod } * */ public SignedInfoType.SignatureMethod getSignatureMethod() { return signatureMethod; } /** * Sets the value of the signatureMethod property. * * @param value * allowed object is * {@link SignedInfoType.SignatureMethod } * */ public void setSignatureMethod(SignedInfoType.SignatureMethod value) { this.signatureMethod = value; } /** * Gets the value of the reference property. * * @return * possible object is * {@link ReferenceType } * */ public ReferenceType getReference() { return reference; } /** * Sets the value of the reference property. * * @param value * allowed object is * {@link ReferenceType } * */ public void setReference(ReferenceType value) { this.reference = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * <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"> * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" fixed="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class CanonicalizationMethod { @XmlAttribute(name = "Algorithm", required = true) @XmlSchemaType(name = "anyURI") protected String algorithm; /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { if (algorithm == null) { return "http://www.w3.org/TR/2001/REC-xml-c14n-20010315"; } else { return algorithm; } } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } } /** * <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"> * <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" fixed="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class SignatureMethod { @XmlAttribute(name = "Algorithm", required = true) @XmlSchemaType(name = "anyURI") protected String algorithm; /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { if (algorithm == null) { return "http://www.w3.org/2000/09/xmldsig#rsa-sha1"; } else { return algorithm; } } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } } }