1 7 8 package multibase; 9 10 import com.lutris.appserver.server.*; 11 import com.lutris.appserver.server.httpPresentation.*; 12 import com.lutris.appserver.server.session.*; 13 import com.lutris.util.*; 14 15 20 public class Multibase extends StandardApplication { 21 22 26 public void startup(Config appConfig) throws ApplicationException { 27 super.startup(appConfig); 28 } 31 public boolean requestPreprocessor(HttpPresentationComms comms) 32 throws Exception { 33 return super.requestPreprocessor(comms); 34 } 35 36 44 public String toHtml() { 45 return "This is <I>multiDBExemple</I>"; 46 } 47 } 48 49 | Popular Tags |