| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RequestedReferenceType |
|
| 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.secext.dto.SecurityTokenReferenceType; | |
| 9 | ||
| 10 | ||
| 11 | /** | |
| 12 | * <p>Java class for RequestedReferenceType complex type. | |
| 13 | * | |
| 14 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 15 | * | |
| 16 | * <pre> | |
| 17 | * <complexType name="RequestedReferenceType"> | |
| 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-secext-1.0.xsd}SecurityTokenReference"/> | |
| 22 | * </sequence> | |
| 23 | * </restriction> | |
| 24 | * </complexContent> | |
| 25 | * </complexType> | |
| 26 | * </pre> | |
| 27 | * | |
| 28 | * | |
| 29 | */ | |
| 30 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 31 | @XmlType(name = "RequestedReferenceType", propOrder = { | |
| 32 | "securityTokenReference" | |
| 33 | }) | |
| 34 | 0 | public class RequestedReferenceType { |
| 35 | ||
| 36 | @XmlElement(name = "SecurityTokenReference", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", required = true) | |
| 37 | protected SecurityTokenReferenceType securityTokenReference; | |
| 38 | ||
| 39 | /** | |
| 40 | * Gets the value of the securityTokenReference property. | |
| 41 | * | |
| 42 | * @return | |
| 43 | * possible object is | |
| 44 | * {@link SecurityTokenReferenceType } | |
| 45 | * | |
| 46 | */ | |
| 47 | public SecurityTokenReferenceType getSecurityTokenReference() { | |
| 48 | 0 | return securityTokenReference; |
| 49 | } | |
| 50 | ||
| 51 | /** | |
| 52 | * Sets the value of the securityTokenReference property. | |
| 53 | * | |
| 54 | * @param value | |
| 55 | * allowed object is | |
| 56 | * {@link SecurityTokenReferenceType } | |
| 57 | * | |
| 58 | */ | |
| 59 | public void setSecurityTokenReference(SecurityTokenReferenceType value) { | |
| 60 | 0 | this.securityTokenReference = value; |
| 61 | 0 | } |
| 62 | ||
| 63 | } |