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

com.cookingfox.chefling.api.CheflingConfig Maven / Gradle / Ivy

Go to download

Chefling is a very minimal dependency injection container written in pure Java.

There is a newer version: 7.1.1
Show newest version
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