SPDescriptorType.java revision dbcf55756e293292dfbfbb75fe317dd094b0585f
1N/A//
1N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
1N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
1N/A// Any modifications to this file will be lost upon recompilation of the source schema.
1N/A// Generated on: 2012.06.11 at 10:33:54 AM PDT
1N/A//
1N/A
1N/A
1N/Apackage com.sun.identity.liberty.ws.meta.jaxb;
1N/A
1N/A
1N/A/**
1N/A * Java content class for SPDescriptorType complex type.
1N/A * <p>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-metadata.xsd line 184)
1N/A * <p>
1N/A * <pre>
1N/A * &lt;complexType name="SPDescriptorType">
1N/A * &lt;complexContent>
1N/A * &lt;extension base="{urn:liberty:metadata:2003-08}providerDescriptorType">
1N/A * &lt;sequence>
1N/A * &lt;element name="AssertionConsumerServiceURL" maxOccurs="unbounded">
1N/A * &lt;complexType>
1N/A * &lt;simpleContent>
1N/A * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>anyURI">
1N/A * &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
1N/A * &lt;attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
1N/A * &lt;/extension>
1N/A * &lt;/simpleContent>
1N/A * &lt;/complexType>
1N/A * &lt;/element>
1N/A * &lt;element name="AuthnRequestsSigned" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
1N/A * &lt;/sequence>
1N/A * &lt;/extension>
1N/A * &lt;/complexContent>
1N/A * &lt;/complexType>
1N/A * </pre>
1N/A *
1N/A */
1N/Apublic interface SPDescriptorType
1N/A extends com.sun.identity.liberty.ws.meta.jaxb.ProviderDescriptorType
1N/A{
1N/A
1N/A
1N/A /**
1N/A * Gets the value of the authnRequestsSigned property.
1N/A *
1N/A */
1N/A boolean isAuthnRequestsSigned();
1N/A
1N/A /**
1N/A * Sets the value of the authnRequestsSigned property.
1N/A *
1N/A */
1N/A void setAuthnRequestsSigned(boolean value);
1N/A
1N/A /**
1N/A * Gets the value of the AssertionConsumerServiceURL property.
1N/A *
1N/A * <p>
1N/A * This accessor method returns a reference to the live list,
1N/A * not a snapshot. Therefore any modification you make to the
1N/A * returned list will be present inside the JAXB object.
1N/A * This is why there is not a <CODE>set</CODE> method for the AssertionConsumerServiceURL property.
1N/A *
1N/A * <p>
1N/A * For example, to add a new item, do as follows:
1N/A * <pre>
1N/A * getAssertionConsumerServiceURL().add(newItem);
1N/A * </pre>
1N/A *
1N/A *
1N/A * <p>
1N/A * Objects of the following type(s) are allowed in the list
1N/A * {@link com.sun.identity.liberty.ws.meta.jaxb.SPDescriptorType.AssertionConsumerServiceURLType}
1N/A *
1N/A */
1N/A java.util.List getAssertionConsumerServiceURL();
1N/A
1N/A
1N/A /**
1N/A * Java content class for anonymous complex type.
1N/A * <p>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-metadata.xsd line 189)
1N/A * <p>
1N/A * <pre>
1N/A * &lt;complexType>
1N/A * &lt;simpleContent>
1N/A * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>anyURI">
1N/A * &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
1N/A * &lt;attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
1N/A * &lt;/extension>
1N/A * &lt;/simpleContent>
1N/A * &lt;/complexType>
1N/A * </pre>
1N/A *
*/
public interface AssertionConsumerServiceURLType {
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getValue();
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setValue(java.lang.String value);
/**
* Gets the value of the isDefault property.
*
*/
boolean isIsDefault();
/**
* Sets the value of the isDefault property.
*
*/
void setIsDefault(boolean 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);
}
}