VerkkomaksutFiBeanLocal.java 451 Bytes
package fi.codecrew.moya.beans;

import javax.ejb.Local;

import fi.codecrew.moya.util.SvmReturnType;
import fi.codecrew.moya.util.VerkkomaksutReturnEntry;
import fi.codecrew.moya.model.Bill;

@Local
public interface VerkkomaksutFiBeanLocal {

	boolean isSvmEnabled();

	VerkkomaksutReturnEntry getSvmToken(Bill bill);

	boolean validateReturn(SvmReturnType type, String orderNumber, String timestamp, String paid, String method, String authcode);

}