1 9 10 package tableappclient; 11 12 import com.lutris.appserver.server.*; 13 import com.lutris.appserver.server.httpPresentation.*; 14 import com.lutris.appserver.server.session.*; 15 import com.lutris.util.*; 16 17 22 public class TableAppClient extends StandardApplication { 23 24 28 public void startup(Config appConfig) throws ApplicationException { 29 super.startup(appConfig); 30 } 33 public boolean requestPreprocessor(HttpPresentationComms comms) 34 throws Exception { 35 return super.requestPreprocessor(comms); 36 } 37 38 46 public String toHtml() { 47 return "This is <I>tableAppClient</I>"; 48 } 49 } 50 51 | Popular Tags |