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

com.commercetools.sunrise.framework.hooks.ComponentRegistry Maven / Gradle / Ivy

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

import com.commercetools.sunrise.framework.components.SunriseComponent;
import com.google.inject.ImplementedBy;

@ImplementedBy(HookContextImpl.class)
public interface ComponentRegistry {

    void add(SunriseComponent component);

    default void addAll(Iterable components) {
        components.forEach(this::add);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy