nl.gx.webmanager.services.defaultprofileprovider
Interface DefaultProfile

All Superinterfaces:
ProfileExtension

public interface DefaultProfile
extends ProfileExtension

This is the default user profile extension.


Nested Class Summary
static class DefaultProfile.Gender
          The possible values for the gender of the user.
 
Method Summary
 java.lang.String getAddress()
          Retrieved the entity xxxx under yyyy column.
 java.util.Date getBirthDate()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getConfirmCode()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getEmail()
          Retrieved the entity email under email column.
 java.util.Date getEntryDate()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getFirstName()
          Retrieved the entity xxxx under yyyy column.
 DefaultProfile.Gender getGender()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getGeneratedPassWord()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getHouseNumber()
          Retrieved the entity xxxx under yyyy column.
 java.util.Date getLastModified()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getLastName()
          Retrieved the entity xxxx under yyyy column.
 java.util.Date getLastVisit()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getMobile()
          Retrieved the entity xxxx under yyyy column.
 int getNumberOfVisits()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getPassWord()
          Deprecated. Passwords should not be returned to clients. An empty String will be returned. Use hasPersistedPassWord to determine if a profile contains a non-empty password.
 java.lang.String getPrefix()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getResidence()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getTelephone()
          Retrieved the entity xxxx under yyyy column.
 java.lang.String getUserName()
          Retrieved the entity userName under username column.
 java.lang.String getZipcode()
          Retrieved the entity xxxx under yyyy column.
 boolean hasPersistedPassWord()
          Returns whether the profile has a non-empty password.
 boolean isConfirmed()
          Retrieved the entity xxxx under yyyy column.
 void setAddress(java.lang.String address)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setBirthDate(java.util.Date birthDate)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setConfirmCode(java.lang.String confirmCode)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setConfirmed(boolean confirmed)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setEmail(java.lang.String email)
          Assign the given email to the entity which resides under email column.
 void setFirstName(java.lang.String firstname)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setGender(DefaultProfile.Gender gender)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setGeneratedPassWord(java.lang.String generatedPassWord)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setHouseNumber(java.lang.String houseNumber)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setLastName(java.lang.String lastName)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setLastVisit(java.util.Date lastVisit)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setMobile(java.lang.String mobile)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setNumberOfVisits(int numberOfVisits)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setPassWord(java.lang.String password)
          Set a plain-text password.
 void setPrefix(java.lang.String prefix)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setResidence(java.lang.String residence)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setTelephone(java.lang.String telephone)
          Assign the given xxxx to the entity which resides under yyyy column.
 void setUserName(java.lang.String userName)
          Assign the given userName to the entity which resides under username column.
 void setZipcode(java.lang.String zipcode)
          Assign the given xxxx to the entity which resides under yyyy column.
 
Methods inherited from interface nl.gx.webmanager.services.usermanager.ProfileExtension
getUser
 

Method Detail

getUserName

java.lang.String getUserName()
Retrieved the entity userName under username column.

Returns:
String holding the entity userName.

setUserName

void setUserName(java.lang.String userName)
Assign the given userName to the entity which resides under username column.

Parameters:
userName - String to be assigned to the entity userName.

getEmail

java.lang.String getEmail()
Retrieved the entity email under email column.

Returns:
String holding the entity email.

setEmail

void setEmail(java.lang.String email)
Assign the given email to the entity which resides under email column.

Parameters:
email - String to be assigned to the entity email.

getPassWord

@Deprecated
java.lang.String getPassWord()
Deprecated. Passwords should not be returned to clients. An empty String will be returned. Use hasPersistedPassWord to determine if a profile contains a non-empty password.

Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

hasPersistedPassWord

boolean hasPersistedPassWord()
Returns whether the profile has a non-empty password.

Returns:
whether the profile contains has a non-empty password

setPassWord

void setPassWord(java.lang.String password)
Set a plain-text password. This password will be encrypted by the DefaultProfileProvider.

Parameters:
password - String that contains the plain-text password

getGeneratedPassWord

java.lang.String getGeneratedPassWord()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setGeneratedPassWord

void setGeneratedPassWord(java.lang.String generatedPassWord)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
generatedPassWord - String to be assigned to the entity xxxx.

getFirstName

java.lang.String getFirstName()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setFirstName

void setFirstName(java.lang.String firstname)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
firstname - String to be assigned to the entity xxxx.

getLastName

java.lang.String getLastName()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setLastName

void setLastName(java.lang.String lastName)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
lastName - String to be assigned to the entity xxxx.

getAddress

java.lang.String getAddress()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setAddress

void setAddress(java.lang.String address)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
address - String to be assigned to the entity xxxx.

getResidence

java.lang.String getResidence()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setResidence

void setResidence(java.lang.String residence)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
residence - String to be assigned to the entity xxxx.

getBirthDate

java.util.Date getBirthDate()
Retrieved the entity xxxx under yyyy column.

Returns:
Date holding the entity xxxx.

setBirthDate

void setBirthDate(java.util.Date birthDate)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
date - Date to be assigned to the entity xxxx.

getMobile

java.lang.String getMobile()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setMobile

void setMobile(java.lang.String mobile)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
mobile - String to be assigned to the entity xxxx.

getTelephone

java.lang.String getTelephone()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setTelephone

void setTelephone(java.lang.String telephone)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
telephone - String to be assigned to the entity xxxx.

getZipcode

java.lang.String getZipcode()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setZipcode

void setZipcode(java.lang.String zipcode)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
zipcode - String to be assigned to the entity xxxx.

getGender

DefaultProfile.Gender getGender()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setGender

void setGender(DefaultProfile.Gender gender)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
gender - String to be assigned to the entity xxxx.

getHouseNumber

java.lang.String getHouseNumber()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setHouseNumber

void setHouseNumber(java.lang.String houseNumber)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
houseNumber - String to be assigned to the entity xxxx.

getPrefix

java.lang.String getPrefix()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setPrefix

void setPrefix(java.lang.String prefix)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
prefix - String to be assigned to the entity xxxx.

getLastVisit

java.util.Date getLastVisit()
Retrieved the entity xxxx under yyyy column.

Returns:
Date holding the entity xxxx.

setLastVisit

void setLastVisit(java.util.Date lastVisit)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
lastVisit - Date to be assigned to the entity xxxx.

getLastModified

java.util.Date getLastModified()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

getNumberOfVisits

int getNumberOfVisits()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setNumberOfVisits

void setNumberOfVisits(int numberOfVisits)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
numberOfVisits - String to be assigned to the entity xxxx.

getEntryDate

java.util.Date getEntryDate()
Retrieved the entity xxxx under yyyy column.

Returns:
Date holding the entity xxxx.

isConfirmed

boolean isConfirmed()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setConfirmed

void setConfirmed(boolean confirmed)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
confirmed - boolean to be assigned to the entity xxxx.

getConfirmCode

java.lang.String getConfirmCode()
Retrieved the entity xxxx under yyyy column.

Returns:
String holding the entity xxxx.

setConfirmCode

void setConfirmCode(java.lang.String confirmCode)
Assign the given xxxx to the entity which resides under yyyy column.

Parameters:
confirmCode - String to be assigned to the entity xxxx.


Copyright © 2007-2010 GX creative online development BV. All Rights Reserved.