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

com.commercetools.sunrise.framework.hooks.ctprequests.CustomerQueryHook 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.queries.CustomerQuery;

public interface CustomerQueryHook extends CtpRequestHook {

    CustomerQuery onCustomerQuery(final CustomerQuery customerQuery);

    static CustomerQuery runHook(final HookRunner hookRunner, final CustomerQuery customerQuery) {
        return hookRunner.runUnaryOperatorHook(CustomerQueryHook.class, CustomerQueryHook::onCustomerQuery, customerQuery);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy