OrganizationType.java revision faaa489e1cc905efd364e01fe09111173c95db68
2715N/A//
2715N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
2715N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
2715N/A// Any modifications to this file will be lost upon recompilation of the source schema.
2715N/A// Generated on: 2012.06.11 at 10:33:54 AM PDT
2715N/A//
2715N/A
2715N/A
2715N/Apackage com.sun.identity.liberty.ws.meta.jaxb;
2715N/A
2715N/A
2715N/A/**
2715N/A * Java content class for organizationType complex type.
2715N/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 67)
2715N/A * <p>
2715N/A * <pre>
2715N/A * &lt;complexType name="organizationType">
2715N/A * &lt;complexContent>
2715N/A * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
2715N/A * &lt;sequence>
2715N/A * &lt;element name="OrganizationName" type="{urn:liberty:metadata:2003-08}organizationNameType" maxOccurs="unbounded"/>
2715N/A * &lt;element name="OrganizationDisplayName" type="{urn:liberty:metadata:2003-08}organizationDisplayNameType" maxOccurs="unbounded"/>
2715N/A * &lt;element name="OrganizationURL" type="{urn:liberty:metadata:2003-08}localizedURIType" maxOccurs="unbounded"/>
2715N/A * &lt;element ref="{urn:liberty:metadata:2003-08}Extension" minOccurs="0"/>
3231N/A * &lt;/sequence>
2715N/A * &lt;/restriction>
2715N/A * &lt;/complexContent>
2715N/A * &lt;/complexType>
2715N/A * </pre>
2715N/A *
2715N/A */
2715N/Apublic interface OrganizationType {
2715N/A
2715N/A
2715N/A /**
2715N/A * Gets the value of the extension property.
2715N/A *
2715N/A * @return
2715N/A * possible object is
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionElement}
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionType}
*/
com.sun.identity.liberty.ws.meta.jaxb.ExtensionType getExtension();
/**
* Sets the value of the extension property.
*
* @param value
* allowed object is
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionElement}
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionType}
*/
void setExtension(com.sun.identity.liberty.ws.meta.jaxb.ExtensionType value);
/**
* Gets the value of the OrganizationDisplayName property.
*
* <p>
* 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 <CODE>set</CODE> method for the OrganizationDisplayName property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getOrganizationDisplayName().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link com.sun.identity.liberty.ws.meta.jaxb.OrganizationDisplayNameType}
*
*/
java.util.List getOrganizationDisplayName();
/**
* Gets the value of the OrganizationURL property.
*
* <p>
* 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 <CODE>set</CODE> method for the OrganizationURL property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getOrganizationURL().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link com.sun.identity.liberty.ws.meta.jaxb.LocalizedURIType}
*
*/
java.util.List getOrganizationURL();
/**
* Gets the value of the OrganizationName property.
*
* <p>
* 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 <CODE>set</CODE> method for the OrganizationName property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getOrganizationName().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link com.sun.identity.liberty.ws.meta.jaxb.OrganizationNameType}
*
*/
java.util.List getOrganizationName();
}