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

com.softicar.platform.common.io.resource.supplier.IResourceSupplierFactory Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.io.resource.supplier;

/**
 * Implementations of this interface create {@link IResourceSupplier} instances
 * from file names.
 *
 * @author Alexander Schmidt
 */
@FunctionalInterface
public interface IResourceSupplierFactory {

	/**
	 * Creates an {@link IResourceSupplier} that supplies the resource with the
	 * given file name.
	 *
	 * @param filename
	 *            the name of the resource file (never null)
	 * @return the {@link IResourceSupplier} (never null)
	 */
	IResourceSupplier create(String filename);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy