Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (1.07 KB)

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;
12

    
13
/**
14
 * PROGRAMMER: Danniell
15
 * CHANGE-NO:
16
 * TASK-NO:
17
 * DATE CREATED: Jan 8, 2013
18
 * TAG AS:
19
 * REASON(S):
20
 * MODIFICATION:
21
 */
22

    
23
/**
24
 * <Class description>
25
 */
26
public enum TOKEN_MODE
27
{
28
        GEMALTO {
29
                @Override
30
                public String getEntityName ()
31
                {
32
                        return this.toString ().toLowerCase ();
33
                }
34
        },
35
        VASCO {
36
                @Override
37
                public String getEntityName ()
38
                {
39
                        return this.toString ().toLowerCase ();
40
                }
41
        },
42
        SECUREMETRIC {
43
                @Override
44
                public String getEntityName ()
45
                {
46
                        return this.toString ().toLowerCase ();
47
                }
48
        };
49
        public abstract String getEntityName ();
50
}