Skip to content

Directory tree

Below are the directory trees for Java, C#, PHP, and Go.

Java

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|- java
    |- src.main
    |   |- java.com.gpayments.requestor.testlab
    |   |   |- config
    |   |   |   |- Config.java
    |   |   |   |- RestClientConfig.java
    |   |   |
    |   |   |- dto 
    |   |   |   |- Message.java
    |   |   |
    |   |   |- exception
    |   |   |   |- GlobalExceptionHandler.java
    |   |   |
    |   |   |- AuthController.java
    |   |   |- MainController.java
    |   |   |- RequestorApplication.java
    |   |
    |   |- resources
    |   |   |- certs  
    |   |   |   |- cacerts.pem 
    |   |   |
    |   |   |- static
    |   |   |   |- css
    |   |   |   |   |- spinner.css
    |   |   |   |   |- style.css
    |   |   |   |   
    |   |   |   |- images
    |   |   |   |   |- amex-logo.png
    |   |   |   |   |- apple.jpeg
    |   |   |   |   |- banana.jpg
    |   |   |   |   |- discover-logo.png
    |   |   |   |   |- jcb-logo.png
    |   |   |   |   |- left-icon.ico
    |   |   |   |   |- mastercard-logo.png
    |   |   |   |   |- pineapple.jpeg
    |   |   |   |   |- visa-logo.png
    |   |   |   |   
    |   |   |   |- js 
    |   |   |   |   |- 3ds-web-adapter.js 
    |   |   |   |   |- cart.js
    |   |   |   |   |- check-credit-card-type.js
    |   |   |   |   |- common.js
    |   |   |   |   |- test-lab-scenarios.js 
    |   |   |   |
    |   |   |   |- favicon.ico
    |   |   |        
    |   |   |- templates
    |   |   |   |- contents
    |   |   |   |   |- acct_info.html
    |   |   |   |   |- authentication_info.html
    |   |   |   |   |- cardholder_info.html
    |   |   |   |   |- merchant_risk_indicator.html
    |   |   |   |   |- nav_bar.html
    |   |   |   |
    |   |   |   |- 3ri.html      
    |   |   |   |- brw.html       
    |   |   |   |- checkout.html      
    |   |   |   |- enrol.html      
    |   |   |   |- error.html      
    |   |   |   |- index.html      
    |   |   |   |- notify_3ds_events.html     
    |   |   |   |- process.html      
    |   |   |   |- result.html    
    |   |   |   |- shop.html  
    |   |   |  
    |   |   |- application.yml                
    |
    |- mvnw
    |- mvnw.cmd
    |- pom.xml

C

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|- dotnet
    |- App_Start
    |   |- FilterConfig.cs
    |   |- RouteConfig.cs
    |   |- WebApiConfig.cs
    |
    |- Certs
    |   |- cacerts.pem    
    |
    |- Controllers
    |   |- AuthController.cs
    |   |- MainController.cs
    |
    |- css
    |   |- spinner.css
    |   |- style.css
    |
    |- Helpers
    |   |- Config.cs
    |   |- RestClientHelper.cs
    |
    |- Images
    |   |- amex-logo.png
    |   |- apple.jpeg
    |   |- banana.jpg
    |   |- discover-logo.png
    |   |- jcb-logo.png
    |   |- left-icon.ico
    |   |- mastercard-logo.png
    |   |- pineapple.jpeg
    |   |- visa-logo.png
    |
    |- js
    |   |- 3ds-web-adapter.js
    |   |- cart.js
    |   |- check-credit-card-type.js
    |   |- common.js
    |   |- test-lab-scenarios.js
    |
    |- Models
    |   |- dto
    |   |   |- Message.cs
    |
    |- Properties
    |   |- AssemblyInfo.cs
    |
    |- Views
    |   |- Main
    |   |   |- contents
    |   |   |   |- acct_info.html
    |   |   |   |- authentication_info.html
    |   |   |   |- cardholder_info.html
    |   |   |   |- merchant_risk_indicator.html
    |   |   |   |- nav_bar.html
    |   |   |
    |   |   |- 3ri.html
    |   |   |- brw.html
    |   |   |- checkout.html
    |   |   |- enrol.html
    |   |   |- error.html
    |   |   |- index.html
    |   |   |- notify_3ds_events.html
    |   |   |- process.html
    |   |   |- result.html
    |   |   |- shop.html
    |   |
    |   |- Shared
    |   |   |- Error.cshtml
    |   |
    |   |- _ViewStart.cshtml
    |   |- Web.config
    |
    |- 3ds2RequestorDemo.csproj
    |- 3ds2RequestorDemo.sln
    |- favicon.ico
    |- Global.asax
    |- Global.asax.cs
    |- packages.config
    |- startup.bat
    |- Web.config

PHP

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|- php
    |- config
    |   |- Config.php
    |   |- RestClientConfig.php
    |   |- Router.php
    |
    |- controllers
    |   |- AuthController.php
    |   |- MainController.php
    |
    |- css
    |   |- spinner.css
    |   |- style.css
    |
    |- images
    |   |- amex-logo.png
    |   |- apple.jpeg
    |   |- banana.jpg
    |   |- discover-logo.png
    |   |- jcb-logo.png
    |   |- left-icon.ico
    |   |- mastercard-logo.png
    |   |- pineapple.jpeg
    |   |- visa-logo.png
    |
    |- js
    |   |- 3ds-web-adapter.js
    |   |- cart.js
    |   |- check-credit-card-type.js
    |   |- common.js
    |   |- test-lab-scenarios.js
    |
    |- resources
    |   |- certs
    |   |   |- cacerts.pem
    |   |
    |   |- templates
    |   |   |- contents
    |   |   |   |- acct_info.html
    |   |   |   |- authentication_info.html
    |   |   |   |- cardholder_info.html
    |   |   |   |- merchant_risk_indicator.html
    |   |   |   |- nav_bar.html
    |   |   |
    |   |   |- 3ri.html
    |   |   |- brw.html
    |   |   |- checkout.html
    |   |   |- enrol.html
    |   |   |- error.html
    |   |   |- index.html
    |   |   |- notify_3ds_events.html
    |   |   |- process.html
    |   |   |- result.html
    |   |   |- shop.html
    |   | 
    |   |- application.ini
    |
    |- composer.json
    |- composer.lock
    |- favicon.ico
    |- index.php
    |- README.md

Go

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|- go
    |- conf
    |   |- application.yaml
    |   |- cacerts.pem  
    |    
    |- web
    |   |- contents
    |   |   |- acct_info.html
    |   |   |- authentication_info.html
    |   |   |- cardholder_info.html
    |   |   |- merchant_risk_indicator.html
    |   |   |- nav_bar.html
    |   |
    |   |- css
    |   |   |- spinner.css
    |   |   |- style.css
    |   |
    |   |- images
    |   |   |- amex-logo.png
    |   |   |- apple.jpeg
    |   |   |- banana.jpg
    |   |   |- discover-logo.png
    |   |   |- jcb-logo.png
    |   |   |- left-icon.ico
    |   |   |- mastercard-logo.png
    |   |   |- pineapple.jpeg
    |   |   |- visa-logo.png
    |   |
    |   |- js
    |   |   |- 3ds-web-adapter.js
    |   |   |- cart.js
    |   |   |- check-credit-card-type.js
    |   |   |- common.js
    |   |   |- test-lab-scenarios.js
    |   |
    |   |- 3ri.html
    |   |- brw.html
    |   |- checkout.html
    |   |- enrol.html
    |   |- error.html
    |   |- favicon.ico
    |   |- index.html
    |   |- notify_3ds_events.html
    |   |- process.html
    |   |- result.html
    |   |- shop.html
    |
    |- conf.go
    |- go.mod
    |- go.sum
    |- https.go
    |- main.go