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

kos.injector.InjectorPlugin Maven / Gradle / Ivy

package kos.injector;

import injector.ExposedAs;
import kos.api.Plugin;
import kos.api.KosContext;
import kos.api.MutableKosContext;
import lombok.val;

@ExposedAs(Plugin.class)
public class InjectorPlugin implements Plugin {

    @Override
    public int priority() {
        return Integer.MAX_VALUE;
    }

    @Override
    public void configure(MutableKosContext kosConfiguration) {
        val loader = new InjectorImplementationLoader();
        loader.register(KosContext.class, kosConfiguration);
        kosConfiguration.setImplementationLoader(loader);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy