mastercard_assuranceiq 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 71194d683ea58b360aa487d4d397adb036e01850
4
- data.tar.gz: 58d7c8497e714885dc7fb64c721128f4d5cdd523
3
+ metadata.gz: 58bd8fa602581545da28dd0174f132bde9020db7
4
+ data.tar.gz: 7c4fa3ab638777bc3a3c8ad6b75cad38746eb505
5
5
  SHA512:
6
- metadata.gz: da47438f8bb8d3526b201dd9dd8d0227e45cb4b5434e8e56e79a48cc9aba9677326e22e855ede0a15445223752ea25ba72101caa80103adc619aa8ec9a51a935
7
- data.tar.gz: 468faf5785a9965b5ac4c5cdba0e06c9e11d2c33e57b690d39490680f9be27560f48b82ba4a2f719021e302f50545db467f9f5e0b5c442194634b9dc4197258f
6
+ metadata.gz: 2f457ce8a418bb0cef2c83cffce3d6735ac36713307cc292e35dd4b800d9935e7b59e8b0a0149d227e2836dbb94426bca3dbbe3a818d18521046121ccdecc257
7
+ data.tar.gz: 6a93826f18c798accd6176b1841958a25ee9abadff4aafc27ddddd43104d6511477a7c72adf4c25f8a2835e725fe42127ad9688f601918322d5fcd1b45f91ea9
@@ -31,71 +31,45 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module AssuranceIq
34
- include MasterCard::Core::Model
35
- class ECommerceMessage < BaseObject
34
+ class ECommerceMessage < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "UPDATE"
45
- return "/rest/fraud/riskbaseddecisioning/v1/notify-event"
46
- end
38
+ @__store = {
39
+ '1e201ee0-689e-4ee2-a354-422fe6bec654' => OperationConfig.new("/rest/fraud/riskbaseddecisioning/v1/notify-event", "update", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "UPDATE"
58
- return []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "UPDATE"
70
- return []
71
- end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.1"
78
- end
56
+ public
57
+
79
58
 
80
-
81
-
82
-
83
-
84
59
  def update
85
60
  #
86
61
  #Updates an object of type ECommerceMessage
87
62
  #
88
63
  #@return ECommerceMessage object representing the response.
89
64
  #
90
- return self.class.updateObject(self)
65
+ return self.class.execute("1e201ee0-689e-4ee2-a354-422fe6bec654",self)
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
68
+
69
+
70
+
71
+
72
+
99
73
  end
100
74
  end
101
75
  end
@@ -31,71 +31,45 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module AssuranceIq
34
- include MasterCard::Core::Model
35
- class ECommerceMessageConfidence < BaseObject
34
+ class ECommerceMessageConfidence < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "UPDATE"
45
- return "/rest/fraud/riskbaseddecisioning/v1/confidence-event"
46
- end
38
+ @__store = {
39
+ '88240394-ba81-4f94-9ba7-31870e7aae24' => OperationConfig.new("/rest/fraud/riskbaseddecisioning/v1/confidence-event", "update", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "UPDATE"
58
- return []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "UPDATE"
70
- return []
71
- end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.1"
78
- end
56
+ public
57
+
79
58
 
80
-
81
-
82
-
83
-
84
59
  def update
85
60
  #
86
61
  #Updates an object of type ECommerceMessageConfidence
87
62
  #
88
63
  #@return ECommerceMessageConfidence object representing the response.
89
64
  #
90
- return self.class.updateObject(self)
65
+ return self.class.execute("88240394-ba81-4f94-9ba7-31870e7aae24",self)
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
68
+
69
+
70
+
71
+
72
+
99
73
  end
100
74
  end
101
75
  end
@@ -31,71 +31,45 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module AssuranceIq
34
- include MasterCard::Core::Model
35
- class ECommerceMessageScore < BaseObject
34
+ class ECommerceMessageScore < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "UPDATE"
45
- return "/rest/fraud/riskbaseddecisioning/v1/score-event"
46
- end
38
+ @__store = {
39
+ 'd943bf52-5ceb-4f4b-b407-24481297a5af' => OperationConfig.new("/rest/fraud/riskbaseddecisioning/v1/score-event", "update", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "UPDATE"
58
- return []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "UPDATE"
70
- return []
71
- end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.1"
78
- end
56
+ public
57
+
79
58
 
80
-
81
-
82
-
83
-
84
59
  def update
85
60
  #
86
61
  #Updates an object of type ECommerceMessageScore
87
62
  #
88
63
  #@return ECommerceMessageScore object representing the response.
89
64
  #
90
- return self.class.updateObject(self)
65
+ return self.class.execute("d943bf52-5ceb-4f4b-b407-24481297a5af",self)
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
68
+
69
+
70
+
71
+
72
+
99
73
  end
100
74
  end
101
75
  end
@@ -0,0 +1,50 @@
1
+ #
2
+ # Copyright (c) 2016 MasterCard International Incorporated
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are
6
+ # permitted provided that the following conditions are met:
7
+ #
8
+ # Redistributions of source code must retain the above copyright notice, this list of
9
+ # conditions and the following disclaimer.
10
+ # Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials
12
+ # provided with the distribution.
13
+ # Neither the name of the MasterCard International Incorporated nor the names of its
14
+ # contributors may be used to endorse or promote products derived from this software
15
+ # without specific prior written permission.
16
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
17
+ # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
+ # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
19
+ # SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
21
+ # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22
+ # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24
+ # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
+ # SUCH DAMAGE.
26
+ #
27
+ module MasterCard
28
+ module API
29
+ module AssuranceIq
30
+ class SDKConfig
31
+
32
+ private
33
+ @@host = nil
34
+
35
+ public
36
+ def self.setHost(host)
37
+ @@host = host
38
+ end
39
+
40
+ def self.getHost()
41
+ return @@host
42
+ end
43
+
44
+ def self.getVersion()
45
+ return "1.0.2"
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
@@ -1,4 +1,5 @@
1
1
  require 'mastercard_api_core'
2
+ require 'mastercard/api/assuranceiq/skdconfig'
2
3
  require 'mastercard/api/assuranceiq/ecommercemessagescore'
3
4
  require 'mastercard/api/assuranceiq/ecommercemessageconfidence'
4
5
  require 'mastercard/api/assuranceiq/ecommercemessage'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mastercard_assuranceiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MasterCard Worldwide
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-15 00:00:00.000000000 Z
11
+ date: 2016-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mastercard_api_core
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.0
19
+ version: 1.2.0
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.1.0
22
+ version: 1.2.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: 1.1.0
29
+ version: 1.2.0
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.1.0
32
+ version: 1.2.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: ci_reporter_minitest
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -54,6 +54,7 @@ files:
54
54
  - lib/mastercard/api/assuranceiq/ecommercemessage.rb
55
55
  - lib/mastercard/api/assuranceiq/ecommercemessageconfidence.rb
56
56
  - lib/mastercard/api/assuranceiq/ecommercemessagescore.rb
57
+ - lib/mastercard/api/assuranceiq/skdconfig.rb
57
58
  - lib/mastercard_assuranceiq.rb
58
59
  homepage: https://developer.mastercard.com
59
60
  licenses: