1 19 20 package com.lutris.airsent.spec.customer; 21 22 import com.lutris.airsent.spec.AirSentException; 23 import com.lutris.airsent.spec.customer.Customer; 24 25 32 public interface CustomerManager { 33 34 44 public Customer create() throws AirSentException; 45 46 58 public Customer findByBusiness(String business) 59 throws AirSentException; 60 61 73 public Customer findByLogin(String login) throws AirSentException; 74 75 88 public Customer validatePassword(String login, String password) 89 throws AirSentException; 90 } 91 92 | Popular Tags |