com.mozu.api.events.handlers.ShipmentEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.events.handlers;
import com.mozu.api.ApiContext;
import com.mozu.api.contracts.event.Event;
import com.mozu.api.events.model.EventHandlerStatus;
public interface ShipmentEventHandler {
public EventHandlerStatus adjusted(ApiContext apiContext, Event event);
public EventHandlerStatus itemadjusted(ApiContext apiContext, Event event);
public EventHandlerStatus itemscanceled(ApiContext apiContext, Event event);
public EventHandlerStatus itemsrejected(ApiContext apiContext, Event event);
public EventHandlerStatus statuschanged(ApiContext apiContext, Event event);
public EventHandlerStatus workflowstatechanged(ApiContext apiContext, Event event);
}