home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / com / bitmechanic / gsp / Template.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-02-03  |  493 b   |  16 lines

  1. package com.bitmechanic.gsp;
  2.  
  3. public interface Template {
  4.    long getParseTime();
  5.  
  6.    boolean shouldCache();
  7.  
  8.    boolean usesPrintWriter();
  9.  
  10.    void render(Application var1, GspRequest var2, GspResponse var3) throws Exception;
  11.  
  12.    void flushExpiredCacheData();
  13.  
  14.    void flushAllCacheData();
  15. }
  16.