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.
Files changed (128) hide show
  1. data/Jarfile +4 -2
  2. data/VERSION +1 -1
  3. data/killbill.gemspec +4 -3
  4. data/lib/killbill.rb +7 -51
  5. data/lib/killbill/creator.rb +10 -18
  6. data/lib/killbill/gen/account.rb +208 -27
  7. data/lib/killbill/gen/account_api_exception.rb +66 -0
  8. data/lib/killbill/gen/account_data.rb +166 -23
  9. data/lib/killbill/gen/account_email.rb +80 -8
  10. data/lib/killbill/gen/account_service.rb +55 -0
  11. data/lib/killbill/gen/account_user_api.rb +187 -0
  12. data/lib/killbill/gen/audit_user_api.rb +196 -0
  13. data/lib/killbill/gen/beatrix_service.rb +55 -0
  14. data/lib/killbill/gen/billing_exception_base.rb +66 -0
  15. data/lib/killbill/gen/blockable.rb +91 -0
  16. data/lib/killbill/gen/blocking_api_exception.rb +66 -0
  17. data/lib/killbill/gen/blocking_state.rb +150 -16
  18. data/lib/killbill/gen/call_context.rb +107 -13
  19. data/lib/killbill/gen/catalog.rb +76 -0
  20. data/lib/killbill/gen/catalog_api_exception.rb +66 -0
  21. data/lib/killbill/gen/catalog_service.rb +69 -0
  22. data/lib/killbill/gen/catalog_user_api.rb +54 -0
  23. data/lib/killbill/gen/column_info.rb +67 -0
  24. data/lib/killbill/gen/control_tag.rb +112 -0
  25. data/lib/killbill/gen/currency_value_null.rb +66 -0
  26. data/lib/killbill/gen/custom_field.rb +93 -10
  27. data/lib/killbill/gen/custom_field_api_exception.rb +66 -0
  28. data/lib/killbill/gen/custom_field_user_api.rb +115 -0
  29. data/lib/killbill/gen/database_export_output_stream.rb +51 -0
  30. data/lib/killbill/gen/default_mutable_account_data.rb +180 -0
  31. data/lib/killbill/gen/duration.rb +62 -0
  32. data/lib/killbill/gen/entitlement_service.rb +55 -0
  33. data/lib/killbill/gen/entitlement_user_api.rb +272 -0
  34. data/lib/killbill/gen/entitlement_user_api_exception.rb +66 -0
  35. data/lib/killbill/gen/entity.rb +84 -0
  36. data/lib/killbill/gen/entity_persistence_exception.rb +66 -0
  37. data/lib/killbill/gen/export_user_api.rb +17 -0
  38. data/lib/killbill/gen/ext_bus_event.rb +68 -9
  39. data/lib/killbill/gen/external_bus.rb +51 -0
  40. data/lib/killbill/gen/illegal_plan_change.rb +66 -0
  41. data/lib/killbill/gen/international_price.rb +79 -0
  42. data/lib/killbill/gen/invalid_config_exception.rb +49 -0
  43. data/lib/killbill/gen/invoice.rb +238 -23
  44. data/lib/killbill/gen/invoice_api_exception.rb +66 -0
  45. data/lib/killbill/gen/invoice_creation_event.rb +51 -0
  46. data/lib/killbill/gen/invoice_item.rb +179 -21
  47. data/lib/killbill/gen/invoice_migration_api.rb +66 -0
  48. data/lib/killbill/gen/invoice_notifier.rb +51 -0
  49. data/lib/killbill/gen/invoice_payment.rb +135 -15
  50. data/lib/killbill/gen/invoice_payment_api.rb +208 -0
  51. data/lib/killbill/gen/invoice_service.rb +55 -0
  52. data/lib/killbill/gen/invoice_user_api.rb +461 -0
  53. data/lib/killbill/gen/junction_api.rb +60 -0
  54. data/lib/killbill/gen/limit.rb +68 -0
  55. data/lib/killbill/gen/listing.rb +63 -0
  56. data/lib/killbill/gen/migration_account_data.rb +228 -0
  57. data/lib/killbill/gen/migration_plan.rb +143 -0
  58. data/lib/killbill/gen/mutable_account_data.rb +182 -0
  59. data/lib/killbill/gen/no_op_payment_plugin_api.rb +254 -0
  60. data/lib/killbill/gen/payment.rb +183 -20
  61. data/lib/killbill/gen/payment_api.rb +433 -0
  62. data/lib/killbill/gen/payment_api_exception.rb +66 -0
  63. data/lib/killbill/gen/payment_attempt.rb +100 -10
  64. data/lib/killbill/gen/payment_info_plugin.rb +103 -12
  65. data/lib/killbill/gen/payment_method.rb +116 -0
  66. data/lib/killbill/gen/payment_method_info_plugin.rb +64 -7
  67. data/lib/killbill/gen/payment_method_kv_info.rb +56 -6
  68. data/lib/killbill/gen/payment_method_plugin.rb +142 -20
  69. data/lib/killbill/gen/payment_plugin_api.rb +232 -0
  70. data/lib/killbill/gen/payment_plugin_api_exception.rb +59 -0
  71. data/lib/killbill/gen/payment_service.rb +62 -0
  72. data/lib/killbill/gen/plan.rb +143 -0
  73. data/lib/killbill/gen/plan_change_result.rb +68 -0
  74. data/lib/killbill/gen/plan_phase.rb +104 -0
  75. data/lib/killbill/gen/plan_phase_specifier.rb +80 -0
  76. data/lib/killbill/gen/plan_specifier.rb +73 -0
  77. data/lib/killbill/gen/price.rb +67 -0
  78. data/lib/killbill/gen/price_list.rb +74 -0
  79. data/lib/killbill/gen/price_list_set.rb +56 -0
  80. data/lib/killbill/gen/product.rb +101 -0
  81. data/lib/killbill/gen/record_id_api.rb +55 -0
  82. data/lib/killbill/gen/refund.rb +126 -13
  83. data/lib/killbill/gen/refund_info_plugin.rb +96 -10
  84. data/lib/killbill/gen/require_gen.rb +97 -15
  85. data/lib/killbill/gen/static_catalog.rb +137 -0
  86. data/lib/killbill/gen/subscription.rb +258 -28
  87. data/lib/killbill/gen/subscription_bundle.rb +94 -10
  88. data/lib/killbill/gen/subscription_status_dry_run.rb +89 -0
  89. data/lib/killbill/gen/subscription_transition.rb +196 -0
  90. data/lib/killbill/gen/tag.rb +88 -9
  91. data/lib/killbill/gen/tag_api_exception.rb +66 -0
  92. data/lib/killbill/gen/tag_definition.rb +110 -10
  93. data/lib/killbill/gen/tag_definition_api_exception.rb +66 -0
  94. data/lib/killbill/gen/tag_user_api.rb +239 -0
  95. data/lib/killbill/gen/tenant.rb +102 -0
  96. data/lib/killbill/gen/tenant_api_exception.rb +66 -0
  97. data/lib/killbill/gen/tenant_context.rb +39 -4
  98. data/lib/killbill/gen/tenant_data.rb +67 -0
  99. data/lib/killbill/gen/tenant_kv.rb +96 -0
  100. data/lib/killbill/gen/tenant_service.rb +55 -0
  101. data/lib/killbill/gen/tenant_user_api.rb +127 -0
  102. data/lib/killbill/gen/unit.rb +55 -0
  103. data/lib/killbill/jnotification.rb +1 -1
  104. data/lib/killbill/jpayment.rb +10 -7
  105. data/lib/killbill/jplugin.rb +63 -61
  106. data/lib/killbill/killbill_api.rb +42 -9
  107. data/spec/killbill/jnotification_spec.rb +15 -1
  108. data/spec/killbill/jpayment_spec.rb +12 -8
  109. data/spec/killbill/killbillapi_spec.rb +23 -21
  110. data/spec/killbill/payment_plugin_spec.rb +1 -9
  111. data/spec/killbill/payment_test.rb +21 -5
  112. metadata +96 -22
  113. data/lib/killbill/gen/audit_log.rb +0 -28
  114. data/lib/killbill/gen/call_origin.rb +0 -34
  115. data/lib/killbill/gen/currency.rb +0 -34
  116. data/lib/killbill/gen/date_time_zone.rb +0 -35
  117. data/lib/killbill/gen/ext_bus_event_type.rb +0 -34
  118. data/lib/killbill/gen/invoice_payment_type.rb +0 -34
  119. data/lib/killbill/gen/object_type.rb +0 -34
  120. data/lib/killbill/gen/payment_plugin_status.rb +0 -34
  121. data/lib/killbill/gen/refund_plugin_status.rb +0 -34
  122. data/lib/killbill/gen/subscription_source_type.rb +0 -34
  123. data/lib/killbill/gen/subscription_state.rb +0 -34
  124. data/lib/killbill/gen/user_type.rb +0 -34
  125. data/lib/killbill/gen/uuid.rb +0 -22
  126. data/lib/killbill/jconverter.rb +0 -537
  127. data/lib/killbill/jkillbill_api.rb +0 -137
  128. data/spec/killbill/jconverter_spec.rb +0 -193
data/Jarfile CHANGED
@@ -1,3 +1,5 @@
1
- jar 'com.ning.billing:killbill-api', '0.1.80'
2
- jar 'com.ning.billing:killbill-util:tests', '0.1.80'
1
+ jar 'com.ning.billing:killbill-api', '0.3.0'
2
+ jar 'com.ning.billing.plugin:killbill-plugin-api-notification', '0.2.4'
3
+ jar 'com.ning.billing.plugin:killbill-plugin-api-payment', '0.2.4'
4
+ jar 'com.ning.billing:killbill-util:tests', '0.2.6-SNAPSHOT'
3
5
  jar 'javax.servlet:javax.servlet-api', '3.0.1'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.19
1
+ 1.1.1
data/killbill.gemspec CHANGED
@@ -22,13 +22,14 @@ Gem::Specification.new do |s|
22
22
 
23
23
  s.rdoc_options << '--exclude' << '.'
24
24
 
25
- s.add_development_dependency 'jbundler', '~> 0.4.1'
25
+ s.add_development_dependency 'jbundler', '~> 0.4.3'
26
26
  s.add_development_dependency 'rack', '>= 1.5.2'
27
27
  s.add_development_dependency 'rake', '>= 0.8.7'
28
28
  s.add_development_dependency 'rspec', '~> 2.12.0'
29
29
  s.add_development_dependency 'sinatra', '~> 1.3.4'
30
+ s.add_development_dependency 'tzinfo', '~> 0.3.37'
30
31
 
31
- # s.requirements << "jar 'com.ning.billing:killbill-api'"
32
+ s.requirements << "jar 'com.ning.billing:killbill-api'"
32
33
  # For testing only
33
- # s.requirements << "jar 'com.ning.billing:killbill-util:tests'"
34
+ s.requirements << "jar 'com.ning.billing:killbill-util:tests'"
34
35
  end
data/lib/killbill.rb CHANGED
@@ -9,6 +9,12 @@ begin
9
9
  gsub(/([a-z])([A-Z])/, '\1_\2').
10
10
  downcase
11
11
  end
12
+
13
+ def to_class
14
+ self.split('::').inject(Kernel) do |mod, class_name|
15
+ mod.const_get(class_name)
16
+ end
17
+ end
12
18
  end
13
19
 
14
20
 
@@ -28,57 +34,6 @@ begin
28
34
  javax.servlet.http.HttpServlet
29
35
  )
30
36
 
31
- #
32
- # The Killbill ruby APIs exported for all the ruby plugins
33
- #
34
- EXPORT_KILLBILL_API = %w(
35
- createAccount
36
- updateAccount
37
- getAccountById
38
- getBundleFromId
39
- getSubscriptionFromId
40
- getBundlesForAccount
41
- getSubscriptionsForBundle
42
- getBaseSubscription
43
- createBundleForAccount
44
- createSubscription
45
- getNextBillingDate
46
- getAllInvoicesByAccount
47
- getInvoice
48
- getInvoicePayments
49
- getInvoicePaymentForAttempt
50
- getRemainingAmountPaid
51
- getChargebacksByAccountId
52
- getAccountIdFromInvoicePaymentId
53
- getChargebacksByPaymentId
54
- getChargebackById
55
- getInvoicesByAccount
56
- getAccountBalance
57
- getAccountCBA
58
- getInvoice
59
- getUnpaidInvoicesByAccountId
60
- getOverdueStateFor
61
- getAccountRefunds
62
- getPaymentRefunds
63
- getInvoicePayments
64
- getAccountPayments
65
- getPayment
66
- getPaymentMethods
67
- getPaymentMethodById
68
- addCustomFields
69
- getCustomFieldsForAccount
70
- getTagDefinitions
71
- createTagDefinition
72
- deleteTagDefinition
73
- getTagDefinition
74
- getTagDefinitions
75
- addTags
76
- addTag
77
- removeTags
78
- removeTag
79
- getTagsForAccount
80
- ).collect { |e| e.snake_case }
81
-
82
37
  begin
83
38
  IMPORT_KILLBILL_APIS.each { |api| java_import api }
84
39
  rescue NameError
@@ -99,6 +54,7 @@ rescue LoadError => e
99
54
  warn "You need JRuby to run Killbill plugins #{e}"
100
55
  end
101
56
 
57
+ require 'tzinfo'
102
58
  require 'killbill/gen/require_gen'
103
59
  require 'killbill/notification'
104
60
  require 'killbill/payment'
@@ -1,6 +1,5 @@
1
1
  require 'java'
2
2
 
3
- require 'killbill/jkillbill_api'
4
3
  require 'killbill/killbill_api'
5
4
 
6
5
  include Java
@@ -16,25 +15,18 @@ module Killbill
16
15
  end
17
16
 
18
17
  def create(services)
19
- japi_proxy = JKillbillApi.new(@target_class_name, services)
20
-
21
- kb_apis = KillbillApi.new(japi_proxy)
22
- real_class = class_from_string
23
- plugin_delegate = real_class.new
24
- plugin_delegate.root = services["root"]
25
- plugin_delegate.logger = services["logger"]
26
- plugin_delegate.conf_dir = services["conf_dir"]
27
- plugin_delegate.kb_apis = kb_apis
28
- plugin_delegate
18
+ real_class = @target_class_name.to_class
19
+
20
+ plugin_delegate = real_class.new
21
+ plugin_delegate.root = services.delete("root")
22
+ plugin_delegate.logger = services.delete("logger")
23
+ plugin_delegate.conf_dir = services.delete("conf_dir")
24
+ # At this point we removed everything from the map which is not API, so we can build the APIs
25
+ kb_apis = KillbillApi.new(@target_class_name, services)
26
+ plugin_delegate.kb_apis = kb_apis
27
+ plugin_delegate
29
28
  end
30
29
 
31
- private
32
-
33
- def class_from_string()
34
- @target_class_name.split('::').inject(Kernel) do |mod, class_name|
35
- mod.const_get(class_name)
36
- end
37
- end
38
30
 
39
31
  end
40
32
  end
@@ -1,42 +1,223 @@
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
- # Ruby classes automatically generated from java classes-- don't edit
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.account.api'
9
31
  class Account
10
32
 
11
33
  include com.ning.billing.account.api.Account
12
34
 
13
- attr_reader :id, :blocking_state, :created_date, :updated_date, :external_key, :name, :first_name_length, :email, :bill_cycle_day_local, :currency, :payment_method_id, :time_zone, :locale, :address1, :address2, :company_name, :city, :state_or_province, :postal_code, :country, :phone, :is_migrated, :is_notified_for_invoices
14
-
15
- def initialize(id, blocking_state, created_date, updated_date, external_key, name, first_name_length, email, bill_cycle_day_local, currency, payment_method_id, time_zone, locale, address1, address2, company_name, city, state_or_province, postal_code, country, phone, is_migrated, is_notified_for_invoices)
16
- @id = id
17
- @blocking_state = blocking_state
18
- @created_date = created_date
19
- @updated_date = updated_date
20
- @external_key = external_key
21
- @name = name
22
- @first_name_length = first_name_length
23
- @email = email
24
- @bill_cycle_day_local = bill_cycle_day_local
25
- @currency = currency
26
- @payment_method_id = payment_method_id
27
- @time_zone = time_zone
28
- @locale = locale
29
- @address1 = address1
30
- @address2 = address2
31
- @company_name = company_name
32
- @city = city
33
- @state_or_province = state_or_province
34
- @postal_code = postal_code
35
- @country = country
36
- @phone = phone
37
- @is_migrated = is_migrated
38
- @is_notified_for_invoices = is_notified_for_invoices
35
+ attr_accessor :id, :blocking_state, :created_date, :updated_date, :external_key, :name, :first_name_length, :email, :bill_cycle_day_local, :currency, :payment_method_id, :time_zone, :locale, :address1, :address2, :company_name, :city, :state_or_province, :postal_code, :country, :phone, :is_migrated, :is_notified_for_invoices
36
+
37
+ def initialize()
39
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 blocking_state [type = com.ning.billing.junction.api.BlockingState]
45
+ @blocking_state = @blocking_state.to_java unless @blocking_state.nil?
46
+
47
+ # conversion for created_date [type = org.joda.time.DateTime]
48
+ if !@created_date.nil?
49
+ @created_date = (@created_date.kind_of? Time) ? DateTime.parse(@created_date.to_s) : @created_date
50
+ @created_date = Java::org.joda.time.DateTime.new(@created_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
51
+ end
52
+
53
+ # conversion for updated_date [type = org.joda.time.DateTime]
54
+ if !@updated_date.nil?
55
+ @updated_date = (@updated_date.kind_of? Time) ? DateTime.parse(@updated_date.to_s) : @updated_date
56
+ @updated_date = Java::org.joda.time.DateTime.new(@updated_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
57
+ end
58
+
59
+ # conversion for external_key [type = java.lang.String]
60
+ @external_key = @external_key.to_s unless @external_key.nil?
61
+
62
+ # conversion for name [type = java.lang.String]
63
+ @name = @name.to_s unless @name.nil?
64
+
65
+ # conversion for first_name_length [type = java.lang.Integer]
66
+ @first_name_length = @first_name_length
67
+
68
+ # conversion for email [type = java.lang.String]
69
+ @email = @email.to_s unless @email.nil?
70
+
71
+ # conversion for bill_cycle_day_local [type = java.lang.Integer]
72
+ @bill_cycle_day_local = @bill_cycle_day_local
73
+
74
+ # conversion for currency [type = com.ning.billing.catalog.api.Currency]
75
+ @currency = Java::com.ning.billing.catalog.api.Currency.value_of("#{@currency.to_s}") unless @currency.nil?
76
+
77
+ # conversion for payment_method_id [type = java.util.UUID]
78
+ @payment_method_id = java.util.UUID.fromString(@payment_method_id.to_s) unless @payment_method_id.nil?
79
+
80
+ # conversion for time_zone [type = org.joda.time.DateTimeZone]
81
+ if !@time_zone.nil?
82
+ @time_zone = Java::org.joda.time.DateTimeZone.forID((@time_zone.respond_to?(:identifier) ? @time_zone.identifier : @time_zone.to_s))
83
+ end
84
+
85
+ # conversion for locale [type = java.lang.String]
86
+ @locale = @locale.to_s unless @locale.nil?
87
+
88
+ # conversion for address1 [type = java.lang.String]
89
+ @address1 = @address1.to_s unless @address1.nil?
90
+
91
+ # conversion for address2 [type = java.lang.String]
92
+ @address2 = @address2.to_s unless @address2.nil?
93
+
94
+ # conversion for company_name [type = java.lang.String]
95
+ @company_name = @company_name.to_s unless @company_name.nil?
96
+
97
+ # conversion for city [type = java.lang.String]
98
+ @city = @city.to_s unless @city.nil?
99
+
100
+ # conversion for state_or_province [type = java.lang.String]
101
+ @state_or_province = @state_or_province.to_s unless @state_or_province.nil?
102
+
103
+ # conversion for postal_code [type = java.lang.String]
104
+ @postal_code = @postal_code.to_s unless @postal_code.nil?
105
+
106
+ # conversion for country [type = java.lang.String]
107
+ @country = @country.to_s unless @country.nil?
108
+
109
+ # conversion for phone [type = java.lang.String]
110
+ @phone = @phone.to_s unless @phone.nil?
111
+
112
+ # conversion for is_migrated [type = java.lang.Boolean]
113
+ @is_migrated = @is_migrated.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_migrated)
114
+
115
+ # conversion for is_notified_for_invoices [type = java.lang.Boolean]
116
+ @is_notified_for_invoices = @is_notified_for_invoices.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_notified_for_invoices)
117
+ self
118
+ end
119
+
120
+ def to_ruby(j_obj)
121
+ # conversion for id [type = java.util.UUID]
122
+ @id = j_obj.id
123
+ @id = @id.nil? ? nil : @id.to_s
124
+
125
+ # conversion for blocking_state [type = com.ning.billing.junction.api.BlockingState]
126
+ @blocking_state = j_obj.blocking_state
127
+ @blocking_state = Killbill::Plugin::Model::BlockingState.new.to_ruby(@blocking_state) unless @blocking_state.nil?
128
+
129
+ # conversion for created_date [type = org.joda.time.DateTime]
130
+ @created_date = j_obj.created_date
131
+ if !@created_date.nil?
132
+ fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time
133
+ str = fmt.print(@created_date)
134
+ @created_date = DateTime.iso8601(str)
135
+ end
136
+
137
+ # conversion for updated_date [type = org.joda.time.DateTime]
138
+ @updated_date = j_obj.updated_date
139
+ if !@updated_date.nil?
140
+ fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time
141
+ str = fmt.print(@updated_date)
142
+ @updated_date = DateTime.iso8601(str)
143
+ end
144
+
145
+ # conversion for external_key [type = java.lang.String]
146
+ @external_key = j_obj.external_key
147
+
148
+ # conversion for name [type = java.lang.String]
149
+ @name = j_obj.name
150
+
151
+ # conversion for first_name_length [type = java.lang.Integer]
152
+ @first_name_length = j_obj.first_name_length
153
+
154
+ # conversion for email [type = java.lang.String]
155
+ @email = j_obj.email
156
+
157
+ # conversion for bill_cycle_day_local [type = java.lang.Integer]
158
+ @bill_cycle_day_local = j_obj.bill_cycle_day_local
159
+
160
+ # conversion for currency [type = com.ning.billing.catalog.api.Currency]
161
+ @currency = j_obj.currency
162
+ @currency = @currency.to_s.to_sym unless @currency.nil?
163
+
164
+ # conversion for payment_method_id [type = java.util.UUID]
165
+ @payment_method_id = j_obj.payment_method_id
166
+ @payment_method_id = @payment_method_id.nil? ? nil : @payment_method_id.to_s
167
+
168
+ # conversion for time_zone [type = org.joda.time.DateTimeZone]
169
+ @time_zone = j_obj.time_zone
170
+ if !@time_zone.nil?
171
+ @time_zone = TZInfo::Timezone.get(@time_zone.get_id)
172
+ end
173
+
174
+ # conversion for locale [type = java.lang.String]
175
+ @locale = j_obj.locale
176
+
177
+ # conversion for address1 [type = java.lang.String]
178
+ @address1 = j_obj.address1
179
+
180
+ # conversion for address2 [type = java.lang.String]
181
+ @address2 = j_obj.address2
182
+
183
+ # conversion for company_name [type = java.lang.String]
184
+ @company_name = j_obj.company_name
185
+
186
+ # conversion for city [type = java.lang.String]
187
+ @city = j_obj.city
188
+
189
+ # conversion for state_or_province [type = java.lang.String]
190
+ @state_or_province = j_obj.state_or_province
191
+
192
+ # conversion for postal_code [type = java.lang.String]
193
+ @postal_code = j_obj.postal_code
194
+
195
+ # conversion for country [type = java.lang.String]
196
+ @country = j_obj.country
197
+
198
+ # conversion for phone [type = java.lang.String]
199
+ @phone = j_obj.phone
200
+
201
+ # conversion for is_migrated [type = java.lang.Boolean]
202
+ @is_migrated = j_obj.is_migrated
203
+ if @is_migrated.nil?
204
+ @is_migrated = false
205
+ else
206
+ tmp_bool = (@is_migrated.java_kind_of? java.lang.Boolean) ? @is_migrated.boolean_value : @is_migrated
207
+ @is_migrated = tmp_bool ? true : false
208
+ end
209
+
210
+ # conversion for is_notified_for_invoices [type = java.lang.Boolean]
211
+ @is_notified_for_invoices = j_obj.is_notified_for_invoices
212
+ if @is_notified_for_invoices.nil?
213
+ @is_notified_for_invoices = false
214
+ else
215
+ tmp_bool = (@is_notified_for_invoices.java_kind_of? java.lang.Boolean) ? @is_notified_for_invoices.boolean_value : @is_notified_for_invoices
216
+ @is_notified_for_invoices = tmp_bool ? true : false
217
+ end
218
+ self
219
+ end
220
+
40
221
  end
41
222
  end
42
223
  end
@@ -0,0 +1,66 @@
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 AccountApiException
31
+
32
+
33
+ attr_accessor :message, :cause, :code
34
+
35
+ def initialize()
36
+ end
37
+
38
+ def to_java()
39
+ # conversion for message [type = java.lang.String]
40
+ @message = @message.to_s unless @message.nil?
41
+
42
+ # conversion for cause [type = java.lang.Throwable]
43
+ @cause = @cause.to_s unless cause.nil?
44
+
45
+ # conversion for code [type = int]
46
+ @code = @code
47
+ Java::com.ning.billing.account.api.AccountApiException.new(@message, @cause, @code)
48
+ end
49
+
50
+ def to_ruby(j_obj)
51
+ # conversion for message [type = java.lang.String]
52
+ @message = j_obj.message
53
+
54
+ # conversion for cause [type = java.lang.Throwable]
55
+ @cause = j_obj.cause
56
+ @cause = @cause.to_s unless @cause.nil?
57
+
58
+ # conversion for code [type = int]
59
+ @code = j_obj.code
60
+ self
61
+ end
62
+
63
+ end
64
+ end
65
+ end
66
+ end