| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| UseKeyType | 
 | 
 | 1.0;1 | 
| 1 | ||
| 2 |  package org.kuali.student.security.trust.dto; | |
| 3 | ||
| 4 |  import javax.xml.bind.annotation.XmlAccessType; | |
| 5 |  import javax.xml.bind.annotation.XmlAccessorType; | |
| 6 |  import javax.xml.bind.annotation.XmlAnyElement; | |
| 7 |  import javax.xml.bind.annotation.XmlAttribute; | |
| 8 |  import javax.xml.bind.annotation.XmlSchemaType; | |
| 9 |  import javax.xml.bind.annotation.XmlType; | |
| 10 |  import org.w3c.dom.Element; | |
| 11 | ||
| 12 | ||
| 13 |  /** | |
| 14 |   * <p>Java class for UseKeyType complex type. | |
| 15 |   *  | |
| 16 |   * <p>The following schema fragment specifies the expected content contained within this class. | |
| 17 |   *  | |
| 18 |   * <pre> | |
| 19 |   * <complexType name="UseKeyType"> | |
| 20 |   *   <complexContent> | |
| 21 |   *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 22 |   *       <sequence> | |
| 23 |   *         <any processContents='lax' minOccurs="0"/> | |
| 24 |   *       </sequence> | |
| 25 |   *       <attribute name="Sig" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> | |
| 26 |   *     </restriction> | |
| 27 |   *   </complexContent> | |
| 28 |   * </complexType> | |
| 29 |   * </pre> | |
| 30 |   *  | |
| 31 |   *  | |
| 32 |   */ | |
| 33 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 34 |  @XmlType(name = "UseKeyType", propOrder = { | |
| 35 |      "any" | |
| 36 | }) | |
| 37 | 0 |  public class UseKeyType { | 
| 38 | ||
| 39 |      @XmlAnyElement(lax = true) | |
| 40 |      protected Object any; | |
| 41 |      @XmlAttribute(name = "Sig") | |
| 42 |      @XmlSchemaType(name = "anyURI") | |
| 43 |      protected String sig; | |
| 44 | ||
| 45 |      /** | |
| 46 |       * Gets the value of the any property. | |
| 47 |       *  | |
| 48 |       * @return | |
| 49 |       *     possible object is | |
| 50 |       *     {@link Object } | |
| 51 |       *     {@link Element } | |
| 52 |       *      | |
| 53 |       */ | |
| 54 |      public Object getAny() { | |
| 55 | 0 |          return any; | 
| 56 | } | |
| 57 | ||
| 58 |      /** | |
| 59 |       * Sets the value of the any property. | |
| 60 |       *  | |
| 61 |       * @param value | |
| 62 |       *     allowed object is | |
| 63 |       *     {@link Object } | |
| 64 |       *     {@link Element } | |
| 65 |       *      | |
| 66 |       */ | |
| 67 | public void setAny(Object value) { | |
| 68 | 0 |          this.any = value; | 
| 69 | 0 |      } | 
| 70 | ||
| 71 |      /** | |
| 72 |       * Gets the value of the sig property. | |
| 73 |       *  | |
| 74 |       * @return | |
| 75 |       *     possible object is | |
| 76 |       *     {@link String } | |
| 77 |       *      | |
| 78 |       */ | |
| 79 |      public String getSig() { | |
| 80 | 0 |          return sig; | 
| 81 | } | |
| 82 | ||
| 83 |      /** | |
| 84 |       * Sets the value of the sig property. | |
| 85 |       *  | |
| 86 |       * @param value | |
| 87 |       *     allowed object is | |
| 88 |       *     {@link String } | |
| 89 |       *      | |
| 90 |       */ | |
| 91 | public void setSig(String value) { | |
| 92 | 0 |          this.sig = value; | 
| 93 | 0 |      } | 
| 94 | ||
| 95 | } |