killbill 1.0.19 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,73 @@
|
|
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 Model
|
29
|
+
|
30
|
+
class PlanSpecifier
|
31
|
+
|
32
|
+
|
33
|
+
attr_accessor :product_name, :product_category, :billing_period, :price_list_name
|
34
|
+
|
35
|
+
def initialize()
|
36
|
+
end
|
37
|
+
|
38
|
+
def to_java()
|
39
|
+
# conversion for product_name [type = java.lang.String]
|
40
|
+
@product_name = @product_name.to_s unless @product_name.nil?
|
41
|
+
|
42
|
+
# conversion for product_category [type = com.ning.billing.catalog.api.ProductCategory]
|
43
|
+
@product_category = Java::com.ning.billing.catalog.api.ProductCategory.value_of("#{@product_category.to_s}") unless @product_category.nil?
|
44
|
+
|
45
|
+
# conversion for billing_period [type = com.ning.billing.catalog.api.BillingPeriod]
|
46
|
+
@billing_period = Java::com.ning.billing.catalog.api.BillingPeriod.value_of("#{@billing_period.to_s}") unless @billing_period.nil?
|
47
|
+
|
48
|
+
# conversion for price_list_name [type = java.lang.String]
|
49
|
+
@price_list_name = @price_list_name.to_s unless @price_list_name.nil?
|
50
|
+
Java::com.ning.billing.catalog.api.PlanSpecifier.new(@product_name, @product_category, @billing_period, @price_list_name)
|
51
|
+
end
|
52
|
+
|
53
|
+
def to_ruby(j_obj)
|
54
|
+
# conversion for product_name [type = java.lang.String]
|
55
|
+
@product_name = j_obj.product_name
|
56
|
+
|
57
|
+
# conversion for product_category [type = com.ning.billing.catalog.api.ProductCategory]
|
58
|
+
@product_category = j_obj.product_category
|
59
|
+
@product_category = @product_category.to_s.to_sym unless @product_category.nil?
|
60
|
+
|
61
|
+
# conversion for billing_period [type = com.ning.billing.catalog.api.BillingPeriod]
|
62
|
+
@billing_period = j_obj.billing_period
|
63
|
+
@billing_period = @billing_period.to_s.to_sym unless @billing_period.nil?
|
64
|
+
|
65
|
+
# conversion for price_list_name [type = java.lang.String]
|
66
|
+
@price_list_name = j_obj.price_list_name
|
67
|
+
self
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,67 @@
|
|
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 Model
|
29
|
+
|
30
|
+
java_package 'com.ning.billing.catalog.api'
|
31
|
+
class Price
|
32
|
+
|
33
|
+
include com.ning.billing.catalog.api.Price
|
34
|
+
|
35
|
+
attr_accessor :currency, :value
|
36
|
+
|
37
|
+
def initialize()
|
38
|
+
end
|
39
|
+
|
40
|
+
def to_java()
|
41
|
+
# conversion for currency [type = com.ning.billing.catalog.api.Currency]
|
42
|
+
@currency = Java::com.ning.billing.catalog.api.Currency.value_of("#{@currency.to_s}") unless @currency.nil?
|
43
|
+
|
44
|
+
# conversion for value [type = java.math.BigDecimal]
|
45
|
+
if @value.nil?
|
46
|
+
@value = java.math.BigDecimal::ZERO
|
47
|
+
else
|
48
|
+
@value = java.math.BigDecimal.new(@value.to_i)
|
49
|
+
end
|
50
|
+
self
|
51
|
+
end
|
52
|
+
|
53
|
+
def to_ruby(j_obj)
|
54
|
+
# conversion for currency [type = com.ning.billing.catalog.api.Currency]
|
55
|
+
@currency = j_obj.currency
|
56
|
+
@currency = @currency.to_s.to_sym unless @currency.nil?
|
57
|
+
|
58
|
+
# conversion for value [type = java.math.BigDecimal]
|
59
|
+
@value = j_obj.value
|
60
|
+
@value = @value.nil? ? 0 : @value.to_s.to_i
|
61
|
+
self
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,74 @@
|
|
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 Model
|
29
|
+
|
30
|
+
java_package 'com.ning.billing.catalog.api'
|
31
|
+
class PriceList
|
32
|
+
|
33
|
+
include com.ning.billing.catalog.api.PriceList
|
34
|
+
|
35
|
+
attr_accessor :name, :is_retired, :plans
|
36
|
+
|
37
|
+
def initialize()
|
38
|
+
end
|
39
|
+
|
40
|
+
def to_java()
|
41
|
+
# conversion for name [type = java.lang.String]
|
42
|
+
@name = @name.to_s unless @name.nil?
|
43
|
+
|
44
|
+
# conversion for is_retired [type = boolean]
|
45
|
+
@is_retired = @is_retired.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_retired)
|
46
|
+
|
47
|
+
# conversion for plans [type = com.ning.billing.catalog.api.Plan]
|
48
|
+
@plans = @plans.to_java unless @plans.nil?
|
49
|
+
self
|
50
|
+
end
|
51
|
+
|
52
|
+
def to_ruby(j_obj)
|
53
|
+
# conversion for name [type = java.lang.String]
|
54
|
+
@name = j_obj.name
|
55
|
+
|
56
|
+
# conversion for is_retired [type = boolean]
|
57
|
+
@is_retired = j_obj.is_retired
|
58
|
+
if @is_retired.nil?
|
59
|
+
@is_retired = false
|
60
|
+
else
|
61
|
+
tmp_bool = (@is_retired.java_kind_of? java.lang.Boolean) ? @is_retired.boolean_value : @is_retired
|
62
|
+
@is_retired = tmp_bool ? true : false
|
63
|
+
end
|
64
|
+
|
65
|
+
# conversion for plans [type = com.ning.billing.catalog.api.Plan]
|
66
|
+
@plans = j_obj.plans
|
67
|
+
@plans = Killbill::Plugin::Model::Plan.new.to_ruby(@plans) unless @plans.nil?
|
68
|
+
self
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,56 @@
|
|
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 Model
|
29
|
+
|
30
|
+
java_package 'com.ning.billing.catalog.api'
|
31
|
+
class PriceListSet
|
32
|
+
|
33
|
+
include com.ning.billing.catalog.api.PriceListSet
|
34
|
+
|
35
|
+
attr_accessor :plan_list_from
|
36
|
+
|
37
|
+
def initialize()
|
38
|
+
end
|
39
|
+
|
40
|
+
def to_java()
|
41
|
+
# conversion for plan_list_from [type = com.ning.billing.catalog.api.Plan]
|
42
|
+
@plan_list_from = @plan_list_from.to_java unless @plan_list_from.nil?
|
43
|
+
self
|
44
|
+
end
|
45
|
+
|
46
|
+
def to_ruby(j_obj)
|
47
|
+
# conversion for plan_list_from [type = com.ning.billing.catalog.api.Plan]
|
48
|
+
@plan_list_from = j_obj.plan_list_from
|
49
|
+
@plan_list_from = Killbill::Plugin::Model::Plan.new.to_ruby(@plan_list_from) unless @plan_list_from.nil?
|
50
|
+
self
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,101 @@
|
|
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 Model
|
29
|
+
|
30
|
+
java_package 'com.ning.billing.catalog.api'
|
31
|
+
class Product
|
32
|
+
|
33
|
+
include com.ning.billing.catalog.api.Product
|
34
|
+
|
35
|
+
attr_accessor :name, :is_retired, :available, :included, :category, :catalog_name, :limits
|
36
|
+
|
37
|
+
def initialize()
|
38
|
+
end
|
39
|
+
|
40
|
+
def to_java()
|
41
|
+
# conversion for name [type = java.lang.String]
|
42
|
+
@name = @name.to_s unless @name.nil?
|
43
|
+
|
44
|
+
# conversion for is_retired [type = boolean]
|
45
|
+
@is_retired = @is_retired.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_retired)
|
46
|
+
|
47
|
+
# conversion for available [type = com.ning.billing.catalog.api.Product]
|
48
|
+
@available = @available.to_java unless @available.nil?
|
49
|
+
|
50
|
+
# conversion for included [type = com.ning.billing.catalog.api.Product]
|
51
|
+
@included = @included.to_java unless @included.nil?
|
52
|
+
|
53
|
+
# conversion for category [type = com.ning.billing.catalog.api.ProductCategory]
|
54
|
+
@category = Java::com.ning.billing.catalog.api.ProductCategory.value_of("#{@category.to_s}") unless @category.nil?
|
55
|
+
|
56
|
+
# conversion for catalog_name [type = java.lang.String]
|
57
|
+
@catalog_name = @catalog_name.to_s unless @catalog_name.nil?
|
58
|
+
|
59
|
+
# conversion for limits [type = com.ning.billing.catalog.api.Limit]
|
60
|
+
@limits = @limits.to_java unless @limits.nil?
|
61
|
+
self
|
62
|
+
end
|
63
|
+
|
64
|
+
def to_ruby(j_obj)
|
65
|
+
# conversion for name [type = java.lang.String]
|
66
|
+
@name = j_obj.name
|
67
|
+
|
68
|
+
# conversion for is_retired [type = boolean]
|
69
|
+
@is_retired = j_obj.is_retired
|
70
|
+
if @is_retired.nil?
|
71
|
+
@is_retired = false
|
72
|
+
else
|
73
|
+
tmp_bool = (@is_retired.java_kind_of? java.lang.Boolean) ? @is_retired.boolean_value : @is_retired
|
74
|
+
@is_retired = tmp_bool ? true : false
|
75
|
+
end
|
76
|
+
|
77
|
+
# conversion for available [type = com.ning.billing.catalog.api.Product]
|
78
|
+
@available = j_obj.available
|
79
|
+
@available = Killbill::Plugin::Model::Product.new.to_ruby(@available) unless @available.nil?
|
80
|
+
|
81
|
+
# conversion for included [type = com.ning.billing.catalog.api.Product]
|
82
|
+
@included = j_obj.included
|
83
|
+
@included = Killbill::Plugin::Model::Product.new.to_ruby(@included) unless @included.nil?
|
84
|
+
|
85
|
+
# conversion for category [type = com.ning.billing.catalog.api.ProductCategory]
|
86
|
+
@category = j_obj.category
|
87
|
+
@category = @category.to_s.to_sym unless @category.nil?
|
88
|
+
|
89
|
+
# conversion for catalog_name [type = java.lang.String]
|
90
|
+
@catalog_name = j_obj.catalog_name
|
91
|
+
|
92
|
+
# conversion for limits [type = com.ning.billing.catalog.api.Limit]
|
93
|
+
@limits = j_obj.limits
|
94
|
+
@limits = Killbill::Plugin::Model::Limit.new.to_ruby(@limits) unless @limits.nil?
|
95
|
+
self
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,55 @@
|
|
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.util.api'
|
31
|
+
class RecordIdApi
|
32
|
+
|
33
|
+
include com.ning.billing.util.api.RecordIdApi
|
34
|
+
|
35
|
+
def initialize(real_java_api)
|
36
|
+
@real_java_api = real_java_api
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
java_signature 'Java::java.lang.Long getRecordId(Java::java.util.UUID, Java::com.ning.billing.ObjectType, Java::com.ning.billing.util.callcontext.TenantContext)'
|
41
|
+
def get_record_id(objectId, objectType, tenantContext)
|
42
|
+
# conversion for objectId [type = java.util.UUID]
|
43
|
+
objectId = java.util.UUID.fromString(objectId.to_s) unless objectId.nil?
|
44
|
+
# conversion for objectType [type = com.ning.billing.ObjectType]
|
45
|
+
objectType = Java::com.ning.billing.ObjectType.value_of("#{objectType.to_s}") unless objectType.nil?
|
46
|
+
# conversion for tenantContext [type = com.ning.billing.util.callcontext.TenantContext]
|
47
|
+
tenantContext = tenantContext.to_java unless tenantContext.nil?
|
48
|
+
res = @real_java_api.get_record_id(objectId, objectType, tenantContext)
|
49
|
+
# conversion for res [type = java.lang.Long]
|
50
|
+
return res
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
data/lib/killbill/gen/refund.rb
CHANGED
@@ -1,28 +1,141 @@
|
|
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 Refund
|
10
32
|
|
11
33
|
include com.ning.billing.payment.api.Refund
|
12
34
|
|
13
|
-
|
14
|
-
|
15
|
-
def initialize(
|
16
|
-
@id = id
|
17
|
-
@created_date = created_date
|
18
|
-
@updated_date = updated_date
|
19
|
-
@payment_id = payment_id
|
20
|
-
@is_adjusted = is_adjusted
|
21
|
-
@refund_amount = refund_amount
|
22
|
-
@currency = currency
|
23
|
-
@effective_date = effective_date
|
24
|
-
@plugin_detail = plugin_detail
|
35
|
+
attr_accessor :id, :created_date, :updated_date, :payment_id, :is_adjusted, :refund_amount, :currency, :effective_date, :plugin_detail
|
36
|
+
|
37
|
+
def initialize()
|
25
38
|
end
|
39
|
+
|
40
|
+
def to_java()
|
41
|
+
# conversion for id [type = java.util.UUID]
|
42
|
+
@id = java.util.UUID.fromString(@id.to_s) unless @id.nil?
|
43
|
+
|
44
|
+
# conversion for created_date [type = org.joda.time.DateTime]
|
45
|
+
if !@created_date.nil?
|
46
|
+
@created_date = (@created_date.kind_of? Time) ? DateTime.parse(@created_date.to_s) : @created_date
|
47
|
+
@created_date = Java::org.joda.time.DateTime.new(@created_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
|
48
|
+
end
|
49
|
+
|
50
|
+
# conversion for updated_date [type = org.joda.time.DateTime]
|
51
|
+
if !@updated_date.nil?
|
52
|
+
@updated_date = (@updated_date.kind_of? Time) ? DateTime.parse(@updated_date.to_s) : @updated_date
|
53
|
+
@updated_date = Java::org.joda.time.DateTime.new(@updated_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
|
54
|
+
end
|
55
|
+
|
56
|
+
# conversion for payment_id [type = java.util.UUID]
|
57
|
+
@payment_id = java.util.UUID.fromString(@payment_id.to_s) unless @payment_id.nil?
|
58
|
+
|
59
|
+
# conversion for is_adjusted [type = boolean]
|
60
|
+
@is_adjusted = @is_adjusted.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_adjusted)
|
61
|
+
|
62
|
+
# conversion for refund_amount [type = java.math.BigDecimal]
|
63
|
+
if @refund_amount.nil?
|
64
|
+
@refund_amount = java.math.BigDecimal::ZERO
|
65
|
+
else
|
66
|
+
@refund_amount = java.math.BigDecimal.new(@refund_amount.to_i)
|
67
|
+
end
|
68
|
+
|
69
|
+
# conversion for currency [type = com.ning.billing.catalog.api.Currency]
|
70
|
+
@currency = Java::com.ning.billing.catalog.api.Currency.value_of("#{@currency.to_s}") unless @currency.nil?
|
71
|
+
|
72
|
+
# conversion for effective_date [type = org.joda.time.DateTime]
|
73
|
+
if !@effective_date.nil?
|
74
|
+
@effective_date = (@effective_date.kind_of? Time) ? DateTime.parse(@effective_date.to_s) : @effective_date
|
75
|
+
@effective_date = Java::org.joda.time.DateTime.new(@effective_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
|
76
|
+
end
|
77
|
+
|
78
|
+
# conversion for plugin_detail [type = com.ning.billing.payment.plugin.api.RefundInfoPlugin]
|
79
|
+
@plugin_detail = @plugin_detail.to_java unless @plugin_detail.nil?
|
80
|
+
self
|
81
|
+
end
|
82
|
+
|
83
|
+
def to_ruby(j_obj)
|
84
|
+
# conversion for id [type = java.util.UUID]
|
85
|
+
@id = j_obj.id
|
86
|
+
@id = @id.nil? ? nil : @id.to_s
|
87
|
+
|
88
|
+
# conversion for created_date [type = org.joda.time.DateTime]
|
89
|
+
@created_date = j_obj.created_date
|
90
|
+
if !@created_date.nil?
|
91
|
+
fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time
|
92
|
+
str = fmt.print(@created_date)
|
93
|
+
@created_date = DateTime.iso8601(str)
|
94
|
+
end
|
95
|
+
|
96
|
+
# conversion for updated_date [type = org.joda.time.DateTime]
|
97
|
+
@updated_date = j_obj.updated_date
|
98
|
+
if !@updated_date.nil?
|
99
|
+
fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time
|
100
|
+
str = fmt.print(@updated_date)
|
101
|
+
@updated_date = DateTime.iso8601(str)
|
102
|
+
end
|
103
|
+
|
104
|
+
# conversion for payment_id [type = java.util.UUID]
|
105
|
+
@payment_id = j_obj.payment_id
|
106
|
+
@payment_id = @payment_id.nil? ? nil : @payment_id.to_s
|
107
|
+
|
108
|
+
# conversion for is_adjusted [type = boolean]
|
109
|
+
@is_adjusted = j_obj.is_adjusted
|
110
|
+
if @is_adjusted.nil?
|
111
|
+
@is_adjusted = false
|
112
|
+
else
|
113
|
+
tmp_bool = (@is_adjusted.java_kind_of? java.lang.Boolean) ? @is_adjusted.boolean_value : @is_adjusted
|
114
|
+
@is_adjusted = tmp_bool ? true : false
|
115
|
+
end
|
116
|
+
|
117
|
+
# conversion for refund_amount [type = java.math.BigDecimal]
|
118
|
+
@refund_amount = j_obj.refund_amount
|
119
|
+
@refund_amount = @refund_amount.nil? ? 0 : @refund_amount.to_s.to_i
|
120
|
+
|
121
|
+
# conversion for currency [type = com.ning.billing.catalog.api.Currency]
|
122
|
+
@currency = j_obj.currency
|
123
|
+
@currency = @currency.to_s.to_sym unless @currency.nil?
|
124
|
+
|
125
|
+
# conversion for effective_date [type = org.joda.time.DateTime]
|
126
|
+
@effective_date = j_obj.effective_date
|
127
|
+
if !@effective_date.nil?
|
128
|
+
fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time
|
129
|
+
str = fmt.print(@effective_date)
|
130
|
+
@effective_date = DateTime.iso8601(str)
|
131
|
+
end
|
132
|
+
|
133
|
+
# conversion for plugin_detail [type = com.ning.billing.payment.plugin.api.RefundInfoPlugin]
|
134
|
+
@plugin_detail = j_obj.plugin_detail
|
135
|
+
@plugin_detail = Killbill::Plugin::Model::RefundInfoPlugin.new.to_ruby(@plugin_detail) unless @plugin_detail.nil?
|
136
|
+
self
|
137
|
+
end
|
138
|
+
|
26
139
|
end
|
27
140
|
end
|
28
141
|
end
|