org.osgl.inject.loader.ElementLoaderBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of genie Show documentation
Show all versions of genie Show documentation
A JSR330 style dependency injection solution
package org.osgl.inject.loader;
import org.osgl.inject.ElementLoader;
/**
* Base class for {@link ElementLoader} implementations
*/
public abstract class ElementLoaderBase implements ElementLoader {
/**
* The default loader priority is set to `5`
*
* @return the default priority value: `5`
*/
@Override
public int priority() {
return 5;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy