Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / dao / TbAmUsermasDAO.java @ 0:02300db8682b

History | View | Annotate | Download (1.02 KB)

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.UserMasterBean;
25
import net.penril.generic.hibernate.GenericDAO;
26

    
27
public interface TbAmUsermasDAO extends GenericDAO<UserMasterBean, Long>
28
{
29
        UserMasterBean getTbAmUsermasByUserId (Integer tUserId) throws Exception;
30

    
31
        UserMasterBean getTbAmUsermasByUserAlias (String userAlias)
32
                        throws Exception;
33

    
34
        void deleteTbAmUsermas (Integer tUserId) throws Exception;
35
}