Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (834 Bytes)

1
/**
2
 * Copyright (c) 2010 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
/**
14
 * PROGRAMMER: Danniell
15
 * CHANGE-NO:
16
 * TASK-NO:
17
 * DATE CREATED: Dec 28, 2011
18
 * TAG AS:
19
 * REASON(S):
20
 * MODIFICATION:
21
 */
22

    
23
/**
24
 * <Class description>
25
 */
26
public class DAOFactoryProvider
27
{
28
        public static DAOFactory getDAOFactory () throws Exception
29
        {
30
                return DAOFactory.instance (DAOFactory.HIBERNATE);
31
        }
32
}