KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > dsig > core > SPKIDataType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.dsig.core;
10
11 import java.util.ArrayList JavaDoc;
12 import java.util.List JavaDoc;
13 import javax.xml.bind.JAXBElement;
14 import javax.xml.bind.annotation.XmlAccessType;
15 import javax.xml.bind.annotation.XmlAccessorType;
16 import javax.xml.bind.annotation.XmlAnyElement;
17 import javax.xml.bind.annotation.XmlElementRef;
18 import javax.xml.bind.annotation.XmlType;
19 import com.sun.xml.dsig.core.SPKIDataType;
20 import org.w3c.dom.Element JavaDoc;
21
22
23 /**
24  * <p>Java class for SPKIDataType complex type.
25  *
26  * <p>The following schema fragment specifies the expected content contained within this class.
27  *
28  * <pre>
29  * &lt;complexType name="SPKIDataType">
30  * &lt;complexContent>
31  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32  * &lt;sequence maxOccurs="unbounded">
33  * &lt;element name="SPKISexp" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
34  * &lt;any/>
35  * &lt;/sequence>
36  * &lt;/restriction>
37  * &lt;/complexContent>
38  * &lt;/complexType>
39  * </pre>
40  *
41  *
42  */

43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "SPKIDataType", propOrder = {
45     "spkiSexpAndAny"
46 })
47 public class SPKIDataType {
48
49     @XmlElementRef(name = "SPKISexp", namespace = "http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class)
50     @XmlAnyElement(lax = true)
51     protected List JavaDoc<Object JavaDoc> spkiSexpAndAny;
52
53     /**
54      * Gets the value of the spkiSexpAndAny property.
55      *
56      * <p>
57      * This accessor method returns a reference to the live list,
58      * not a snapshot. Therefore any modification you make to the
59      * returned list will be present inside the JAXB object.
60      * This is why there is not a <CODE>set</CODE> method for the spkiSexpAndAny property.
61      *
62      * <p>
63      * For example, to add a new item, do as follows:
64      * <pre>
65      * getSPKISexpAndAny().add(newItem);
66      * </pre>
67      *
68      *
69      * <p>
70      * Objects of the following type(s) are allowed in the list
71      * {@link JAXBElement }{@code <}{@link byte[]}{@code >}
72      * {@link Element }
73      * {@link Object }
74      *
75      *
76      */

77     public List JavaDoc<Object JavaDoc> getSPKISexpAndAny() {
78         if (spkiSexpAndAny == null) {
79             spkiSexpAndAny = new ArrayList JavaDoc<Object JavaDoc>();
80         }
81         return this.spkiSexpAndAny;
82     }
83
84 }
85
Popular Tags