| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RetryAfterType | 
 | 
 | 1.0;1 | 
| 1 | ||
| 2 |  package org.kuali.student.security.addressing.dto; | |
| 3 | ||
| 4 |  import java.math.BigInteger; | |
| 5 |  import java.util.HashMap; | |
| 6 |  import java.util.Map; | |
| 7 |  import javax.xml.bind.annotation.XmlAccessType; | |
| 8 |  import javax.xml.bind.annotation.XmlAccessorType; | |
| 9 |  import javax.xml.bind.annotation.XmlAnyAttribute; | |
| 10 |  import javax.xml.bind.annotation.XmlSchemaType; | |
| 11 |  import javax.xml.bind.annotation.XmlType; | |
| 12 |  import javax.xml.bind.annotation.XmlValue; | |
| 13 |  import javax.xml.namespace.QName; | |
| 14 | ||
| 15 | ||
| 16 |  /** | |
| 17 |   * <p>Java class for RetryAfterType complex type. | |
| 18 |   *  | |
| 19 |   * <p>The following schema fragment specifies the expected content contained within this class. | |
| 20 |   *  | |
| 21 |   * <pre> | |
| 22 |   * <complexType name="RetryAfterType"> | |
| 23 |   *   <simpleContent> | |
| 24 |   *     <extension base="<http://www.w3.org/2001/XMLSchema>nonNegativeInteger"> | |
| 25 |   *       <anyAttribute namespace='##other'/> | |
| 26 |   *     </extension> | |
| 27 |   *   </simpleContent> | |
| 28 |   * </complexType> | |
| 29 |   * </pre> | |
| 30 |   *  | |
| 31 |   *  | |
| 32 |   */ | |
| 33 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 34 |  @XmlType(name = "RetryAfterType", propOrder = { | |
| 35 |      "value" | |
| 36 | }) | |
| 37 | 0 |  public class RetryAfterType { | 
| 38 | ||
| 39 | @XmlValue | |
| 40 |      @XmlSchemaType(name = "nonNegativeInteger") | |
| 41 |      protected BigInteger value; | |
| 42 | 0 |      @XmlAnyAttribute | 
| 43 | private Map<QName, String> otherAttributes = new HashMap<QName, String>(); | |
| 44 | ||
| 45 |      /** | |
| 46 |       * Gets the value of the value property. | |
| 47 |       *  | |
| 48 |       * @return | |
| 49 |       *     possible object is | |
| 50 |       *     {@link BigInteger } | |
| 51 |       *      | |
| 52 |       */ | |
| 53 |      public BigInteger getValue() { | |
| 54 | 0 |          return value; | 
| 55 | } | |
| 56 | ||
| 57 |      /** | |
| 58 |       * Sets the value of the value property. | |
| 59 |       *  | |
| 60 |       * @param value | |
| 61 |       *     allowed object is | |
| 62 |       *     {@link BigInteger } | |
| 63 |       *      | |
| 64 |       */ | |
| 65 | public void setValue(BigInteger value) { | |
| 66 | 0 |          this.value = value; | 
| 67 | 0 |      } | 
| 68 | ||
| 69 |      /** | |
| 70 |       * Gets a map that contains attributes that aren't bound to any typed property on this class. | |
| 71 |       *  | |
| 72 |       * <p> | |
| 73 |       * the map is keyed by the name of the attribute and  | |
| 74 |       * the value is the string value of the attribute. | |
| 75 |       *  | |
| 76 |       * the map returned by this method is live, and you can add new attribute | |
| 77 |       * by updating the map directly. Because of this design, there's no setter. | |
| 78 |       *  | |
| 79 |       *  | |
| 80 |       * @return | |
| 81 |       *     always non-null | |
| 82 |       */ | |
| 83 |      public Map<QName, String> getOtherAttributes() { | |
| 84 | 0 |          return otherAttributes; | 
| 85 | } | |
| 86 | ||
| 87 | } |