package org.jooby.assets; import org.jooby.MediaType; import com.typesafe.config.Config; public class CompressorTest extends AssetProcessor { @Override public boolean matches(final MediaType type) { return true; } @Override public String process(final String filename, final String source, final Config conf) throws Exception { return name() + ":" + source; } }