Class PersonNameImpl
- java.lang.Object
-
- com.sun.xml.registry.uddi.infomodel.PersonNameImpl
-
- All Implemented Interfaces:
Serializable,PersonName
public class PersonNameImpl extends Object implements PersonName, Serializable
Implementation of PersonName interface- Author:
- Bobby Bissett
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PersonNameImpl()Default constructorPersonNameImpl(String fullName)Utility constructor given the person's name
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFirstName()Level 1 methodStringgetFullName()The fully formatted name for this Person.StringgetLastName()Level 1 methodStringgetMiddleName()Level 1 methodvoidsetFirstName(String firstName)Level 1 methodvoidsetFullName(String fullName)Sets the fully formatted name for this Person.voidsetLastName(String lastName)Level 1 methodvoidsetMiddleName(String middleName)Level 1 method
-
-
-
Constructor Detail
-
PersonNameImpl
public PersonNameImpl()
Default constructor
-
PersonNameImpl
public PersonNameImpl(String fullName)
Utility constructor given the person's name
-
-
Method Detail
-
getFullName
public String getFullName() throws JAXRException
The fully formatted name for this Person.- Specified by:
getFullNamein interfacePersonName- Returns:
- the person's full name
- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
setFullName
public void setFullName(String fullName) throws JAXRException
Sets the fully formatted name for this Person.- Specified by:
setFullNamein interfacePersonName- Parameters:
fullName- the person's full name- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
getFirstName
public String getFirstName() throws JAXRException
Level 1 method- Specified by:
getFirstNamein interfacePersonName- Returns:
- the person's first name
- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
getLastName
public String getLastName() throws JAXRException
Level 1 method- Specified by:
getLastNamein interfacePersonName- Returns:
- the person's last name
- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
getMiddleName
public String getMiddleName() throws JAXRException
Level 1 method- Specified by:
getMiddleNamein interfacePersonName- Returns:
- the person's middle name
- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
setFirstName
public void setFirstName(String firstName) throws JAXRException
Level 1 method- Specified by:
setFirstNamein interfacePersonName- Parameters:
firstName- the person's first name- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
setLastName
public void setLastName(String lastName) throws JAXRException
Level 1 method- Specified by:
setLastNamein interfacePersonName- Parameters:
lastName- the person's last name- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
setMiddleName
public void setMiddleName(String middleName) throws JAXRException
Level 1 method- Specified by:
setMiddleNamein interfacePersonName- Parameters:
middleName- the person's middle name- Throws:
JAXRException- If the JAXR provider encounters an internal error
-
-