// // 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.interaction.jaxb; /** * Java content class for InquiryType 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/lib-arch-interact-svc.xsd line 87) *

*

 * <complexType name="InquiryType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:liberty:is:2003-08}Help" minOccurs="0"/>
 *         <choice maxOccurs="unbounded">
 *           <element ref="{urn:liberty:is:2003-08}Select" maxOccurs="unbounded" minOccurs="0"/>
 *           <element name="Confirm" type="{urn:liberty:is:2003-08}InquiryElementType" maxOccurs="unbounded" minOccurs="0"/>
 *           <element ref="{urn:liberty:is:2003-08}Text" maxOccurs="unbounded" minOccurs="0"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *       <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface InquiryType { /** * Gets the value of the SelectOrConfirmOrText 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 SelectOrConfirmOrText property. * *

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

     *    getSelectOrConfirmOrText().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link com.sun.identity.liberty.ws.interaction.jaxb.InquiryType.Confirm} * {@link com.sun.identity.liberty.ws.interaction.jaxb.TextElement} * {@link com.sun.identity.liberty.ws.interaction.jaxb.SelectElement} * */ java.util.List getSelectOrConfirmOrText(); /** * Gets the value of the help property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.interaction.jaxb.HelpElement} * {@link com.sun.identity.liberty.ws.interaction.jaxb.HelpType} */ com.sun.identity.liberty.ws.interaction.jaxb.HelpType getHelp(); /** * Sets the value of the help property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.interaction.jaxb.HelpElement} * {@link com.sun.identity.liberty.ws.interaction.jaxb.HelpType} */ void setHelp(com.sun.identity.liberty.ws.interaction.jaxb.HelpType value); /** * Gets the value of the id property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getId(); /** * Sets the value of the id property. * * @param value * allowed object is * {@link java.lang.String} */ void setId(java.lang.String value); /** * Gets the value of the title property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getTitle(); /** * Sets the value of the title property. * * @param value * allowed object is * {@link java.lang.String} */ void setTitle(java.lang.String value); /** * Java content class for Confirm element declaration. *

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/lib-arch-interact-svc.xsd line 92) *

*

     * <element name="Confirm" type="{urn:liberty:is:2003-08}InquiryElementType"/>
     * 
* */ public interface Confirm extends javax.xml.bind.Element, com.sun.identity.liberty.ws.interaction.jaxb.InquiryElementType { } }