TaxTables taxTables = _objectFact.createTaxTables();
taxTables.setDefaultTaxTable(defaultTaxTable);
taxTables.setAlternateTaxTables(aTables);
MerchantCheckoutFlowSupport mChkoutSupport
= _objectFact.createMerchantCheckoutFlowSupport();
mChkoutSupport.setContinueShoppingUrl(continueShoppingUrl);
mChkoutSupport.setEditCartUrl(editCartUrl);
mChkoutSupport.setMerchantCalculations(couponInfo);
mChkoutSupport.setShippingMethods(methods);
mChkoutSupport.setTaxTables(taxTables);
return mChkoutSupport;
} catch (JAXBException jaxbEx) {
throw new ProtocolException(jaxbEx.getMessage());
}
}