org.mule.samples.voipservice.interfaces.PaymentValidation Maven / Gradle / Ivy
/*
* $Id: PaymentValidation.java 3650 2006-10-24 10:26:34Z holger $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the MuleSource MPL
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.samples.voipservice.interfaces;
import java.io.IOException;
import java.util.List;
/**
* @author Binildas Christudas
*/
public interface PaymentValidation
{
int SUCCESS = 1;
int FAILURE = -1;
String CREDIT_AGENCY_LOOKUP_NAME = "CreditAgency";
String BANK_AGENCY_LOOKUP_NAME = "BankAgency";
List getCreditVendors(String cardType) throws IOException;
}