killbill 1.0.19 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Jarfile +4 -2
- data/VERSION +1 -1
- data/killbill.gemspec +4 -3
- data/lib/killbill.rb +7 -51
- data/lib/killbill/creator.rb +10 -18
- data/lib/killbill/gen/account.rb +208 -27
- data/lib/killbill/gen/account_api_exception.rb +66 -0
- data/lib/killbill/gen/account_data.rb +166 -23
- data/lib/killbill/gen/account_email.rb +80 -8
- data/lib/killbill/gen/account_service.rb +55 -0
- data/lib/killbill/gen/account_user_api.rb +187 -0
- data/lib/killbill/gen/audit_user_api.rb +196 -0
- data/lib/killbill/gen/beatrix_service.rb +55 -0
- data/lib/killbill/gen/billing_exception_base.rb +66 -0
- data/lib/killbill/gen/blockable.rb +91 -0
- data/lib/killbill/gen/blocking_api_exception.rb +66 -0
- data/lib/killbill/gen/blocking_state.rb +150 -16
- data/lib/killbill/gen/call_context.rb +107 -13
- data/lib/killbill/gen/catalog.rb +76 -0
- data/lib/killbill/gen/catalog_api_exception.rb +66 -0
- data/lib/killbill/gen/catalog_service.rb +69 -0
- data/lib/killbill/gen/catalog_user_api.rb +54 -0
- data/lib/killbill/gen/column_info.rb +67 -0
- data/lib/killbill/gen/control_tag.rb +112 -0
- data/lib/killbill/gen/currency_value_null.rb +66 -0
- data/lib/killbill/gen/custom_field.rb +93 -10
- data/lib/killbill/gen/custom_field_api_exception.rb +66 -0
- data/lib/killbill/gen/custom_field_user_api.rb +115 -0
- data/lib/killbill/gen/database_export_output_stream.rb +51 -0
- data/lib/killbill/gen/default_mutable_account_data.rb +180 -0
- data/lib/killbill/gen/duration.rb +62 -0
- data/lib/killbill/gen/entitlement_service.rb +55 -0
- data/lib/killbill/gen/entitlement_user_api.rb +272 -0
- data/lib/killbill/gen/entitlement_user_api_exception.rb +66 -0
- data/lib/killbill/gen/entity.rb +84 -0
- data/lib/killbill/gen/entity_persistence_exception.rb +66 -0
- data/lib/killbill/gen/export_user_api.rb +17 -0
- data/lib/killbill/gen/ext_bus_event.rb +68 -9
- data/lib/killbill/gen/external_bus.rb +51 -0
- data/lib/killbill/gen/illegal_plan_change.rb +66 -0
- data/lib/killbill/gen/international_price.rb +79 -0
- data/lib/killbill/gen/invalid_config_exception.rb +49 -0
- data/lib/killbill/gen/invoice.rb +238 -23
- data/lib/killbill/gen/invoice_api_exception.rb +66 -0
- data/lib/killbill/gen/invoice_creation_event.rb +51 -0
- data/lib/killbill/gen/invoice_item.rb +179 -21
- data/lib/killbill/gen/invoice_migration_api.rb +66 -0
- data/lib/killbill/gen/invoice_notifier.rb +51 -0
- data/lib/killbill/gen/invoice_payment.rb +135 -15
- data/lib/killbill/gen/invoice_payment_api.rb +208 -0
- data/lib/killbill/gen/invoice_service.rb +55 -0
- data/lib/killbill/gen/invoice_user_api.rb +461 -0
- data/lib/killbill/gen/junction_api.rb +60 -0
- data/lib/killbill/gen/limit.rb +68 -0
- data/lib/killbill/gen/listing.rb +63 -0
- data/lib/killbill/gen/migration_account_data.rb +228 -0
- data/lib/killbill/gen/migration_plan.rb +143 -0
- data/lib/killbill/gen/mutable_account_data.rb +182 -0
- data/lib/killbill/gen/no_op_payment_plugin_api.rb +254 -0
- data/lib/killbill/gen/payment.rb +183 -20
- data/lib/killbill/gen/payment_api.rb +433 -0
- data/lib/killbill/gen/payment_api_exception.rb +66 -0
- data/lib/killbill/gen/payment_attempt.rb +100 -10
- data/lib/killbill/gen/payment_info_plugin.rb +103 -12
- data/lib/killbill/gen/payment_method.rb +116 -0
- data/lib/killbill/gen/payment_method_info_plugin.rb +64 -7
- data/lib/killbill/gen/payment_method_kv_info.rb +56 -6
- data/lib/killbill/gen/payment_method_plugin.rb +142 -20
- data/lib/killbill/gen/payment_plugin_api.rb +232 -0
- data/lib/killbill/gen/payment_plugin_api_exception.rb +59 -0
- data/lib/killbill/gen/payment_service.rb +62 -0
- data/lib/killbill/gen/plan.rb +143 -0
- data/lib/killbill/gen/plan_change_result.rb +68 -0
- data/lib/killbill/gen/plan_phase.rb +104 -0
- data/lib/killbill/gen/plan_phase_specifier.rb +80 -0
- data/lib/killbill/gen/plan_specifier.rb +73 -0
- data/lib/killbill/gen/price.rb +67 -0
- data/lib/killbill/gen/price_list.rb +74 -0
- data/lib/killbill/gen/price_list_set.rb +56 -0
- data/lib/killbill/gen/product.rb +101 -0
- data/lib/killbill/gen/record_id_api.rb +55 -0
- data/lib/killbill/gen/refund.rb +126 -13
- data/lib/killbill/gen/refund_info_plugin.rb +96 -10
- data/lib/killbill/gen/require_gen.rb +97 -15
- data/lib/killbill/gen/static_catalog.rb +137 -0
- data/lib/killbill/gen/subscription.rb +258 -28
- data/lib/killbill/gen/subscription_bundle.rb +94 -10
- data/lib/killbill/gen/subscription_status_dry_run.rb +89 -0
- data/lib/killbill/gen/subscription_transition.rb +196 -0
- data/lib/killbill/gen/tag.rb +88 -9
- data/lib/killbill/gen/tag_api_exception.rb +66 -0
- data/lib/killbill/gen/tag_definition.rb +110 -10
- data/lib/killbill/gen/tag_definition_api_exception.rb +66 -0
- data/lib/killbill/gen/tag_user_api.rb +239 -0
- data/lib/killbill/gen/tenant.rb +102 -0
- data/lib/killbill/gen/tenant_api_exception.rb +66 -0
- data/lib/killbill/gen/tenant_context.rb +39 -4
- data/lib/killbill/gen/tenant_data.rb +67 -0
- data/lib/killbill/gen/tenant_kv.rb +96 -0
- data/lib/killbill/gen/tenant_service.rb +55 -0
- data/lib/killbill/gen/tenant_user_api.rb +127 -0
- data/lib/killbill/gen/unit.rb +55 -0
- data/lib/killbill/jnotification.rb +1 -1
- data/lib/killbill/jpayment.rb +10 -7
- data/lib/killbill/jplugin.rb +63 -61
- data/lib/killbill/killbill_api.rb +42 -9
- data/spec/killbill/jnotification_spec.rb +15 -1
- data/spec/killbill/jpayment_spec.rb +12 -8
- data/spec/killbill/killbillapi_spec.rb +23 -21
- data/spec/killbill/payment_plugin_spec.rb +1 -9
- data/spec/killbill/payment_test.rb +21 -5
- metadata +96 -22
- data/lib/killbill/gen/audit_log.rb +0 -28
- data/lib/killbill/gen/call_origin.rb +0 -34
- data/lib/killbill/gen/currency.rb +0 -34
- data/lib/killbill/gen/date_time_zone.rb +0 -35
- data/lib/killbill/gen/ext_bus_event_type.rb +0 -34
- data/lib/killbill/gen/invoice_payment_type.rb +0 -34
- data/lib/killbill/gen/object_type.rb +0 -34
- data/lib/killbill/gen/payment_plugin_status.rb +0 -34
- data/lib/killbill/gen/refund_plugin_status.rb +0 -34
- data/lib/killbill/gen/subscription_source_type.rb +0 -34
- data/lib/killbill/gen/subscription_state.rb +0 -34
- data/lib/killbill/gen/user_type.rb +0 -34
- data/lib/killbill/gen/uuid.rb +0 -22
- data/lib/killbill/jconverter.rb +0 -537
- data/lib/killbill/jkillbill_api.rb +0 -137
- data/spec/killbill/jconverter_spec.rb +0 -193
|
@@ -1,20 +1,70 @@
|
|
|
1
|
+
###################################################################################
|
|
2
|
+
# #
|
|
3
|
+
# Copyright 2010-2013 Ning, Inc. #
|
|
4
|
+
# #
|
|
5
|
+
# Ning licenses this file to you under the Apache License, version 2.0 #
|
|
6
|
+
# (the "License"); you may not use this file except in compliance with the #
|
|
7
|
+
# License. You may obtain a copy of the License at: #
|
|
8
|
+
# #
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0 #
|
|
10
|
+
# #
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software #
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT #
|
|
13
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the #
|
|
14
|
+
# License for the specific language governing permissions and limitations #
|
|
15
|
+
# under the License. #
|
|
16
|
+
# #
|
|
17
|
+
###################################################################################
|
|
18
|
+
|
|
1
19
|
|
|
2
20
|
#
|
|
3
|
-
#
|
|
21
|
+
# DO NOT EDIT!!!
|
|
22
|
+
# File automatically generated by killbill-java-parser (git@github.com:killbill/killbill-java-parser.git)
|
|
4
23
|
#
|
|
24
|
+
|
|
25
|
+
|
|
5
26
|
module Killbill
|
|
6
27
|
module Plugin
|
|
7
28
|
module Model
|
|
8
29
|
|
|
9
30
|
class PaymentMethodKVInfo
|
|
10
31
|
|
|
11
|
-
attr_reader :is_updatable, :key, :value
|
|
12
32
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
@value = value
|
|
33
|
+
attr_accessor :key, :value, :is_updatable
|
|
34
|
+
|
|
35
|
+
def initialize()
|
|
17
36
|
end
|
|
37
|
+
|
|
38
|
+
def to_java()
|
|
39
|
+
# conversion for key [type = java.lang.String]
|
|
40
|
+
@key = @key.to_s unless @key.nil?
|
|
41
|
+
|
|
42
|
+
# conversion for value [type = java.lang.Object]
|
|
43
|
+
@value = @value.to_s unless @value.nil?
|
|
44
|
+
|
|
45
|
+
# conversion for is_updatable [type = java.lang.Boolean]
|
|
46
|
+
@is_updatable = @is_updatable.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_updatable)
|
|
47
|
+
Java::com.ning.billing.payment.api.PaymentMethodKVInfo.new(@key, @value, @is_updatable)
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def to_ruby(j_obj)
|
|
51
|
+
# conversion for key [type = java.lang.String]
|
|
52
|
+
@key = j_obj.key
|
|
53
|
+
|
|
54
|
+
# conversion for value [type = java.lang.Object]
|
|
55
|
+
@value = j_obj.value
|
|
56
|
+
|
|
57
|
+
# conversion for is_updatable [type = java.lang.Boolean]
|
|
58
|
+
@is_updatable = j_obj.is_updatable
|
|
59
|
+
if @is_updatable.nil?
|
|
60
|
+
@is_updatable = false
|
|
61
|
+
else
|
|
62
|
+
tmp_bool = (@is_updatable.java_kind_of? java.lang.Boolean) ? @is_updatable.boolean_value : @is_updatable
|
|
63
|
+
@is_updatable = tmp_bool ? true : false
|
|
64
|
+
end
|
|
65
|
+
self
|
|
66
|
+
end
|
|
67
|
+
|
|
18
68
|
end
|
|
19
69
|
end
|
|
20
70
|
end
|
|
@@ -1,35 +1,157 @@
|
|
|
1
|
+
###################################################################################
|
|
2
|
+
# #
|
|
3
|
+
# Copyright 2010-2013 Ning, Inc. #
|
|
4
|
+
# #
|
|
5
|
+
# Ning licenses this file to you under the Apache License, version 2.0 #
|
|
6
|
+
# (the "License"); you may not use this file except in compliance with the #
|
|
7
|
+
# License. You may obtain a copy of the License at: #
|
|
8
|
+
# #
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0 #
|
|
10
|
+
# #
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software #
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT #
|
|
13
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the #
|
|
14
|
+
# License for the specific language governing permissions and limitations #
|
|
15
|
+
# under the License. #
|
|
16
|
+
# #
|
|
17
|
+
###################################################################################
|
|
18
|
+
|
|
1
19
|
|
|
2
20
|
#
|
|
3
|
-
#
|
|
21
|
+
# DO NOT EDIT!!!
|
|
22
|
+
# File automatically generated by killbill-java-parser (git@github.com:killbill/killbill-java-parser.git)
|
|
4
23
|
#
|
|
24
|
+
|
|
25
|
+
|
|
5
26
|
module Killbill
|
|
6
27
|
module Plugin
|
|
7
28
|
module Model
|
|
8
29
|
|
|
30
|
+
java_package 'com.ning.billing.payment.api'
|
|
9
31
|
class PaymentMethodPlugin
|
|
10
32
|
|
|
11
33
|
include com.ning.billing.payment.api.PaymentMethodPlugin
|
|
12
34
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
def initialize(
|
|
16
|
-
@external_payment_method_id = external_payment_method_id
|
|
17
|
-
@is_default_payment_method = is_default_payment_method
|
|
18
|
-
@properties = properties
|
|
19
|
-
@value_string = value_string
|
|
20
|
-
@type = type
|
|
21
|
-
@cc_name = cc_name
|
|
22
|
-
@cc_type = cc_type
|
|
23
|
-
@cc_expiration_month = cc_expiration_month
|
|
24
|
-
@cc_expiration_year = cc_expiration_year
|
|
25
|
-
@cc_last4 = cc_last4
|
|
26
|
-
@address1 = address1
|
|
27
|
-
@address2 = address2
|
|
28
|
-
@city = city
|
|
29
|
-
@state = state
|
|
30
|
-
@zip = zip
|
|
31
|
-
@country = country
|
|
35
|
+
attr_accessor :external_payment_method_id, :is_default_payment_method, :properties, :type, :cc_name, :cc_type, :cc_expiration_month, :cc_expiration_year, :cc_last4, :address1, :address2, :city, :state, :zip, :country
|
|
36
|
+
|
|
37
|
+
def initialize()
|
|
32
38
|
end
|
|
39
|
+
|
|
40
|
+
def to_java()
|
|
41
|
+
# conversion for external_payment_method_id [type = java.lang.String]
|
|
42
|
+
@external_payment_method_id = @external_payment_method_id.to_s unless @external_payment_method_id.nil?
|
|
43
|
+
|
|
44
|
+
# conversion for is_default_payment_method [type = boolean]
|
|
45
|
+
@is_default_payment_method = @is_default_payment_method.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_default_payment_method)
|
|
46
|
+
|
|
47
|
+
# conversion for properties [type = java.util.List]
|
|
48
|
+
tmp = java.util.ArrayList.new
|
|
49
|
+
(@properties || []).each do |m|
|
|
50
|
+
# conversion for m [type = com.ning.billing.payment.api.PaymentMethodKVInfo]
|
|
51
|
+
m = m.to_java unless m.nil?
|
|
52
|
+
tmp.add(m)
|
|
53
|
+
end
|
|
54
|
+
@properties = tmp
|
|
55
|
+
|
|
56
|
+
# conversion for type [type = java.lang.String]
|
|
57
|
+
@type = @type.to_s unless @type.nil?
|
|
58
|
+
|
|
59
|
+
# conversion for cc_name [type = java.lang.String]
|
|
60
|
+
@cc_name = @cc_name.to_s unless @cc_name.nil?
|
|
61
|
+
|
|
62
|
+
# conversion for cc_type [type = java.lang.String]
|
|
63
|
+
@cc_type = @cc_type.to_s unless @cc_type.nil?
|
|
64
|
+
|
|
65
|
+
# conversion for cc_expiration_month [type = java.lang.String]
|
|
66
|
+
@cc_expiration_month = @cc_expiration_month.to_s unless @cc_expiration_month.nil?
|
|
67
|
+
|
|
68
|
+
# conversion for cc_expiration_year [type = java.lang.String]
|
|
69
|
+
@cc_expiration_year = @cc_expiration_year.to_s unless @cc_expiration_year.nil?
|
|
70
|
+
|
|
71
|
+
# conversion for cc_last4 [type = java.lang.String]
|
|
72
|
+
@cc_last4 = @cc_last4.to_s unless @cc_last4.nil?
|
|
73
|
+
|
|
74
|
+
# conversion for address1 [type = java.lang.String]
|
|
75
|
+
@address1 = @address1.to_s unless @address1.nil?
|
|
76
|
+
|
|
77
|
+
# conversion for address2 [type = java.lang.String]
|
|
78
|
+
@address2 = @address2.to_s unless @address2.nil?
|
|
79
|
+
|
|
80
|
+
# conversion for city [type = java.lang.String]
|
|
81
|
+
@city = @city.to_s unless @city.nil?
|
|
82
|
+
|
|
83
|
+
# conversion for state [type = java.lang.String]
|
|
84
|
+
@state = @state.to_s unless @state.nil?
|
|
85
|
+
|
|
86
|
+
# conversion for zip [type = java.lang.String]
|
|
87
|
+
@zip = @zip.to_s unless @zip.nil?
|
|
88
|
+
|
|
89
|
+
# conversion for country [type = java.lang.String]
|
|
90
|
+
@country = @country.to_s unless @country.nil?
|
|
91
|
+
self
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def to_ruby(j_obj)
|
|
95
|
+
# conversion for external_payment_method_id [type = java.lang.String]
|
|
96
|
+
@external_payment_method_id = j_obj.external_payment_method_id
|
|
97
|
+
|
|
98
|
+
# conversion for is_default_payment_method [type = boolean]
|
|
99
|
+
@is_default_payment_method = j_obj.is_default_payment_method
|
|
100
|
+
if @is_default_payment_method.nil?
|
|
101
|
+
@is_default_payment_method = false
|
|
102
|
+
else
|
|
103
|
+
tmp_bool = (@is_default_payment_method.java_kind_of? java.lang.Boolean) ? @is_default_payment_method.boolean_value : @is_default_payment_method
|
|
104
|
+
@is_default_payment_method = tmp_bool ? true : false
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
# conversion for properties [type = java.util.List]
|
|
108
|
+
@properties = j_obj.properties
|
|
109
|
+
tmp = []
|
|
110
|
+
(@properties || []).each do |m|
|
|
111
|
+
# conversion for m [type = com.ning.billing.payment.api.PaymentMethodKVInfo]
|
|
112
|
+
m = Killbill::Plugin::Model::PaymentMethodKVInfo.new.to_ruby(m) unless m.nil?
|
|
113
|
+
tmp << m
|
|
114
|
+
end
|
|
115
|
+
@properties = tmp
|
|
116
|
+
|
|
117
|
+
# conversion for type [type = java.lang.String]
|
|
118
|
+
@type = j_obj.type
|
|
119
|
+
|
|
120
|
+
# conversion for cc_name [type = java.lang.String]
|
|
121
|
+
@cc_name = j_obj.cc_name
|
|
122
|
+
|
|
123
|
+
# conversion for cc_type [type = java.lang.String]
|
|
124
|
+
@cc_type = j_obj.cc_type
|
|
125
|
+
|
|
126
|
+
# conversion for cc_expiration_month [type = java.lang.String]
|
|
127
|
+
@cc_expiration_month = j_obj.cc_expiration_month
|
|
128
|
+
|
|
129
|
+
# conversion for cc_expiration_year [type = java.lang.String]
|
|
130
|
+
@cc_expiration_year = j_obj.cc_expiration_year
|
|
131
|
+
|
|
132
|
+
# conversion for cc_last4 [type = java.lang.String]
|
|
133
|
+
@cc_last4 = j_obj.cc_last4
|
|
134
|
+
|
|
135
|
+
# conversion for address1 [type = java.lang.String]
|
|
136
|
+
@address1 = j_obj.address1
|
|
137
|
+
|
|
138
|
+
# conversion for address2 [type = java.lang.String]
|
|
139
|
+
@address2 = j_obj.address2
|
|
140
|
+
|
|
141
|
+
# conversion for city [type = java.lang.String]
|
|
142
|
+
@city = j_obj.city
|
|
143
|
+
|
|
144
|
+
# conversion for state [type = java.lang.String]
|
|
145
|
+
@state = j_obj.state
|
|
146
|
+
|
|
147
|
+
# conversion for zip [type = java.lang.String]
|
|
148
|
+
@zip = j_obj.zip
|
|
149
|
+
|
|
150
|
+
# conversion for country [type = java.lang.String]
|
|
151
|
+
@country = j_obj.country
|
|
152
|
+
self
|
|
153
|
+
end
|
|
154
|
+
|
|
33
155
|
end
|
|
34
156
|
end
|
|
35
157
|
end
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
###################################################################################
|
|
2
|
+
# #
|
|
3
|
+
# Copyright 2010-2013 Ning, Inc. #
|
|
4
|
+
# #
|
|
5
|
+
# Ning licenses this file to you under the Apache License, version 2.0 #
|
|
6
|
+
# (the "License"); you may not use this file except in compliance with the #
|
|
7
|
+
# License. You may obtain a copy of the License at: #
|
|
8
|
+
# #
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0 #
|
|
10
|
+
# #
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software #
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT #
|
|
13
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the #
|
|
14
|
+
# License for the specific language governing permissions and limitations #
|
|
15
|
+
# under the License. #
|
|
16
|
+
# #
|
|
17
|
+
###################################################################################
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
#
|
|
21
|
+
# DO NOT EDIT!!!
|
|
22
|
+
# File automatically generated by killbill-java-parser (git@github.com:killbill/killbill-java-parser.git)
|
|
23
|
+
#
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
module Killbill
|
|
27
|
+
module Plugin
|
|
28
|
+
module Api
|
|
29
|
+
|
|
30
|
+
java_package 'com.ning.billing.payment.plugin.api'
|
|
31
|
+
class PaymentPluginApi
|
|
32
|
+
|
|
33
|
+
include com.ning.billing.payment.plugin.api.PaymentPluginApi
|
|
34
|
+
|
|
35
|
+
def initialize(real_java_api)
|
|
36
|
+
@real_java_api = real_java_api
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
java_signature 'Java::com.ning.billing.payment.plugin.api.PaymentInfoPlugin processPayment(Java::java.util.UUID, Java::java.util.UUID, Java::java.util.UUID, Java::java.math.BigDecimal, Java::com.ning.billing.catalog.api.Currency, Java::com.ning.billing.util.callcontext.CallContext)'
|
|
41
|
+
def process_payment(kbAccountId, kbPaymentId, kbPaymentMethodId, amount, currency, context)
|
|
42
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
43
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
44
|
+
# conversion for kbPaymentId [type = java.util.UUID]
|
|
45
|
+
kbPaymentId = java.util.UUID.fromString(kbPaymentId.to_s) unless kbPaymentId.nil?
|
|
46
|
+
# conversion for kbPaymentMethodId [type = java.util.UUID]
|
|
47
|
+
kbPaymentMethodId = java.util.UUID.fromString(kbPaymentMethodId.to_s) unless kbPaymentMethodId.nil?
|
|
48
|
+
# conversion for amount [type = java.math.BigDecimal]
|
|
49
|
+
if amount.nil?
|
|
50
|
+
amount = java.math.BigDecimal::ZERO
|
|
51
|
+
else
|
|
52
|
+
amount = java.math.BigDecimal.new(amount.to_i)
|
|
53
|
+
end
|
|
54
|
+
# conversion for currency [type = com.ning.billing.catalog.api.Currency]
|
|
55
|
+
currency = Java::com.ning.billing.catalog.api.Currency.value_of("#{currency.to_s}") unless currency.nil?
|
|
56
|
+
# conversion for context [type = com.ning.billing.util.callcontext.CallContext]
|
|
57
|
+
context = context.to_java unless context.nil?
|
|
58
|
+
begin
|
|
59
|
+
res = @real_java_api.process_payment(kbAccountId, kbPaymentId, kbPaymentMethodId, amount, currency, context)
|
|
60
|
+
# conversion for res [type = com.ning.billing.payment.plugin.api.PaymentInfoPlugin]
|
|
61
|
+
res = Killbill::Plugin::Model::PaymentInfoPlugin.new.to_ruby(res) unless res.nil?
|
|
62
|
+
return res
|
|
63
|
+
rescue Java::com.ning.billing.payment.plugin.api.PaymentPluginApiException => e
|
|
64
|
+
raise Killbill::Plugin::Model::PaymentPluginApiException.new.to_ruby(e)
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
java_signature 'Java::com.ning.billing.payment.plugin.api.PaymentInfoPlugin getPaymentInfo(Java::java.util.UUID, Java::java.util.UUID, Java::com.ning.billing.util.callcontext.TenantContext)'
|
|
69
|
+
def get_payment_info(kbAccountId, kbPaymentId, context)
|
|
70
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
71
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
72
|
+
# conversion for kbPaymentId [type = java.util.UUID]
|
|
73
|
+
kbPaymentId = java.util.UUID.fromString(kbPaymentId.to_s) unless kbPaymentId.nil?
|
|
74
|
+
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
|
75
|
+
context = context.to_java unless context.nil?
|
|
76
|
+
begin
|
|
77
|
+
res = @real_java_api.get_payment_info(kbAccountId, kbPaymentId, context)
|
|
78
|
+
# conversion for res [type = com.ning.billing.payment.plugin.api.PaymentInfoPlugin]
|
|
79
|
+
res = Killbill::Plugin::Model::PaymentInfoPlugin.new.to_ruby(res) unless res.nil?
|
|
80
|
+
return res
|
|
81
|
+
rescue Java::com.ning.billing.payment.plugin.api.PaymentPluginApiException => e
|
|
82
|
+
raise Killbill::Plugin::Model::PaymentPluginApiException.new.to_ruby(e)
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
java_signature 'Java::com.ning.billing.payment.plugin.api.RefundInfoPlugin processRefund(Java::java.util.UUID, Java::java.util.UUID, Java::java.math.BigDecimal, Java::com.ning.billing.catalog.api.Currency, Java::com.ning.billing.util.callcontext.CallContext)'
|
|
87
|
+
def process_refund(kbAccountId, kbPaymentId, refundAmount, currency, context)
|
|
88
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
89
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
90
|
+
# conversion for kbPaymentId [type = java.util.UUID]
|
|
91
|
+
kbPaymentId = java.util.UUID.fromString(kbPaymentId.to_s) unless kbPaymentId.nil?
|
|
92
|
+
# conversion for refundAmount [type = java.math.BigDecimal]
|
|
93
|
+
if refundAmount.nil?
|
|
94
|
+
refundAmount = java.math.BigDecimal::ZERO
|
|
95
|
+
else
|
|
96
|
+
refundAmount = java.math.BigDecimal.new(refundAmount.to_i)
|
|
97
|
+
end
|
|
98
|
+
# conversion for currency [type = com.ning.billing.catalog.api.Currency]
|
|
99
|
+
currency = Java::com.ning.billing.catalog.api.Currency.value_of("#{currency.to_s}") unless currency.nil?
|
|
100
|
+
# conversion for context [type = com.ning.billing.util.callcontext.CallContext]
|
|
101
|
+
context = context.to_java unless context.nil?
|
|
102
|
+
begin
|
|
103
|
+
res = @real_java_api.process_refund(kbAccountId, kbPaymentId, refundAmount, currency, context)
|
|
104
|
+
# conversion for res [type = com.ning.billing.payment.plugin.api.RefundInfoPlugin]
|
|
105
|
+
res = Killbill::Plugin::Model::RefundInfoPlugin.new.to_ruby(res) unless res.nil?
|
|
106
|
+
return res
|
|
107
|
+
rescue Java::com.ning.billing.payment.plugin.api.PaymentPluginApiException => e
|
|
108
|
+
raise Killbill::Plugin::Model::PaymentPluginApiException.new.to_ruby(e)
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
java_signature 'Java::java.util.List getRefundInfo(Java::java.util.UUID, Java::java.util.UUID, Java::com.ning.billing.util.callcontext.TenantContext)'
|
|
113
|
+
def get_refund_info(kbAccountId, kbPaymentId, context)
|
|
114
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
115
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
116
|
+
# conversion for kbPaymentId [type = java.util.UUID]
|
|
117
|
+
kbPaymentId = java.util.UUID.fromString(kbPaymentId.to_s) unless kbPaymentId.nil?
|
|
118
|
+
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
|
119
|
+
context = context.to_java unless context.nil?
|
|
120
|
+
begin
|
|
121
|
+
res = @real_java_api.get_refund_info(kbAccountId, kbPaymentId, context)
|
|
122
|
+
# conversion for res [type = java.util.List]
|
|
123
|
+
tmp = []
|
|
124
|
+
(res || []).each do |m|
|
|
125
|
+
# conversion for m [type = com.ning.billing.payment.plugin.api.RefundInfoPlugin]
|
|
126
|
+
m = Killbill::Plugin::Model::RefundInfoPlugin.new.to_ruby(m) unless m.nil?
|
|
127
|
+
tmp << m
|
|
128
|
+
end
|
|
129
|
+
res = tmp
|
|
130
|
+
return res
|
|
131
|
+
rescue Java::com.ning.billing.payment.plugin.api.PaymentPluginApiException => e
|
|
132
|
+
raise Killbill::Plugin::Model::PaymentPluginApiException.new.to_ruby(e)
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
java_signature 'Java::void addPaymentMethod(Java::java.util.UUID, Java::java.util.UUID, Java::com.ning.billing.payment.api.PaymentMethodPlugin, Java::boolean, Java::com.ning.billing.util.callcontext.CallContext)'
|
|
137
|
+
def add_payment_method(kbAccountId, kbPaymentMethodId, paymentMethodProps, setDefault, context)
|
|
138
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
139
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
140
|
+
# conversion for kbPaymentMethodId [type = java.util.UUID]
|
|
141
|
+
kbPaymentMethodId = java.util.UUID.fromString(kbPaymentMethodId.to_s) unless kbPaymentMethodId.nil?
|
|
142
|
+
# conversion for paymentMethodProps [type = com.ning.billing.payment.api.PaymentMethodPlugin]
|
|
143
|
+
paymentMethodProps = paymentMethodProps.to_java unless paymentMethodProps.nil?
|
|
144
|
+
# conversion for setDefault [type = boolean]
|
|
145
|
+
setDefault = setDefault.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(setDefault)
|
|
146
|
+
# conversion for context [type = com.ning.billing.util.callcontext.CallContext]
|
|
147
|
+
context = context.to_java unless context.nil?
|
|
148
|
+
@real_java_api.add_payment_method(kbAccountId, kbPaymentMethodId, paymentMethodProps, setDefault, context)
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
java_signature 'Java::void deletePaymentMethod(Java::java.util.UUID, Java::java.util.UUID, Java::com.ning.billing.util.callcontext.CallContext)'
|
|
152
|
+
def delete_payment_method(kbAccountId, kbPaymentMethodId, context)
|
|
153
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
154
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
155
|
+
# conversion for kbPaymentMethodId [type = java.util.UUID]
|
|
156
|
+
kbPaymentMethodId = java.util.UUID.fromString(kbPaymentMethodId.to_s) unless kbPaymentMethodId.nil?
|
|
157
|
+
# conversion for context [type = com.ning.billing.util.callcontext.CallContext]
|
|
158
|
+
context = context.to_java unless context.nil?
|
|
159
|
+
@real_java_api.delete_payment_method(kbAccountId, kbPaymentMethodId, context)
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
java_signature 'Java::com.ning.billing.payment.api.PaymentMethodPlugin getPaymentMethodDetail(Java::java.util.UUID, Java::java.util.UUID, Java::com.ning.billing.util.callcontext.TenantContext)'
|
|
163
|
+
def get_payment_method_detail(kbAccountId, kbPaymentMethodId, context)
|
|
164
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
165
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
166
|
+
# conversion for kbPaymentMethodId [type = java.util.UUID]
|
|
167
|
+
kbPaymentMethodId = java.util.UUID.fromString(kbPaymentMethodId.to_s) unless kbPaymentMethodId.nil?
|
|
168
|
+
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
|
169
|
+
context = context.to_java unless context.nil?
|
|
170
|
+
begin
|
|
171
|
+
res = @real_java_api.get_payment_method_detail(kbAccountId, kbPaymentMethodId, context)
|
|
172
|
+
# conversion for res [type = com.ning.billing.payment.api.PaymentMethodPlugin]
|
|
173
|
+
res = Killbill::Plugin::Model::PaymentMethodPlugin.new.to_ruby(res) unless res.nil?
|
|
174
|
+
return res
|
|
175
|
+
rescue Java::com.ning.billing.payment.plugin.api.PaymentPluginApiException => e
|
|
176
|
+
raise Killbill::Plugin::Model::PaymentPluginApiException.new.to_ruby(e)
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
java_signature 'Java::void setDefaultPaymentMethod(Java::java.util.UUID, Java::java.util.UUID, Java::com.ning.billing.util.callcontext.CallContext)'
|
|
181
|
+
def set_default_payment_method(kbAccountId, kbPaymentMethodId, context)
|
|
182
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
183
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
184
|
+
# conversion for kbPaymentMethodId [type = java.util.UUID]
|
|
185
|
+
kbPaymentMethodId = java.util.UUID.fromString(kbPaymentMethodId.to_s) unless kbPaymentMethodId.nil?
|
|
186
|
+
# conversion for context [type = com.ning.billing.util.callcontext.CallContext]
|
|
187
|
+
context = context.to_java unless context.nil?
|
|
188
|
+
@real_java_api.set_default_payment_method(kbAccountId, kbPaymentMethodId, context)
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
java_signature 'Java::java.util.List getPaymentMethods(Java::java.util.UUID, Java::boolean, Java::com.ning.billing.util.callcontext.CallContext)'
|
|
192
|
+
def get_payment_methods(kbAccountId, refreshFromGateway, context)
|
|
193
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
194
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
195
|
+
# conversion for refreshFromGateway [type = boolean]
|
|
196
|
+
refreshFromGateway = refreshFromGateway.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(refreshFromGateway)
|
|
197
|
+
# conversion for context [type = com.ning.billing.util.callcontext.CallContext]
|
|
198
|
+
context = context.to_java unless context.nil?
|
|
199
|
+
begin
|
|
200
|
+
res = @real_java_api.get_payment_methods(kbAccountId, refreshFromGateway, context)
|
|
201
|
+
# conversion for res [type = java.util.List]
|
|
202
|
+
tmp = []
|
|
203
|
+
(res || []).each do |m|
|
|
204
|
+
# conversion for m [type = com.ning.billing.payment.plugin.api.PaymentMethodInfoPlugin]
|
|
205
|
+
m = Killbill::Plugin::Model::PaymentMethodInfoPlugin.new.to_ruby(m) unless m.nil?
|
|
206
|
+
tmp << m
|
|
207
|
+
end
|
|
208
|
+
res = tmp
|
|
209
|
+
return res
|
|
210
|
+
rescue Java::com.ning.billing.payment.plugin.api.PaymentPluginApiException => e
|
|
211
|
+
raise Killbill::Plugin::Model::PaymentPluginApiException.new.to_ruby(e)
|
|
212
|
+
end
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
java_signature 'Java::void resetPaymentMethods(Java::java.util.UUID, Java::java.util.List)'
|
|
216
|
+
def reset_payment_methods(kbAccountId, paymentMethods)
|
|
217
|
+
# conversion for kbAccountId [type = java.util.UUID]
|
|
218
|
+
kbAccountId = java.util.UUID.fromString(kbAccountId.to_s) unless kbAccountId.nil?
|
|
219
|
+
# conversion for paymentMethods [type = java.util.List]
|
|
220
|
+
tmp = java.util.ArrayList.new
|
|
221
|
+
(paymentMethods || []).each do |m|
|
|
222
|
+
# conversion for m [type = com.ning.billing.payment.plugin.api.PaymentMethodInfoPlugin]
|
|
223
|
+
m = m.to_java unless m.nil?
|
|
224
|
+
tmp.add(m)
|
|
225
|
+
end
|
|
226
|
+
paymentMethods = tmp
|
|
227
|
+
@real_java_api.reset_payment_methods(kbAccountId, paymentMethods)
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
end
|