com.jwebmp.guicedinjection.interfaces.IFileContentsScanner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guiced-injection Show documentation
Show all versions of guiced-injection Show documentation
Guice Injection allows you to access multiple Guice Binders and Modules across separate archives.
Allowing you to configure your applications with injection from multiple dependancies. Servlets, EJB's, and
Stand-Alone is supported. Requires JDK 8 or 10.
package com.jwebmp.guicedinjection.interfaces;
import io.github.classgraph.ResourceList;
import java.util.Map;
/**
* Marks the class as a file scanner
*/
@FunctionalInterface
public interface IFileContentsScanner
{
/**
* Returns a contents processer to run on match
*
* @return the maps of file identifiers and contents
*/
Map onMatch();
}