com.flowlogix.web.services.AssetMinimizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowlogix-tapestry Show documentation
Show all versions of flowlogix-tapestry Show documentation
Flow Logix Utility Library for Tapestry
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.flowlogix.web.services;
import org.apache.tapestry5.Asset;
/**
* remove whitespaces, etc. from scripts/CSS
*
* See Documentation
*
* @author lprimak
*/
public interface AssetMinimizer
{
String minimize(Asset asset);
}