package de.verit.klaros.scripting;
/**
* Public interface that all seam-pdf template scripts must implement be work
* properly.
*/
public interface KlarosScript {
/**
* This functions gets called by the seam-pdf servlet to execute the script.
*
* @param context
* The event context to provide all needed functions, properties
* and objects.
*/
void execute(KlarosContext context);
}