com.shopify.model.adapters.InventoryQuantityAdapter Maven / Gradle / Ivy
package com.shopify.model.adapters;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class InventoryQuantityAdapter extends XmlAdapter {
@Override
public Long unmarshal(final String inventoryQuantity) throws Exception {
return Long.valueOf(inventoryQuantity);
}
@Override
public String marshal(final Long inventoryQuantity) throws Exception {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy