*/
public ShippingMethodsType createMerchantShipping(String shippingName,
float shippingCost, String currency, ShippingRestrictions shipRestrictions)
throws ProtocolException {
try {
MerchantCalculatedShipping merchantCal
= _objectFact.createMerchantCalculatedShipping();
merchantCal.setName(shippingName);
merchantCal.setPrice(createMoney(shippingCost, currency));
merchantCal.setShippingRestrictions(shipRestrictions);
return addShippingMethod(merchantCal);
} catch (JAXBException jaxbEx) {
throw new ProtocolException(jaxbEx.getMessage());
}
}