| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ProofEncryptionType | 
 | 
 | 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.XmlType; | |
| 8 |  import org.w3c.dom.Element; | |
| 9 | ||
| 10 | ||
| 11 |  /** | |
| 12 |   * <p>Java class for ProofEncryptionType complex type. | |
| 13 |   *  | |
| 14 |   * <p>The following schema fragment specifies the expected content contained within this class. | |
| 15 |   *  | |
| 16 |   * <pre> | |
| 17 |   * <complexType name="ProofEncryptionType"> | |
| 18 |   *   <complexContent> | |
| 19 |   *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 20 |   *       <sequence> | |
| 21 |   *         <any processContents='lax'/> | |
| 22 |   *       </sequence> | |
| 23 |   *     </restriction> | |
| 24 |   *   </complexContent> | |
| 25 |   * </complexType> | |
| 26 |   * </pre> | |
| 27 |   *  | |
| 28 |   *  | |
| 29 |   */ | |
| 30 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 31 |  @XmlType(name = "ProofEncryptionType", propOrder = { | |
| 32 |      "any" | |
| 33 | }) | |
| 34 | 0 |  public class ProofEncryptionType { | 
| 35 | ||
| 36 |      @XmlAnyElement(lax = true) | |
| 37 |      protected Object any; | |
| 38 | ||
| 39 |      /** | |
| 40 |       * Gets the value of the any property. | |
| 41 |       *  | |
| 42 |       * @return | |
| 43 |       *     possible object is | |
| 44 |       *     {@link Object } | |
| 45 |       *     {@link Element } | |
| 46 |       *      | |
| 47 |       */ | |
| 48 |      public Object getAny() { | |
| 49 | 0 |          return any; | 
| 50 | } | |
| 51 | ||
| 52 |      /** | |
| 53 |       * Sets the value of the any property. | |
| 54 |       *  | |
| 55 |       * @param value | |
| 56 |       *     allowed object is | |
| 57 |       *     {@link Object } | |
| 58 |       *     {@link Element } | |
| 59 |       *      | |
| 60 |       */ | |
| 61 | public void setAny(Object value) { | |
| 62 | 0 |          this.any = value; | 
| 63 | 0 |      } | 
| 64 | ||
| 65 | } |