package auction.dao; import auction.model.*; /** * Business DAO operations related to the User entity. * * @see User * @author Christian Bauer */ public interface UserDAO extends GenericDAO { public User validateLogin(User user); // Could be in a separate interface... public void persistAddress(AddressEntity address); }