*/
public MerchantCalculations createMerchantCalculations(boolean acceptCoupon,
boolean acceptGiftCerts, String merchantCalculateUrl)
throws ProtocolException {
try {
MerchantCalculations mCal = _objectFact.createMerchantCalculations();
mCal.setAcceptGiftCertificates(acceptGiftCerts);
mCal.setAcceptMerchantCoupons(acceptCoupon);
mCal.setMerchantCalculationsUrl(merchantCalculateUrl);
return mCal;
} catch (JAXBException jaxbEx) {
throw new ProtocolException(jaxbEx.getMessage());
}
}