// // 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:34:07 AM PDT // package com.sun.identity.saml2.jaxb.entityconfig; /** * Java content class for EntityConfigType 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/saml2/entity-config-schema.xsd line 42) *

*

 * <complexType name="EntityConfigType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/>
 *         <element ref="{urn:sun:fm:SAML:2.0:entityconfig}Attribute" maxOccurs="unbounded" minOccurs="0"/>
 *         <choice>
 *           <choice maxOccurs="unbounded">
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}IDPSSOConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}SPSSOConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}AuthnAuthorityConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}AttributeAuthorityConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}AttributeQueryConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}PDPConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}XACMLPDPConfig"/>
 *             <element ref="{urn:sun:fm:SAML:2.0:entityconfig}XACMLAuthzDecisionQueryConfig"/>
 *           </choice>
 *           <element ref="{urn:sun:fm:SAML:2.0:entityconfig}AffiliationConfig"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *       <attribute name="entityID" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="hosted" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface EntityConfigType { /** * Gets the value of the hosted property. * */ boolean isHosted(); /** * Sets the value of the hosted property. * */ void setHosted(boolean value); /** * Gets the value of the affiliationConfig property. * * @return * possible object is * {@link com.sun.identity.saml2.jaxb.entityconfig.AffiliationConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.BaseConfigType} */ com.sun.identity.saml2.jaxb.entityconfig.BaseConfigType getAffiliationConfig(); /** * Sets the value of the affiliationConfig property. * * @param value * allowed object is * {@link com.sun.identity.saml2.jaxb.entityconfig.AffiliationConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.BaseConfigType} */ void setAffiliationConfig(com.sun.identity.saml2.jaxb.entityconfig.BaseConfigType 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 Attribute 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 Attribute property. * *

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

     *    getAttribute().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link com.sun.identity.saml2.jaxb.entityconfig.AttributeType} * {@link com.sun.identity.saml2.jaxb.entityconfig.AttributeElement} * */ java.util.List getAttribute(); /** * Gets the value of the IDPSSOConfigOrSPSSOConfigOrAuthnAuthorityConfig 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 IDPSSOConfigOrSPSSOConfigOrAuthnAuthorityConfig property. * *

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

     *    getIDPSSOConfigOrSPSSOConfigOrAuthnAuthorityConfig().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link com.sun.identity.saml2.jaxb.entityconfig.AttributeQueryConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.XACMLPDPConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.PDPConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.AuthnAuthorityConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.SPSSOConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.AttributeAuthorityConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.XACMLAuthzDecisionQueryConfigElement} * {@link com.sun.identity.saml2.jaxb.entityconfig.IDPSSOConfigElement} * */ java.util.List getIDPSSOConfigOrSPSSOConfigOrAuthnAuthorityConfig(); /** * Gets the value of the entityID property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getEntityID(); /** * Sets the value of the entityID property. * * @param value * allowed object is * {@link java.lang.String} */ void setEntityID(java.lang.String value); /** * Gets the value of the signature property. * * @return * possible object is * {@link com.sun.identity.saml2.jaxb.xmlsig.SignatureType} * {@link com.sun.identity.saml2.jaxb.xmlsig.SignatureElement} */ com.sun.identity.saml2.jaxb.xmlsig.SignatureType getSignature(); /** * Sets the value of the signature property. * * @param value * allowed object is * {@link com.sun.identity.saml2.jaxb.xmlsig.SignatureType} * {@link com.sun.identity.saml2.jaxb.xmlsig.SignatureElement} */ void setSignature(com.sun.identity.saml2.jaxb.xmlsig.SignatureType value); }