package at.gv.util.xsd.saml.protocol; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.saml.assertion.SubjectType; /** *

Java class for SubjectQueryAbstractType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SubjectQueryAbstractType">
 *   <complexContent>
 *     <extension base="{urn:oasis:names:tc:SAML:1.0:protocol}QueryAbstractType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}Subject"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubjectQueryAbstractType", propOrder = { "subject" }) @XmlSeeAlso({ AuthorizationDecisionQueryType.class, AuthenticationQueryType.class, AttributeQueryType.class }) public abstract class SubjectQueryAbstractType extends QueryAbstractType { @XmlElement(name = "Subject", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", required = true) protected SubjectType subject; /** * Gets the value of the subject property. * * @return * possible object is * {@link SubjectType } * */ public SubjectType getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link SubjectType } * */ public void setSubject(SubjectType value) { this.subject = value; } }