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: users-unsubscr...@appfuse.dev.java.net For additional commands, e-mail: users-h...@appfuse.dev.java.net