/** * 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 ReturnEventHandler { public EventHandlerStatus authorized(ApiContext apiContext, Event event); public EventHandlerStatus cancelled(ApiContext apiContext, Event event); public EventHandlerStatus closed(ApiContext apiContext, Event event); public EventHandlerStatus opened(ApiContext apiContext, Event event); public EventHandlerStatus rejected(ApiContext apiContext, Event event); public EventHandlerStatus updated(ApiContext apiContext, Event event); }