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