eu.ciechanowiec.sling.rocket.asset.AssetFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sling.rocket.commons Show documentation
Show all versions of sling.rocket.commons Show documentation
Common utilities used by Sling Rocket
package eu.ciechanowiec.sling.rocket.asset;
import java.io.File;
import java.util.Optional;
/**
* Unary binary file of an {@link Asset}.
*/
@FunctionalInterface
public interface AssetFile {
/**
* Returns an {@link Optional} containing the unary binary file of an {@link Asset}.
* @return {@link Optional} containing the unary binary file of an {@link Asset};
* an empty {@link Optional} is returned if due to any reason file retrieve fails
*/
Optional retrieve();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy