CheckoutFiBeanLocal.java 532 Bytes
package fi.codecrew.moya.beans;

import java.util.List;

import javax.ejb.Local;

import fi.codecrew.moya.util.CheckoutBank;
import fi.codecrew.moya.util.CheckoutReturnType;
import fi.codecrew.moya.model.Bill;

@Local
public interface CheckoutFiBeanLocal {

	boolean isPaymentEnabled();

	List<CheckoutBank> getToken(Bill bill);

//	List<CheckoutBank> testXml();

	boolean validateReturn(CheckoutReturnType returnType, String version, String stamp, String reference, String payment, String status, String algorithm, String mac);

}