|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use User | |
com.pow2.user | |
com.pow2.user.dao |
Uses of User in com.pow2.user |
Fields in com.pow2.user declared as User | |
protected User |
Address.user
its user |
Methods in com.pow2.user that return User | |
User |
UserManager.getUser(HttpServletRequest request)
Retrieve the User object from the Session context. |
User |
UserManager.getUser(String login,
String passwd)
Retrieve a registered User object from the database. |
User |
UserManager.getUser(HttpServletRequest request,
boolean authenticate)
Get the User object. |
User |
Address.getUser()
Gets the user attribute of the Address object |
Methods in com.pow2.user with parameters of type User | |
void |
UserManager.setUser(HttpServletRequest request,
User user)
Store the input User object into the session context. |
void |
UserManager.setUser(User user)
Persist the user informations into the database. |
void |
UserManager.setUser(User user,
RegistrationForm form,
boolean update)
|
void |
Address.setUser(User newUser)
Sets the user attribute of the Address object |
Constructors in com.pow2.user with parameters of type User | |
Address(User newUser)
Constructor. |
Uses of User in com.pow2.user.dao |
Methods in com.pow2.user.dao that return User | |
protected static User |
UserDAOUtil.getUser(UserDAO dao,
String login,
String passwd)
Update the input User object with the user informations retrieved from the data provider. |
User |
UserDAO.getUser(String login,
String passwd)
Get the registered User identified by the input login and passwd properties. |
User |
LDAPUserDAO.getUser(String login,
String passwd)
Update the input User object with the user informations retrieved from the data provider. |
User |
DBUserDAO.getUser(String login,
String passwd)
Update the input User object with the user informations retrieved from the data provider. |
Methods in com.pow2.user.dao with parameters of type User | |
protected static String |
UserDAOUtil.getAuthenticationLog(User user)
Get the log string about the user authentication procedure |
void |
UserDAO.getUser(User user)
Update the input User object with the user informations retrieved from the database. |
void |
UserDAO.setUser(User user)
Persist the user informations into the database. |
boolean |
UserDAO.loginExists(User user)
Test if the input user login property
already exists into the application database. |
void |
LDAPUserDAO.getUser(User user)
Get the registered User identified by the input login and passwd properties. |
void |
LDAPUserDAO.setUser(User user)
Persist the user informations into the database. |
boolean |
LDAPUserDAO.loginExists(User user)
Test if the input user login property
already exists into the application database. |
void |
DBUserDAO.getUser(User user)
Update the input User object with the user informations retrieved from the data provider. |
void |
DBUserDAO.setUser(User user)
Persist the user informations into the database. |
boolean |
DBUserDAO.loginExists(User user)
Test if the input user login property
already exists into the application database. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |