MCPcopy
hub / github.com/DuGuQiuBai/Java / UserDao

Interface UserDao

day17/code/day17_login_regist/src/cn/itcast/dao/UserDao.java:11–33  ·  view source on GitHub ↗

�����û��Ľӿ� @author fqy @version V1.0

Source from the content-addressed store, hash-verified

9 * @version V1.0
10 */
11public interface UserDao {
12 /**
13 * �����û���¼����
14 *
15 * @param username
16 * �û���
17 * @param password
18 * ����
19 * @return ��¼�Ƿ�ɹ�
20 */
21 public abstract boolean isLogin(String username, String password);
22
23 // ��˵��ע��ҲӦ�÷���boolean���ͣ��������ǵ�List��ϵ�ļ��ϣ�����Ԫ����Զ����true�������أ��Ҿͷ���void����
24 // ���������������뷨���������ҲӦ�����û��������룬������?�����Ҵ���һ���û������������������û��������롣
25 // ���һ�������IJ�������3����ʱ�򣬽��鴫�ݶ���
26 /**
27 * �����û�ע�Ṧ��
28 *
29 * @param user
30 * �û�����
31 */
32 public abstract void regist(User user);
33}

Callers

nothing calls this directly

Implementers 4

UserDaoImplday17/code/day17_login_regist/src/cn/i
UserDaoImplday25/code/Eclipse版本的登录注册/src/cn/itcas
UserDaoImplday25/code/登录注册/src/cn/itcast/dao/impl
UserDaoImplday21/code/day21_login_regist/src/cn/i

Calls

no outgoing calls

Tested by

no test coverage detected