| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RenewingType |
|
| 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.XmlAttribute; | |
| 7 | import javax.xml.bind.annotation.XmlType; | |
| 8 | ||
| 9 | ||
| 10 | /** | |
| 11 | * <p>Java class for RenewingType complex type. | |
| 12 | * | |
| 13 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 14 | * | |
| 15 | * <pre> | |
| 16 | * <complexType name="RenewingType"> | |
| 17 | * <complexContent> | |
| 18 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 19 | * <attribute name="Allow" type="{http://www.w3.org/2001/XMLSchema}boolean" /> | |
| 20 | * <attribute name="OK" type="{http://www.w3.org/2001/XMLSchema}boolean" /> | |
| 21 | * </restriction> | |
| 22 | * </complexContent> | |
| 23 | * </complexType> | |
| 24 | * </pre> | |
| 25 | * | |
| 26 | * | |
| 27 | */ | |
| 28 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 29 | @XmlType(name = "RenewingType") | |
| 30 | 0 | public class RenewingType { |
| 31 | ||
| 32 | @XmlAttribute(name = "Allow") | |
| 33 | protected Boolean allow; | |
| 34 | @XmlAttribute(name = "OK") | |
| 35 | protected Boolean ok; | |
| 36 | ||
| 37 | /** | |
| 38 | * Gets the value of the allow property. | |
| 39 | * | |
| 40 | * @return | |
| 41 | * possible object is | |
| 42 | * {@link Boolean } | |
| 43 | * | |
| 44 | */ | |
| 45 | public Boolean isAllow() { | |
| 46 | 0 | return allow; |
| 47 | } | |
| 48 | ||
| 49 | /** | |
| 50 | * Sets the value of the allow property. | |
| 51 | * | |
| 52 | * @param value | |
| 53 | * allowed object is | |
| 54 | * {@link Boolean } | |
| 55 | * | |
| 56 | */ | |
| 57 | public void setAllow(Boolean value) { | |
| 58 | 0 | this.allow = value; |
| 59 | 0 | } |
| 60 | ||
| 61 | /** | |
| 62 | * Gets the value of the ok property. | |
| 63 | * | |
| 64 | * @return | |
| 65 | * possible object is | |
| 66 | * {@link Boolean } | |
| 67 | * | |
| 68 | */ | |
| 69 | public Boolean isOK() { | |
| 70 | 0 | return ok; |
| 71 | } | |
| 72 | ||
| 73 | /** | |
| 74 | * Sets the value of the ok property. | |
| 75 | * | |
| 76 | * @param value | |
| 77 | * allowed object is | |
| 78 | * {@link Boolean } | |
| 79 | * | |
| 80 | */ | |
| 81 | public void setOK(Boolean value) { | |
| 82 | 0 | this.ok = value; |
| 83 | 0 | } |
| 84 | ||
| 85 | } |