⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accountdao.java~

📁 J2EE & Tomcat books published by hope
💻 JAVA~
字号:
/* * $Id: AccountDAO.java~,v 1.1 2002/01/04 21:04:47 jc123804 Exp $ * Copyright 2001 Sun Microsystems, Inc. All rights reserved. * Copyright 2001 Sun Microsystems, Inc. Tous droits r閟erv閟. */package com.sun.j2ee.workflow.user.dao;import com.sun.j2ee.blueprints.customer.account.exceptions.AccountDAOSysException;import com.sun.j2ee.blueprints.customer.account.exceptions.AccountDAOAppException;import com.sun.j2ee.blueprints.customer.account.exceptions.AccountDAODBUpdateException;import com.sun.j2ee.blueprints.customer.account.exceptions.AccountDAOFinderException;import com.sun.j2ee.blueprints.customer.account.exceptions.AccountDAODupKeyException;import com.sun.j2ee.blueprints.customer.account.model.AccountModel;import com.sun.j2ee.blueprints.customer.util.ContactInformation;import com.sun.j2ee.blueprints.customer.util.Address;/** * This is the interface for Account DAO. */public interface AccountDAO {    public void create(AccountModel details) throws AccountDAOSysException,                                AccountDAODupKeyException,                                AccountDAODBUpdateException,                                AccountDAOAppException;    public AccountModel load(String id) throws   AccountDAOSysException,                                AccountDAOFinderException;    public void store(AccountModel details) throws AccountDAODBUpdateException,                                AccountDAOAppException,                                AccountDAOSysException;    public void remove(String id) throws AccountDAODBUpdateException,                                AccountDAOSysException;    public String findByPrimaryKey(String id) throws AccountDAOFinderException,                                            AccountDAOSysException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -