| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| X509IssuerSerialType | 
 | 
 | 1.0;1 | 
| 1 | ||
| 2 |  package org.kuali.student.security.xmldsig.dto; | |
| 3 | ||
| 4 |  import java.math.BigInteger; | |
| 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 |   * <complexType name="X509IssuerSerialType"> | |
| 18 |   *   <complexContent> | |
| 19 |   *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 20 |   *       <sequence> | |
| 21 |   *         <element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/> | |
| 22 |   *         <element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/> | |
| 23 |   *       </sequence> | |
| 24 |   *     </restriction> | |
| 25 |   *   </complexContent> | |
| 26 |   * </complexType> | |
| 27 |   * </pre> | |
| 28 |   *  | |
| 29 |   *  | |
| 30 |   */ | |
| 31 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 32 |  @XmlType(name = "X509IssuerSerialType", propOrder = { | |
| 33 |      "x509IssuerName", | |
| 34 |      "x509SerialNumber" | |
| 35 | }) | |
| 36 | 0 |  public class X509IssuerSerialType { | 
| 37 | ||
| 38 | @XmlElement(name = "X509IssuerName", required = true) | |
| 39 |      protected String x509IssuerName; | |
| 40 | @XmlElement(name = "X509SerialNumber", required = true) | |
| 41 |      protected BigInteger 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 getX509IssuerName() { | |
| 52 | 0 |          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 value) { | |
| 64 | 0 |          this.x509IssuerName = value; | 
| 65 | 0 |      } | 
| 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 getX509SerialNumber() { | |
| 76 | 0 |          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 value) { | |
| 88 | 0 |          this.x509SerialNumber = value; | 
| 89 | 0 |      } | 
| 90 | ||
| 91 | } |