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

com.commercetools.sunrise.framework.hooks.ctpevents.CustomerLoadedHook Maven / Gradle / Ivy

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

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

import java.util.concurrent.CompletionStage;

public interface CustomerLoadedHook extends CtpEventHook {

    CompletionStage onCustomerLoaded(final Customer customer);

    static CompletionStage runHook(final HookRunner hookRunner, final Customer customer) {
        return hookRunner.runEventHook(CustomerLoadedHook.class, hook -> hook.onCustomerLoaded(customer));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy