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

gov.hhs.fha.nhinc.common.nhinccommon.PersonNameType Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.11 at 11:39:13 AM EST 
//


package gov.hhs.fha.nhinc.common.nhinccommon;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for PersonNameType complex type. * *

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

 * <complexType name="PersonNameType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="familyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="nameType" type="{urn:gov:hhs:fha:nhinc:common:nhinccommon}CeType"/>
 *         <element name="secondNameOrInitials" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="suffix" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PersonNameType", propOrder = { "familyName", "givenName", "nameType", "secondNameOrInitials", "fullName", "prefix", "suffix" }) public class PersonNameType { @XmlElement(required = true) protected String familyName; @XmlElement(required = true) protected String givenName; @XmlElement(required = true) protected CeType nameType; @XmlElement(required = true) protected String secondNameOrInitials; @XmlElement(required = true) protected String fullName; @XmlElement(required = true) protected String prefix; @XmlElement(required = true) protected String suffix; /** * Gets the value of the familyName property. * * @return * possible object is * {@link String } * */ public String getFamilyName() { return familyName; } /** * Sets the value of the familyName property. * * @param value * allowed object is * {@link String } * */ public void setFamilyName(String value) { this.familyName = value; } /** * Gets the value of the givenName property. * * @return * possible object is * {@link String } * */ public String getGivenName() { return givenName; } /** * Sets the value of the givenName property. * * @param value * allowed object is * {@link String } * */ public void setGivenName(String value) { this.givenName = value; } /** * Gets the value of the nameType property. * * @return * possible object is * {@link CeType } * */ public CeType getNameType() { return nameType; } /** * Sets the value of the nameType property. * * @param value * allowed object is * {@link CeType } * */ public void setNameType(CeType value) { this.nameType = value; } /** * Gets the value of the secondNameOrInitials property. * * @return * possible object is * {@link String } * */ public String getSecondNameOrInitials() { return secondNameOrInitials; } /** * Sets the value of the secondNameOrInitials property. * * @param value * allowed object is * {@link String } * */ public void setSecondNameOrInitials(String value) { this.secondNameOrInitials = value; } /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = value; } /** * Gets the value of the prefix property. * * @return * possible object is * {@link String } * */ public String getPrefix() { return prefix; } /** * Sets the value of the prefix property. * * @param value * allowed object is * {@link String } * */ public void setPrefix(String value) { this.prefix = value; } /** * Gets the value of the suffix property. * * @return * possible object is * {@link String } * */ public String getSuffix() { return suffix; } /** * Sets the value of the suffix property. * * @param value * allowed object is * {@link String } * */ public void setSuffix(String value) { this.suffix = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy