KickJava   Java API By Example, From Geeks To Geeks.

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


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.math.BigInteger JavaDoc;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16 import com.sun.xml.dsig.core.X509IssuerSerialType;
17
18
19 /**
20  * <p>Java class for X509IssuerSerialType complex type.
21  *
22  * <p>The following schema fragment specifies the expected content contained within this class.
23  *
24  * <pre>
25  * &lt;complexType name="X509IssuerSerialType">
26  * &lt;complexContent>
27  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  * &lt;sequence>
29  * &lt;element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
30  * &lt;element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/>
31  * &lt;/sequence>
32  * &lt;/restriction>
33  * &lt;/complexContent>
34  * &lt;/complexType>
35  * </pre>
36  *
37  *
38  */

39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "X509IssuerSerialType", propOrder = {
41     "x509IssuerName",
42     "x509SerialNumber"
43 })
44 public class X509IssuerSerialType {
45
46     @XmlElement(name = "X509IssuerName", namespace = "http://www.w3.org/2000/09/xmldsig#")
47     protected String JavaDoc x509IssuerName;
48     @XmlElement(name = "X509SerialNumber", namespace = "http://www.w3.org/2000/09/xmldsig#")
49     protected BigInteger JavaDoc x509SerialNumber;
50
51     /**
52      * Gets the value of the x509IssuerName property.
53      *
54      * @return
55      * possible object is
56      * {@link String }
57      *
58      */

59     public String JavaDoc getX509IssuerName() {
60         return x509IssuerName;
61     }
62
63     /**
64      * Sets the value of the x509IssuerName property.
65      *
66      * @param value
67      * allowed object is
68      * {@link String }
69      *
70      */

71     public void setX509IssuerName(String JavaDoc value) {
72         this.x509IssuerName = value;
73     }
74
75     /**
76      * Gets the value of the x509SerialNumber property.
77      *
78      * @return
79      * possible object is
80      * {@link BigInteger }
81      *
82      */

83     public BigInteger JavaDoc getX509SerialNumber() {
84         return x509SerialNumber;
85     }
86
87     /**
88      * Sets the value of the x509SerialNumber property.
89      *
90      * @param value
91      * allowed object is
92      * {@link BigInteger }
93      *
94      */

95     public void setX509SerialNumber(BigInteger JavaDoc value) {
96         this.x509SerialNumber = value;
97     }
98
99 }
100
Popular Tags