OrganizationNameType.java revision dbcf55756e293292dfbfbb75fe317dd094b0585f
342N/A//
3120N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
342N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
342N/A// Any modifications to this file will be lost upon recompilation of the source schema.
342N/A// Generated on: 2012.06.11 at 10:33:54 AM PDT
342N/A//
342N/A
342N/A
342N/Apackage com.sun.identity.liberty.ws.meta.jaxb;
342N/A
342N/A
342N/A/**
342N/A * Java content class for organizationNameType complex type.
342N/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 75)
342N/A * <p>
342N/A * <pre>
342N/A * &lt;complexType name="organizationNameType">
342N/A * &lt;simpleContent>
1472N/A * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
1472N/A * &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
1472N/A * &lt;/extension>
342N/A * &lt;/simpleContent>
342N/A * &lt;/complexType>
342N/A * </pre>
1879N/A *
1879N/A */
1879N/Apublic interface OrganizationNameType {
2596N/A
1879N/A
1879N/A /**
1879N/A * Gets the value of the lang property.
1879N/A *
342N/A * @return
342N/A * possible object is
342N/A * {@link java.lang.String}
342N/A */
342N/A java.lang.String getLang();
342N/A
342N/A /**
342N/A * Sets the value of the lang property.
342N/A *
3120N/A * @param value
3120N/A * allowed object is
845N/A * {@link java.lang.String}
845N/A */
845N/A void setLang(java.lang.String value);
342N/A
342N/A /**
1625N/A * Gets the value of the value property.
1625N/A *
342N/A * @return
342N/A * possible object is
342N/A * {@link java.lang.String}
342N/A */
342N/A java.lang.String getValue();
342N/A
3120N/A /**
3120N/A * Sets the value of the value property.
845N/A *
845N/A * @param value
845N/A * allowed object is
845N/A * {@link java.lang.String}
845N/A */
342N/A void setValue(java.lang.String value);
845N/A
342N/A}
845N/A