Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / dao / TbAmUserBackupDAO.java @ 14:12070e3b75b3

History | View | Annotate | Download (993 Bytes)

1
/**
2
 * Copyright (M) 2011 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

    
12
/**
13
 * PROGRAMMER: Gabbytian Rayvandy
14
 * CHANGE-NO:
15
 * TASK-NO:
16
 * DATE CREATED: Jan 10, 2012
17
 * TAG AS:
18
 * REASON(S):
19
 * MODIFICATION:
20
 */
21

    
22
package my.com.upass.dao;
23

    
24
import my.com.upass.pojo.UserBeanBackup;
25
import net.penril.generic.hibernate.GenericDAO;
26

    
27
public interface TbAmUserBackupDAO extends GenericDAO<UserBeanBackup, Integer>
28
{
29
        UserBeanBackup getTbAmUserBackupByUserAlias (String uUserAlias) throws Exception;
30
        UserBeanBackup getTbAmUserBackupByTUserId (String tUserId) throws Exception;
31
}