Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (971 Bytes)

1
/**
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.TacBean;
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 VASCO Data Access Object
28
 */
29
public interface UserTacDAO extends GenericDAO<TacBean, String> {
30

    
31
        public TacBean getTacFromStore(String userAlias, int appId);
32

    
33
        public boolean updateTacToStore(TacBean tacBean);
34
}