Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / dao / UserSecurityCodeDAO.java @ 39:e450611bea1f

History | View | Annotate | Download (1005 Bytes)

1 0:02300db8682b hadi
/**
2
 * Copyright (M) 2009 Penril Datability (M) Sdn Bhd All rights reserved.
3
 *
4
 * This software is copyrighted. Under the copyright laws, this software
5
 * may not be copied, in whole or in part, without prior written consent
6
 * of Penril Datability (M) Sdn Bhd or its assignees. This software is
7
 * provided under the terms of a license between Penril Datability (M)
8
 * Sdn Bhd and the recipient, and its use is subject to the terms of that
9
 * license.
10
 */
11
package my.com.upass.dao;
12
13
import my.com.upass.pojo.SecurityCodeBean;
14
import net.penril.generic.hibernate.GenericDAO;
15
16
/**
17
 * PROGRAMMER: Danniell
18
 * CHANGE-NO:
19
 * TASK-NO:
20
 * DATE CREATED: Dec 3, 2010
21
 * TAG AS:
22
 * REASON(S):
23
 * MODIFICATION:
24
 */
25
26
/**
27
 * Represents the User Security Code Data Access Object
28
 */
29 24:dd5aa1133c23 mohd
public interface UserSecurityCodeDAO extends GenericDAO
30 0:02300db8682b hadi
{
31
        public SecurityCodeBean getSecurityCodeFromStore(String userAlias);
32
33
        public boolean updateSecurityCodeToStore(SecurityCodeBean tacBean);
34
}