Uses of Class
br.com.arsmachina.authentication.entity.User

Packages that use User
br.com.arsmachina.authentication.controller   
br.com.arsmachina.authentication.controller.impl   
br.com.arsmachina.authentication.dao   
br.com.arsmachina.authentication.entity   
 

Uses of User in br.com.arsmachina.authentication.controller
 

Methods in br.com.arsmachina.authentication.controller that return User
 User UserController.findByLogin(String login)
          Returns the user with a given login or null if no such user exists.
 User UserController.findByLoginAndPassword(String login, String password)
          Returns the user with a given login and password or null if no such user exists.
 

Methods in br.com.arsmachina.authentication.controller that return types with arguments of type User
<T extends Role>
List<User>
UserController.findByRole(Class<T> roleClass)
          Returns all users with a given Role subclass.
 

Uses of User in br.com.arsmachina.authentication.controller.impl
 

Methods in br.com.arsmachina.authentication.controller.impl that return User
 User UserControllerImpl.findByLogin(String login)
          Invokes dao.findByLogin().
 User UserControllerImpl.findByLoginAndPassword(String login, String password)
          Invokes dao.findByLoginAndPassword().
 User UserControllerImpl.update(User user)
          Encrypts the password if it is not encrypted already and then updates the user.
 

Methods in br.com.arsmachina.authentication.controller.impl that return types with arguments of type User
<T extends Role>
List<User>
UserControllerImpl.findByRole(Class<T> roleClass)
          Invokes delegate.findByRole().
 

Methods in br.com.arsmachina.authentication.controller.impl with parameters of type User
 void UserControllerImpl.save(User user)
           
 User UserControllerImpl.update(User user)
          Encrypts the password if it is not encrypted already and then updates the user.
 

Uses of User in br.com.arsmachina.authentication.dao
 

Methods in br.com.arsmachina.authentication.dao that return User
 User UserDAO.findByLogin(String login)
          Returns the user with a given login or null if no such user exists.
 User UserDAO.findByLoginAndPassword(String login, String password)
          Returns the user with a given login and password or null if no such user exists.
 

Methods in br.com.arsmachina.authentication.dao that return types with arguments of type User
<T extends Role>
List<User>
UserDAO.findByRole(Class<T> roleClass)
          Returns all users with a given Role subclass.
 

Uses of User in br.com.arsmachina.authentication.entity
 

Methods in br.com.arsmachina.authentication.entity that return User
 User Role.getUser()
          Returns the value of the user property.
 

Methods in br.com.arsmachina.authentication.entity with parameters of type User
 int User.compareTo(User o)
           
 void Role.setUser(User user)
          Changes the value of the user property.
 



Copyright © 2008-2009 Thiago H. de Paula Figueiredo. All Rights Reserved.