com.shopify.model.adapters.InventoryPolicyAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shopify-sdk Show documentation
Show all versions of shopify-sdk Show documentation
Java SDK for Shopify REST API.
package com.shopify.model.adapters;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import com.shopify.model.InventoryPolicy;
public class InventoryPolicyAdapter extends XmlAdapter {
@Override
public InventoryPolicy unmarshal(final String inventoryPolicy) throws Exception {
return InventoryPolicy.toEnum(inventoryPolicy);
}
@Override
public String marshal(final InventoryPolicy inventoryManagement) throws Exception {
return inventoryManagement.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy