Class: Killbill::Plugin::Model::PluginServiceInfo
- Defined in:
- lib/killbill/gen/api/plugin_service_info.rb
Instance Attribute Summary collapse
-
#registration_name ⇒ Object
Returns the value of attribute registration_name.
-
#service_type_name ⇒ Object
Returns the value of attribute service_type_name.
Instance Method Summary collapse
-
#initialize ⇒ PluginServiceInfo
constructor
A new instance of PluginServiceInfo.
- #to_java ⇒ Object
- #to_ruby(j_obj) ⇒ Object
Constructor Details
#initialize ⇒ PluginServiceInfo
Returns a new instance of PluginServiceInfo.
39 40 |
# File 'lib/killbill/gen/api/plugin_service_info.rb', line 39 def initialize() end |
Instance Attribute Details
#registration_name ⇒ Object
Returns the value of attribute registration_name.
37 38 39 |
# File 'lib/killbill/gen/api/plugin_service_info.rb', line 37 def registration_name @registration_name end |
#service_type_name ⇒ Object
Returns the value of attribute service_type_name.
37 38 39 |
# File 'lib/killbill/gen/api/plugin_service_info.rb', line 37 def service_type_name @service_type_name end |
Instance Method Details
#to_java ⇒ Object
42 43 44 45 46 47 48 49 |
# File 'lib/killbill/gen/api/plugin_service_info.rb', line 42 def to_java() # conversion for service_type_name [type = java.lang.String] @service_type_name = @service_type_name.to_s unless @service_type_name.nil? # conversion for registration_name [type = java.lang.String] @registration_name = @registration_name.to_s unless @registration_name.nil? self end |
#to_ruby(j_obj) ⇒ Object
51 52 53 54 55 56 57 58 |
# File 'lib/killbill/gen/api/plugin_service_info.rb', line 51 def to_ruby(j_obj) # conversion for service_type_name [type = java.lang.String] @service_type_name = j_obj.service_type_name # conversion for registration_name [type = java.lang.String] @registration_name = j_obj.registration_name self end |