Schnittstelle ExtendedUser
- Alle Superschnittstellen:
SecurityEntity
,Serializable
,User
- Alle bekannten Unterschnittstellen:
TurbineUser
- Alle bekannten Implementierungsklassen:
TurbineUserImpl
This interface represents the extended functionality of a user.
- Version:
- $Id: User.java 1374616 2012-08-18 17:26:07Z tv $
- Autor:
- Thomas Vandahl
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetEmail()
Returns the email address for this user.Returns the first name for this user.Returns the last name for this user.byte[]
Returns the value of the objectdata for this user.void
Sets the email address.void
setFirstName
(String firstName) Sets the first name for this user.void
setLastName
(String lastName) Sets the last name for this user.void
setObjectdata
(byte[] objectdata) Sets the value of the objectdata for the userVon Schnittstelle geerbte Methoden org.apache.fulcrum.security.entity.SecurityEntity
getId, getName, setId, setName
Von Schnittstelle geerbte Methoden org.apache.fulcrum.security.entity.User
getPassword, setPassword
-
Methodendetails
-
getFirstName
String getFirstName()Returns the first name for this user.- Gibt zurück:
- A String with the user's first name.
-
getLastName
String getLastName()Returns the last name for this user.- Gibt zurück:
- A String with the user's last name.
-
getEmail
String getEmail()Returns the email address for this user.- Gibt zurück:
- A String with the user's email address.
-
setFirstName
Sets the first name for this user.- Parameter:
firstName
- User's first name.
-
setLastName
Sets the last name for this user.- Parameter:
lastName
- User's last name.
-
setEmail
Sets the email address.- Parameter:
address
- The email address.
-
getObjectdata
byte[] getObjectdata()Returns the value of the objectdata for this user. Objectdata is a storage area used to store the permanent storage table from the User object.- Gibt zurück:
- The bytes in the objectdata for this user
-
setObjectdata
void setObjectdata(byte[] objectdata) Sets the value of the objectdata for the user- Parameter:
objectdata
- The new permanent storage for the user
-