01: /**
02: * User: Clinton Begin Date: Jul 13, 2003 Time: 8:17:52 PM
03: */package com.ibatis.jpetstore.persistence.iface;
04:
05: import java.util.List;
06:
07: import com.ibatis.jpetstore.domain.Account;
08:
09: public interface AccountDao {
10:
11: public Account getAccount(String username);
12:
13: public List getUsernameList();
14:
15: public Account getAccount(String username, String password);
16:
17: public void insertAccount(Account account);
18:
19: public void updateAccount(Account account);
20:
21: }
|