// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.06.11 at 10:33:54 AM PDT // package com.sun.identity.liberty.ws.common.jaxb.protocol; /** * Java content class for RequestType complex type. *

The following schema fragment specifies the expected content contained within this java content object. (defined at file:/Users/allan/A-SVN/trunk/opensso/products/federation/library/xsd/liberty/cs-sstc-schema-protocol-01.xsd line 58) *

*

 * <complexType name="RequestType">
 *   <complexContent>
 *     <extension base="{urn:oasis:names:tc:SAML:1.0:protocol}RequestAbstractType">
 *       <choice>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}Query"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}SubjectQuery"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}AuthenticationQuery"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}AttributeQuery"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}AuthorizationDecisionQuery"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AssertionIDReference" maxOccurs="unbounded"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:protocol}AssertionArtifact" maxOccurs="unbounded"/>
 *       </choice>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface RequestType extends com.sun.identity.liberty.ws.common.jaxb.protocol.RequestAbstractType { /** * Gets the value of the authorizationDecisionQuery property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthorizationDecisionQueryElement} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthorizationDecisionQueryType} */ com.sun.identity.liberty.ws.common.jaxb.protocol.AuthorizationDecisionQueryType getAuthorizationDecisionQuery(); /** * Sets the value of the authorizationDecisionQuery property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthorizationDecisionQueryElement} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthorizationDecisionQueryType} */ void setAuthorizationDecisionQuery(com.sun.identity.liberty.ws.common.jaxb.protocol.AuthorizationDecisionQueryType value); /** * Gets the value of the AssertionIDReference property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the AssertionIDReference property. * *

* For example, to add a new item, do as follows: *

     *    getAssertionIDReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link java.lang.String} * */ java.util.List getAssertionIDReference(); /** * Gets the value of the AssertionArtifact property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the AssertionArtifact property. * *

* For example, to add a new item, do as follows: *

     *    getAssertionArtifact().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link java.lang.String} * */ java.util.List getAssertionArtifact(); /** * Gets the value of the query property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.QueryAbstractType} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement} */ com.sun.identity.liberty.ws.common.jaxb.protocol.QueryAbstractType getQuery(); /** * Sets the value of the query property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.QueryAbstractType} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.QueryElement} */ void setQuery(com.sun.identity.liberty.ws.common.jaxb.protocol.QueryAbstractType value); /** * Gets the value of the subjectQuery property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.SubjectQueryAbstractType} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.SubjectQueryElement} */ com.sun.identity.liberty.ws.common.jaxb.protocol.SubjectQueryAbstractType getSubjectQuery(); /** * Sets the value of the subjectQuery property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.SubjectQueryAbstractType} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.SubjectQueryElement} */ void setSubjectQuery(com.sun.identity.liberty.ws.common.jaxb.protocol.SubjectQueryAbstractType value); /** * Gets the value of the attributeQuery property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AttributeQueryElement} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AttributeQueryType} */ com.sun.identity.liberty.ws.common.jaxb.protocol.AttributeQueryType getAttributeQuery(); /** * Sets the value of the attributeQuery property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AttributeQueryElement} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AttributeQueryType} */ void setAttributeQuery(com.sun.identity.liberty.ws.common.jaxb.protocol.AttributeQueryType value); /** * Gets the value of the authenticationQuery property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthenticationQueryType} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthenticationQueryElement} */ com.sun.identity.liberty.ws.common.jaxb.protocol.AuthenticationQueryType getAuthenticationQuery(); /** * Sets the value of the authenticationQuery property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthenticationQueryType} * {@link com.sun.identity.liberty.ws.common.jaxb.protocol.AuthenticationQueryElement} */ void setAuthenticationQuery(com.sun.identity.liberty.ws.common.jaxb.protocol.AuthenticationQueryType value); }