package project; import java.util.ArrayList; public class User { public User() { } public static User getInstance() { User u = new User(); return u; } public boolean login(String username, String email, String password) { // TODO Auto-generated method stub return false; } public ArrayList<Auction> retrieveSubscribedAuction() { // TODO Auto-generated method stub return null; } public boolean becomeSeller(String ssn) { // TODO Auto-generated method stub return false; } public boolean searchItem(String title, Category category) { // TODO Auto-generated method stub return false; } public boolean searchAuction(String startTime, String endTime, double price, double bidIncrement, String title, Category category) { // TODO Auto-generated method stub return false; } }