mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-04-04 00:12:44 +00:00
8 lines
172 B
Java
8 lines
172 B
Java
|
|
package bigbank;
|
||
|
|
|
||
|
|
public interface BankDao {
|
||
|
|
public Account readAccount(Long id);
|
||
|
|
public void createOrUpdateAccount(Account account);
|
||
|
|
public Account[] findAccounts();
|
||
|
|
}
|