Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (1.7 KB)

1
/*
2
 * Copyright (c) 2012 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.gemalto;
12

    
13
/*
14
 * <pre>
15
 * PROGRAMMER: Enson Yeoh
16
 * CHANGE-NO:
17
 * TASK-NO:
18
 * DATE CREATED: Oct 5, 2012
19
 * TAG AS:
20
 * REASON(S):
21
 * MODIFICATION:
22
 * </pre>
23
 */
24

    
25
public class LoadTokenPSKC 
26
{
27
        private String filePath; //"GEMALTO_127117001000_chk_toSingapore.pskc"
28
        private String passPhrase; //"RRRF9U7UTUMCL3GC9EE4"
29
        private String batchNo; 
30
        
31
        public LoadTokenPSKC(String filePath, String passPhrase, String batchNo)
32
        {
33
                this.filePath = filePath;
34
                this.passPhrase = passPhrase;
35
                this.batchNo = batchNo;                
36
        }
37
        
38
        /**
39
         * @param filename the filename to set
40
         */
41
        public void setFileName(String filePath)
42
        {
43
                this.filePath = filePath;
44
        }
45
        
46
        /**
47
         * @param passphrase the pass phrase to set
48
         */
49
        public void setPassPhrase(String passPhrase)
50
        {
51
                this.passPhrase = passPhrase;
52
        }
53
        
54
        /**
55
         * @param batchNo the batchNo to set
56
         */
57
        public void setBatchNo(String batchNo)
58
        {
59
                this.batchNo = batchNo;
60
        }
61
        
62
        /**
63
         * @return the filePath
64
         */
65
        public String getFilePath()
66
        {
67
                return filePath;
68
        }
69
        
70
        /**
71
         * @return the passPhrase
72
         */
73
        public String getPassPhrase()
74
        {
75
                return passPhrase;
76
        }
77
        
78
        /**
79
         * @return the batchNo
80
         */
81
        public String getBatchNo()
82
        {
83
                return batchNo;
84
        }
85
}