This project has retired. For details please refer to its Attic page.
X509IssuerSerialType xref
View Javadoc
1   /*
2    * Copyright 2001-2008 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   */
17  
18  
19  package org.w3._2000._09.xmldsig_;
20  
21  import java.math.BigInteger;
22  import javax.xml.bind.annotation.XmlAccessType;
23  import javax.xml.bind.annotation.XmlAccessorType;
24  import javax.xml.bind.annotation.XmlElement;
25  import javax.xml.bind.annotation.XmlType;
26  
27  
28  /**
29   * <p>Java class for X509IssuerSerialType complex type.
30   * 
31   * <p>The following schema fragment specifies the expected content contained within this class.
32   * 
33   * <pre>
34   * &lt;complexType name="X509IssuerSerialType">
35   *   &lt;complexContent>
36   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
37   *       &lt;sequence>
38   *         &lt;element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
39   *         &lt;element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/>
40   *       &lt;/sequence>
41   *     &lt;/restriction>
42   *   &lt;/complexContent>
43   * &lt;/complexType>
44   * </pre>
45   * 
46   * 
47   */
48  @XmlAccessorType(XmlAccessType.FIELD)
49  @XmlType(name = "X509IssuerSerialType", propOrder = {
50      "x509IssuerName",
51      "x509SerialNumber"
52  })
53  public class X509IssuerSerialType {
54  
55      @XmlElement(name = "X509IssuerName", required = true)
56      protected String x509IssuerName;
57      @XmlElement(name = "X509SerialNumber", required = true)
58      protected BigInteger x509SerialNumber;
59  
60      /**
61       * Gets the value of the x509IssuerName property.
62       * 
63       * @return
64       *     possible object is
65       *     {@link String }
66       *     
67       */
68      public String getX509IssuerName() {
69          return x509IssuerName;
70      }
71  
72      /**
73       * Sets the value of the x509IssuerName property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link String }
78       *     
79       */
80      public void setX509IssuerName(String value) {
81          this.x509IssuerName = value;
82      }
83  
84      /**
85       * Gets the value of the x509SerialNumber property.
86       * 
87       * @return
88       *     possible object is
89       *     {@link BigInteger }
90       *     
91       */
92      public BigInteger getX509SerialNumber() {
93          return x509SerialNumber;
94      }
95  
96      /**
97       * Sets the value of the x509SerialNumber property.
98       * 
99       * @param value
100      *     allowed object is
101      *     {@link BigInteger }
102      *     
103      */
104     public void setX509SerialNumber(BigInteger value) {
105         this.x509SerialNumber = value;
106     }
107 
108 }