KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2000 > _09 > xmldsig_ > X509IssuerSerialType


1
2 package org.w3._2000._09.xmldsig_;
3
4 import java.math.BigInteger JavaDoc;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for X509IssuerSerialType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="X509IssuerSerialType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
22  * &lt;element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/>
23  * &lt;/sequence>
24  * &lt;/restriction>
25  * &lt;/complexContent>
26  * &lt;/complexType>
27  * </pre>
28  *
29  *
30  */

31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "X509IssuerSerialType", propOrder = {
33     "x509IssuerName",
34     "x509SerialNumber"
35 })
36 public class X509IssuerSerialType {
37
38     @XmlElement(name = "X509IssuerName", required = true)
39     protected String JavaDoc x509IssuerName;
40     @XmlElement(name = "X509SerialNumber", required = true)
41     protected BigInteger JavaDoc x509SerialNumber;
42
43     /**
44      * Gets the value of the x509IssuerName property.
45      *
46      * @return
47      * possible object is
48      * {@link String }
49      *
50      */

51     public String JavaDoc getX509IssuerName() {
52         return x509IssuerName;
53     }
54
55     /**
56      * Sets the value of the x509IssuerName property.
57      *
58      * @param value
59      * allowed object is
60      * {@link String }
61      *
62      */

63     public void setX509IssuerName(String JavaDoc value) {
64         this.x509IssuerName = value;
65     }
66
67     /**
68      * Gets the value of the x509SerialNumber property.
69      *
70      * @return
71      * possible object is
72      * {@link BigInteger }
73      *
74      */

75     public BigInteger JavaDoc getX509SerialNumber() {
76         return x509SerialNumber;
77     }
78
79     /**
80      * Sets the value of the x509SerialNumber property.
81      *
82      * @param value
83      * allowed object is
84      * {@link BigInteger }
85      *
86      */

87     public void setX509SerialNumber(BigInteger JavaDoc value) {
88         this.x509SerialNumber = value;
89     }
90
91 }
92
Popular Tags