com.softwareag.centrasite.appl.framework.beans.standard
Interface PersonName

All Known Implementing Classes:
PersonNameImpl

public interface PersonName


Method Summary
 java.lang.String getFirstName()
          Gets the first name for this Person.
 java.lang.String getFullName()
          Gets the fully formatted name for this person.
 java.lang.String getLastName()
          Gets the last name (surname) for this Person.
 java.lang.String getMiddleName()
          Gets the middle name for this Person.
 void setFirstName(java.lang.String firstName)
          Sets the first name for this Person.
 void setFullName(java.lang.String fullName)
          Sets the fully formatted name for this person.
 void setLastName(java.lang.String lastName)
          Sets the last name (surname) for this Person.
 void setMiddleName(java.lang.String middleName)
          Sets the middle name for this Person.
 

Method Detail

getFirstName

java.lang.String getFirstName()
                              throws CSAppFrameworkException
Gets the first name for this Person.

Returns:
String
Throws:
CSAppFrameworkException

setFirstName

void setFirstName(java.lang.String firstName)
                  throws CSAppFrameworkException
Sets the first name for this Person.

Parameters:
firstName -
Throws:
CSAppFrameworkException

getFullName

java.lang.String getFullName()
                             throws CSAppFrameworkException
Gets the fully formatted name for this person.

Returns:
String
Throws:
CSAppFrameworkException

setFullName

void setFullName(java.lang.String fullName)
                 throws CSAppFrameworkException
Sets the fully formatted name for this person.

Parameters:
fullName -
Throws:
CSAppFrameworkException

getLastName

java.lang.String getLastName()
                             throws CSAppFrameworkException
Gets the last name (surname) for this Person.

Returns:
String
Throws:
CSAppFrameworkException

setLastName

void setLastName(java.lang.String lastName)
                 throws CSAppFrameworkException
Sets the last name (surname) for this Person.

Parameters:
lastName -
Throws:
CSAppFrameworkException

getMiddleName

java.lang.String getMiddleName()
                               throws CSAppFrameworkException
Gets the middle name for this Person.

Returns:
String
Throws:
CSAppFrameworkException

setMiddleName

void setMiddleName(java.lang.String middleName)
                   throws CSAppFrameworkException
Sets the middle name for this Person.

Parameters:
middleName -
Throws:
CSAppFrameworkException