// // 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.meta.jaxb; /** * Java content class for contactType 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-metadata.xsd line 96) *

*

 * <complexType name="contactType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="GivenName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="SurName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="EmailAddress" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="TelephoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:liberty:metadata:2003-08}Extension" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="contactType" use="required" type="{urn:liberty:metadata:2003-08}attr.contactType" />
 *       <attribute name="libertyPrincipalIdentifier" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface ContactType { /** * Gets the value of the extension property. * * @return * 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 surName property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getSurName(); /** * Sets the value of the surName property. * * @param value * allowed object is * {@link java.lang.String} */ void setSurName(java.lang.String value); /** * Gets the value of the givenName property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getGivenName(); /** * Sets the value of the givenName property. * * @param value * allowed object is * {@link java.lang.String} */ void setGivenName(java.lang.String value); /** * Gets the value of the TelephoneNumber 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 TelephoneNumber property. * *

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

     *    getTelephoneNumber().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link java.lang.String} * */ java.util.List getTelephoneNumber(); /** * Gets the value of the EmailAddress 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 EmailAddress property. * *

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

     *    getEmailAddress().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link java.lang.String} * */ java.util.List getEmailAddress(); /** * Gets the value of the libertyPrincipalIdentifier property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getLibertyPrincipalIdentifier(); /** * Sets the value of the libertyPrincipalIdentifier property. * * @param value * allowed object is * {@link java.lang.String} */ void setLibertyPrincipalIdentifier(java.lang.String value); /** * Gets the value of the company property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getCompany(); /** * Sets the value of the company property. * * @param value * allowed object is * {@link java.lang.String} */ void setCompany(java.lang.String value); /** * Gets the value of the contactType property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getContactType(); /** * Sets the value of the contactType property. * * @param value * allowed object is * {@link java.lang.String} */ void setContactType(java.lang.String value); }