com.lonelystorm.air.asset.services.FileResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of air-asset Show documentation
Show all versions of air-asset Show documentation
The LonelyStorm Air Asset library provides support to be able to compile SASS files at runtime.
package com.lonelystorm.air.asset.services;
public interface FileResolver {
/**
* Determines if a file exists in the repository.
*
* @param location
* @return
*/
boolean exists(String location);
/**
* Loads the content of a file from the repository.
*
* @param location
* @return
*/
String load(String location);
}