Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 695 | blopes | 1 | |
| 2 | package br.com.swconsultoria.nfe.schema.envEpec; |
||
| 3 | |||
| 4 | import javax.xml.bind.annotation.*; |
||
| 5 | import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; |
||
| 6 | import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
||
| 7 | |||
| 8 | |||
| 9 | /** |
||
| 10 | * <p>Classe Java de KeyInfoType complex type. |
||
| 11 | * |
||
| 12 | * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. |
||
| 13 | * |
||
| 14 | * <pre> |
||
| 15 | * <complexType name="KeyInfoType"> |
||
| 16 | * <complexContent> |
||
| 17 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
||
| 18 | * <sequence> |
||
| 19 | * <element name="X509Data" type="{http://www.w3.org/2000/09/xmldsig#}X509DataType"/> |
||
| 20 | * </sequence> |
||
| 21 | * <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> |
||
| 22 | * </restriction> |
||
| 23 | * </complexContent> |
||
| 24 | * </complexType> |
||
| 25 | * </pre> |
||
| 26 | * |
||
| 27 | * |
||
| 28 | */ |
||
| 29 | @XmlAccessorType(XmlAccessType.FIELD) |
||
| 30 | @XmlType(name = "KeyInfoType", namespace = "http://www.w3.org/2000/09/xmldsig#", propOrder = { |
||
| 31 | "x509Data" |
||
| 32 | }) |
||
| 33 | public class KeyInfoType { |
||
| 34 | |||
| 35 | @XmlElement(name = "X509Data", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true) |
||
| 36 | protected X509DataType x509Data; |
||
| 37 | @XmlAttribute(name = "Id") |
||
| 38 | @XmlJavaTypeAdapter(CollapsedStringAdapter.class) |
||
| 39 | @XmlID |
||
| 40 | @XmlSchemaType(name = "ID") |
||
| 41 | protected String id; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Obtém o valor da propriedade x509Data. |
||
| 45 | * |
||
| 46 | * @return |
||
| 47 | * possible object is |
||
| 48 | * {@link X509DataType } |
||
| 49 | * |
||
| 50 | */ |
||
| 51 | public X509DataType getX509Data() { |
||
| 52 | return x509Data; |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Define o valor da propriedade x509Data. |
||
| 57 | * |
||
| 58 | * @param value |
||
| 59 | * allowed object is |
||
| 60 | * {@link X509DataType } |
||
| 61 | * |
||
| 62 | */ |
||
| 63 | public void setX509Data(X509DataType value) { |
||
| 64 | this.x509Data = value; |
||
| 65 | } |
||
| 66 | |||
| 67 | /** |
||
| 68 | * Obtém o valor da propriedade id. |
||
| 69 | * |
||
| 70 | * @return |
||
| 71 | * possible object is |
||
| 72 | * {@link String } |
||
| 73 | * |
||
| 74 | */ |
||
| 75 | public String getId() { |
||
| 76 | return id; |
||
| 77 | } |
||
| 78 | |||
| 79 | /** |
||
| 80 | * Define o valor da propriedade id. |
||
| 81 | * |
||
| 82 | * @param value |
||
| 83 | * allowed object is |
||
| 84 | * {@link String } |
||
| 85 | * |
||
| 86 | */ |
||
| 87 | public void setId(String value) { |
||
| 88 | this.id = value; |
||
| 89 | } |
||
| 90 | |||
| 91 | } |