| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| LifetimeType |
|
| 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.XmlElement; | |
| 7 | import javax.xml.bind.annotation.XmlType; | |
| 8 | import org.kuali.student.security.wssecurity.utility.dto.AttributedDateTime; | |
| 9 | ||
| 10 | ||
| 11 | /** | |
| 12 | * <p>Java class for LifetimeType complex type. | |
| 13 | * | |
| 14 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 15 | * | |
| 16 | * <pre> | |
| 17 | * <complexType name="LifetimeType"> | |
| 18 | * <complexContent> | |
| 19 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 20 | * <sequence> | |
| 21 | * <element ref="{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Created" minOccurs="0"/> | |
| 22 | * <element ref="{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Expires" minOccurs="0"/> | |
| 23 | * </sequence> | |
| 24 | * </restriction> | |
| 25 | * </complexContent> | |
| 26 | * </complexType> | |
| 27 | * </pre> | |
| 28 | * | |
| 29 | * | |
| 30 | */ | |
| 31 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 32 | @XmlType(name = "LifetimeType", propOrder = { | |
| 33 | "created", | |
| 34 | "expires" | |
| 35 | }) | |
| 36 | 0 | public class LifetimeType { |
| 37 | ||
| 38 | @XmlElement(name = "Created", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd") | |
| 39 | protected AttributedDateTime created; | |
| 40 | @XmlElement(name = "Expires", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd") | |
| 41 | protected AttributedDateTime expires; | |
| 42 | ||
| 43 | /** | |
| 44 | * Gets the value of the created property. | |
| 45 | * | |
| 46 | * @return | |
| 47 | * possible object is | |
| 48 | * {@link AttributedDateTime } | |
| 49 | * | |
| 50 | */ | |
| 51 | public AttributedDateTime getCreated() { | |
| 52 | 0 | return created; |
| 53 | } | |
| 54 | ||
| 55 | /** | |
| 56 | * Sets the value of the created property. | |
| 57 | * | |
| 58 | * @param value | |
| 59 | * allowed object is | |
| 60 | * {@link AttributedDateTime } | |
| 61 | * | |
| 62 | */ | |
| 63 | public void setCreated(AttributedDateTime value) { | |
| 64 | 0 | this.created = value; |
| 65 | 0 | } |
| 66 | ||
| 67 | /** | |
| 68 | * Gets the value of the expires property. | |
| 69 | * | |
| 70 | * @return | |
| 71 | * possible object is | |
| 72 | * {@link AttributedDateTime } | |
| 73 | * | |
| 74 | */ | |
| 75 | public AttributedDateTime getExpires() { | |
| 76 | 0 | return expires; |
| 77 | } | |
| 78 | ||
| 79 | /** | |
| 80 | * Sets the value of the expires property. | |
| 81 | * | |
| 82 | * @param value | |
| 83 | * allowed object is | |
| 84 | * {@link AttributedDateTime } | |
| 85 | * | |
| 86 | */ | |
| 87 | public void setExpires(AttributedDateTime value) { | |
| 88 | 0 | this.expires = value; |
| 89 | 0 | } |
| 90 | ||
| 91 | } |