
com.cookingfox.chefling.api.CheflingConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chefling-di-java Show documentation
Show all versions of chefling-di-java Show documentation
Chefling is a very minimal dependency injection container written in pure Java.
package com.cookingfox.chefling.api;
import com.cookingfox.chefling.api.exception.ContainerException;
/**
* Helper interface for streamlining the container configuration process. Use the
* {@link #apply(CheflingContainer)} method to configure the container and define the initialization
* process.
*/
public interface CheflingConfig {
/**
* Apply a configuration to the container.
*
* @param container The container instance that is being configured.
* @throws ContainerException
*/
void apply(CheflingContainer container);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy