All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.uddi.api_v3.PersonName Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version

package org.uddi.api_v3;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for personName complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="personName">
 *   <simpleContent>
 *     <extension base="<urn:uddi-org:api_v3>validationTypeString255">
 *       <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "personName", propOrder = { "value" }) public class PersonName { @XmlValue protected String value; @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace") protected String lang; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy