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

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

The newest version!
package com.commercetools.sunrise.framework.hooks.ctprequests;

import com.commercetools.sunrise.framework.hooks.HookRunner;
import io.sphere.sdk.customers.commands.CustomerUpdateCommand;

public interface CustomerUpdateCommandHook extends CtpRequestHook {

    CustomerUpdateCommand onCustomerUpdateCommand(final CustomerUpdateCommand customerUpdateCommand);

    static CustomerUpdateCommand runHook(final HookRunner hookRunner, final CustomerUpdateCommand customerUpdateCommand) {
        return hookRunner.runUnaryOperatorHook(CustomerUpdateCommandHook.class, CustomerUpdateCommandHook::onCustomerUpdateCommand, customerUpdateCommand);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy