i don't understand this:
/**
* Retrieves a list of users, filtering with parameters on a user object
* @param user parameters to filter on
* @return List
*/
List<User> getUsers(User user);
in the impl:
public List<User> getUsers(final User user) {
return dao.getUsers();
}
there is no filtering done...
is this a bug or a typo?
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
