############################################################################################# # # # 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 Api java_package 'org.killbill.billing.payment.api' class PaymentGatewayApi include org.killbill.billing.payment.api.PaymentGatewayApi def initialize(real_java_api) @real_java_api = real_java_api end java_signature 'Java::org.killbill.billing.payment.plugin.api.HostedPaymentPageFormDescriptor buildFormDescriptor(Java::org.killbill.billing.account.api.Account, Java::java.util.UUID, Java::java.lang.Iterable, Java::java.lang.Iterable, Java::org.killbill.billing.util.callcontext.CallContext)' def build_form_descriptor(account, paymentMethodId, customFields, properties, context) # conversion for account [type = org.killbill.billing.account.api.Account] account = account.to_java unless account.nil? # conversion for paymentMethodId [type = java.util.UUID] paymentMethodId = java.util.UUID.fromString(paymentMethodId.to_s) unless paymentMethodId.nil? # conversion for customFields [type = java.lang.Iterable] tmp = java.util.ArrayList.new (customFields || []).each do |m| # conversion for m [type = org.killbill.billing.payment.api.PluginProperty] m = m.to_java unless m.nil? tmp.add(m) end customFields = tmp # conversion for properties [type = java.lang.Iterable] 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 # conversion for context [type = org.killbill.billing.util.callcontext.CallContext] context = context.to_java unless context.nil? begin res = @real_java_api.build_form_descriptor(account, paymentMethodId, customFields, properties, context) # conversion for res [type = org.killbill.billing.payment.plugin.api.HostedPaymentPageFormDescriptor] res = Killbill::Plugin::Model::HostedPaymentPageFormDescriptor.new.to_ruby(res) unless res.nil? return res rescue Java::org.killbill.billing.payment.api.PaymentApiException => e raise Killbill::Plugin::Model::PaymentApiException.new.to_ruby(e) end end java_signature 'Java::org.killbill.billing.payment.plugin.api.GatewayNotification processNotification(Java::java.lang.String, Java::java.lang.String, Java::java.lang.Iterable, Java::org.killbill.billing.util.callcontext.CallContext)' def process_notification(notification, pluginName, properties, context) # conversion for notification [type = java.lang.String] notification = notification.to_s unless notification.nil? # conversion for pluginName [type = java.lang.String] pluginName = pluginName.to_s unless pluginName.nil? # conversion for properties [type = java.lang.Iterable] 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 # conversion for context [type = org.killbill.billing.util.callcontext.CallContext] context = context.to_java unless context.nil? begin res = @real_java_api.process_notification(notification, pluginName, properties, context) # conversion for res [type = org.killbill.billing.payment.plugin.api.GatewayNotification] res = Killbill::Plugin::Model::GatewayNotification.new.to_ruby(res) unless res.nil? return res rescue Java::org.killbill.billing.payment.api.PaymentApiException => e raise Killbill::Plugin::Model::PaymentApiException.new.to_ruby(e) end end end end end end