############################################################################################# # # # Copyright 2010-2013 Ning, Inc. # # Copyright 2014 Groupon, Inc. # # Copyright 2014 The Billing Project, LLC # # # # The Billing Project licenses this file to you under the Apache License, version 2.0 # # (the "License"); you may not use this file except in compliance with the # # License. You may obtain a copy of the License at: # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # # License for the specific language governing permissions and limitations # # under the License. # # # ############################################################################################# # # DO NOT EDIT!!! # File automatically generated by killbill-java-parser (git@github.com:killbill/killbill-java-parser.git) # module Killbill module Plugin module Model java_package 'org.killbill.billing.payment.api' class PaymentMethodPlugin include org.killbill.billing.payment.api.PaymentMethodPlugin attr_accessor :kb_payment_method_id, :external_payment_method_id, :is_default_payment_method, :properties def initialize() end def to_java() # conversion for kb_payment_method_id [type = java.util.UUID] @kb_payment_method_id = java.util.UUID.fromString(@kb_payment_method_id.to_s) unless @kb_payment_method_id.nil? # conversion for external_payment_method_id [type = java.lang.String] @external_payment_method_id = @external_payment_method_id.to_s unless @external_payment_method_id.nil? # conversion for is_default_payment_method [type = boolean] @is_default_payment_method = @is_default_payment_method.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_default_payment_method) # conversion for properties [type = java.util.List] tmp = java.util.ArrayList.new (@properties || []).each do |m| # conversion for m [type = org.killbill.billing.payment.api.PluginProperty] m = m.to_java unless m.nil? tmp.add(m) end @properties = tmp self end def to_ruby(j_obj) # conversion for kb_payment_method_id [type = java.util.UUID] @kb_payment_method_id = j_obj.kb_payment_method_id @kb_payment_method_id = @kb_payment_method_id.nil? ? nil : @kb_payment_method_id.to_s # conversion for external_payment_method_id [type = java.lang.String] @external_payment_method_id = j_obj.external_payment_method_id # conversion for is_default_payment_method [type = boolean] @is_default_payment_method = j_obj.is_default_payment_method if @is_default_payment_method.nil? @is_default_payment_method = false else tmp_bool = (@is_default_payment_method.java_kind_of? java.lang.Boolean) ? @is_default_payment_method.boolean_value : @is_default_payment_method @is_default_payment_method = tmp_bool ? true : false end # conversion for properties [type = java.util.List] @properties = j_obj.properties tmp = [] (@properties || []).each do |m| # conversion for m [type = org.killbill.billing.payment.api.PluginProperty] m = Killbill::Plugin::Model::PluginProperty.new.to_ruby(m) unless m.nil? tmp << m end @properties = tmp self end end end end end