Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2014-2016 Groupon, Inc
* Copyright 2014-2016 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.
*/
package org.killbill.billing.util.config.definition;
import java.util.List;
import org.killbill.billing.callcontext.InternalTenantContext;
import org.skife.config.Config;
import org.skife.config.Default;
import org.skife.config.Description;
import org.skife.config.Param;
import org.skife.config.TimeSpan;
public interface PaymentConfig extends LockAwareConfig {
@Config("org.killbill.payment.retry.days")
@Default("8,8,8")
@Description("Specify the number of payment retries along with the interval in days between payment retries when payment failures occur")
List getPaymentFailureRetryDays();
@Config("org.killbill.payment.retry.days")
@Default("8,8,8")
@Description("Specify the number of payment retries along with the interval in days between payment retries when payment failures occur")
List getPaymentFailureRetryDays(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.failure.retry.start.sec")
@Default("300")
@Description("Specify the interval of time in seconds before retrying a payment that failed due to a plugin failure (gateway is down, transient error, ...)")
int getPluginFailureInitialRetryInSec();
@Config("org.killbill.payment.failure.retry.start.sec")
@Default("300")
@Description("Specify the interval of time in seconds before retrying a payment that failed due to a plugin failure (gateway is down, transient error, ...)")
int getPluginFailureInitialRetryInSec(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.failure.retry.multiplier")
@Default("2")
@Description("Specify the multiplier to apply between in retry before retrying a payment that failed due to a plugin failure (gateway is down, transient error, ...)")
int getPluginFailureRetryMultiplier();
@Config("org.killbill.payment.failure.retry.multiplier")
@Default("2")
@Description("Specify the multiplier to apply between in retry before retrying a payment that failed due to a plugin failure (gateway is down, transient error, ...)")
int getPluginFailureRetryMultiplier(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.janitor.unknown.retries")
@Default("5m,1h,1d,1d,1d,1d,1d")
@Description("Delay before which unresolved transactions should be retried")
List getUnknownTransactionsRetries();
@Config("org.killbill.payment.janitor.unknown.retries")
@Default("5m,1h,1d,1d,1d,1d,1d")
@Description("Delay before which unresolved transactions should be retried")
List getUnknownTransactionsRetries(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.janitor.pending.retries")
@Default("1h, 1d")
@Description("Delay before which unresolved transactions should be retried")
List getPendingTransactionsRetries();
@Config("org.killbill.payment.janitor.pending.retries")
@Default("1h, 1d")
@Description("Delay before which unresolved transactions should be retried")
List getPendingTransactionsRetries(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.failure.retry.max.attempts")
@Default("8")
@Description("Specify the max number of attempts before retrying a payment that failed due to a plugin failure (gateway is down, transient error, ...)")
int getPluginFailureRetryMaxAttempts();
@Config("org.killbill.payment.failure.retry.max.attempts")
@Default("8")
@Description("Specify the max number of attempts before retrying a payment that failed due to a plugin failure (gateway is down, transient error, ...)")
int getPluginFailureRetryMaxAttempts(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.invoice.plugin")
@Default("")
@Description("Default payment control plugin names")
List getPaymentControlPluginNames();
@Config("org.killbill.payment.invoice.plugin")
@Default("")
@Description("Default payment control plugin names")
List getPaymentControlPluginNames(@Param("dummy") final InternalTenantContext tenantContext);
@Config("org.killbill.payment.janitor.rate")
@Default("1h")
@Description("Rate at which janitor tasks are scheduled")
TimeSpan getJanitorRunningRate();
@Config("org.killbill.payment.janitor.attempts.delay")
@Default("12h")
@Description("Delay before which unresolved attempt should be retried")
TimeSpan getIncompleteAttemptsTimeSpanDelay();
@Config("org.killbill.payment.provider.default")
// See ExternalPaymentProviderPlugin.PLUGIN_NAME
@Default("__external_payment__")
@Description("Default payment provider to use")
String getDefaultPaymentProvider();
@Config("org.killbill.payment.plugin.timeout")
@Default("30s")
@Description("Timeout for each payment attempt")
TimeSpan getPaymentPluginTimeout();
@Config("org.killbill.payment.plugin.threads.nb")
@Default("10")
@Description("Number of threads for plugin executor dispatcher")
int getPaymentPluginThreadNb();
@Config("org.killbill.payment.globalLock.retries")
@Default("50")
@Description("Maximum number of times the system will retry to grab global lock (with a 100ms wait each time)")
int getMaxGlobalLockRetries();
@Config("org.killbill.payment.method.overwrite")
@Default("false")
@Description("Ability to overwrite an existing payment method from a control plugin")
boolean isAllowedToOverwritePaymentMethodId();
@Config("org.killbill.payment.allow.emptyInvoice")
@Default("false")
@Description(" Ability to allow payments for zero amount invoices")
boolean allowEmptyInvoice();
}