|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use User | |
|---|---|
| com.randomcoder.article | Article management classes. |
| com.randomcoder.article.comment | Article commenting classes. |
| com.randomcoder.security.userdetails | Acegi UserDetails implementation and support classes. |
| com.randomcoder.user | User-management classes. |
| Uses of User in com.randomcoder.article |
|---|
| Methods in com.randomcoder.article that return User | |
|---|---|
User |
Article.getCreatedByUser()
Gets the User this article was created by. |
User |
Article.getModifiedByUser()
Gets the user who last modified this article. |
| Methods in com.randomcoder.article with parameters of type User | |
|---|---|
void |
Article.setCreatedByUser(User createdByUser)
Sets the user this article was created by. |
void |
Article.setModifiedByUser(User modifiedByUser)
Sets the user who last modified this article. |
| Uses of User in com.randomcoder.article.comment |
|---|
| Methods in com.randomcoder.article.comment that return User | |
|---|---|
User |
Comment.getCreatedByUser()
Gets the User this comment was created by. |
| Methods in com.randomcoder.article.comment with parameters of type User | |
|---|---|
void |
Comment.setCreatedByUser(User createdByUser)
Sets the user this comment was created by. |
| Uses of User in com.randomcoder.security.userdetails |
|---|
| Constructors in com.randomcoder.security.userdetails with parameters of type User | |
|---|---|
UserDetailsImpl(User user)
Creates a new UserDetailsImpl. |
|
UserDetailsImpl(User user,
String password)
Creates a new UserDetailsImpl with an explicit password. |
|
| Uses of User in com.randomcoder.user |
|---|
| Methods in com.randomcoder.user that return User | |
|---|---|
User |
UserDao.findByUserName(String name)
Finds a User with the given user name. |
User |
UserDao.findByUserNameEnabled(String name)
Finds an enabled User with the given user name. |
User |
ChangePasswordCommand.getUser()
Gets the user associated with this request. |
User |
CardSpaceToken.getUser()
Gets the user this token belongs to. |
| Methods in com.randomcoder.user that return types with arguments of type User | |
|---|---|
List<User> |
UserDao.listAll()
Lists all User objects, ordered by user name. |
List<User> |
UserDao.listAllInRange(int start,
int limit)
Lists all User objects in range, ordered by user name. |
List<User> |
UserDao.listEnabled()
Lists all enabled User objects, ordered by user name. |
| Methods in com.randomcoder.user with parameters of type User | |
|---|---|
void |
UserEditCommand.consume(User user)
|
List<CardSpaceToken> |
CardSpaceTokenDao.listByUser(User user)
Lists all CardSpaceToken objects for the given user by
last login date. |
void |
UserProfileCommand.produce(User target)
|
void |
UserAddCommand.produce(User user)
Writes out the contents of the current form to the given user. |
void |
AccountCreateCommand.produce(User user)
Writes out the contents of the current form to the given user. |
void |
ChangePasswordCommand.setUser(User user)
Sets the user associated with this request. |
void |
CardSpaceToken.setUser(User user)
Sets the user this token belongs to. |
| Method parameters in com.randomcoder.user with type arguments of type User | |
|---|---|
void |
UserBusinessImpl.createAccount(Producer<User> producer)
|
void |
UserBusiness.createAccount(Producer<User> producer)
Creates a new account using a password. |
void |
UserBusinessImpl.createAccount(Producer<User> userProducer,
Producer<CardSpaceToken> tokenProducer)
|
void |
UserBusiness.createAccount(Producer<User> userProducer,
Producer<CardSpaceToken> tokenProducer)
Creates a new account using CardSpace credentials. |
void |
UserBusinessImpl.createUser(Producer<User> producer)
|
void |
UserBusiness.createUser(Producer<User> producer)
Create a new user. |
void |
UserBusinessImpl.loadUserForEditing(Consumer<User> consumer,
Long userId)
|
void |
UserBusiness.loadUserForEditing(Consumer<User> consumer,
Long userId)
Loads a user for editing. |
void |
UserBusinessImpl.updateUser(Producer<User> producer,
Long userId)
|
void |
UserBusiness.updateUser(Producer<User> producer,
Long userId)
Update an existing user. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||