mastercard_merchantidentifier 1.0.0 → 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: a132ce3472e13919f3650c5bb1b3bb781deb9396
4
- data.tar.gz: 6bf542d589aa2d4351ea1f1beb131e14909bbbc7
3
+ metadata.gz: d6f4ff1d3ca142d41236c36c19a327d2cd323478
4
+ data.tar.gz: fb957551e592e2e65f70f52322eb56b78be32356
5
5
  SHA512:
6
- metadata.gz: 1e48c813712c3285a5b0ea5cbf739f825ba27cd74bc158020a09b3a37c084d49aa97e008acd621ccf8a280fb5549a99e6bd0a0096ee1fe9cc277ebad3abeba6f
7
- data.tar.gz: 5e2ba6cd32cf8f27401cff689e43212fc14a2c28ccc0d927941b361abc5f7a5c053073239afee888d9e07bbc1c0a6a634d3b25c4dccc7426c486d955d7270ffb
6
+ metadata.gz: 311384bed05fcab5ce6ca92a92f31e0ccec5386ba1294ffa5c6ff73c37d895a675c75df0a52a64a40a11f8770f1828025fcced0c67fd15a1c5b46aa6139c5a83
7
+ data.tar.gz: d8d2a7b706cb4982a3f479f3bd2f9d2bef383ab157d1a78ea746c2e61e53e4c00b96cef02f6524c32e9726a9ac4171b5e39edbb61c5b5545ddef45c335cdfdd4
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module MerchantIdentifier
34
- include MasterCard::Core::Model
35
- class MerchantIdentifier < BaseObject
34
+ class MerchantIdentifier < 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 == "QUERY"
45
- return "/merchantid/v1/merchantid"
46
- end
38
+ @__store = {
39
+ 'a248cbfc-7b17-4431-bc56-027c12f53256' => OperationConfig.new("/merchantid/v1/merchantid", "query", [], ["MerchantId","Type"]),
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 == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return ["MerchantId","Type"]
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type MerchantIdentifier by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return MerchantIdentifier object representing the response.
93
68
  #
94
69
 
95
- obj = MerchantIdentifier.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("a248cbfc-7b17-4431-bc56-027c12f53256",MerchantIdentifier.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
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 MerchantIdentifier
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,2 +1,3 @@
1
1
  require 'mastercard_api_core'
2
+ require 'mastercard/api/merchantidentifier/skdconfig'
2
3
  require 'mastercard/api/merchantidentifier/merchantidentifier'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mastercard_merchantidentifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
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-10 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
@@ -52,6 +52,7 @@ extensions: []
52
52
  extra_rdoc_files: []
53
53
  files:
54
54
  - lib/mastercard/api/merchantidentifier/merchantidentifier.rb
55
+ - lib/mastercard/api/merchantidentifier/skdconfig.rb
55
56
  - lib/mastercard_merchantidentifier.rb
56
57
  homepage: https://developer.mastercard.com
57
58
  licenses: