All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.sunrise.framework.hooks.ctprequests.CartCreateCommandHook Maven / Gradle / Ivy

There is a newer version: 1.0.0-M10
Show newest version
package com.commercetools.sunrise.framework.hooks.ctprequests;

import com.commercetools.sunrise.framework.hooks.HookRunner;
import io.sphere.sdk.carts.commands.CartCreateCommand;

public interface CartCreateCommandHook extends CtpRequestHook {

    CartCreateCommand onCartCreateCommand(final CartCreateCommand cartCreateCommand);

    static CartCreateCommand runHook(final HookRunner hookRunner, final CartCreateCommand cartCreateCommand) {
        return hookRunner.runUnaryOperatorHook(CartCreateCommandHook.class, CartCreateCommandHook::onCartCreateCommand, cartCreateCommand);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy