1 11 12 package tableappclient.presentation; 13 14 import com.lutris.appserver.server.httpPresentation.*; 15 16 17 public class RedirectPresentation implements HttpPresentation { 18 19 22 public void run(HttpPresentationComms comms) throws Exception { 23 throw new ClientPageRedirectException( 24 comms.request.getAppFileURIPath("WelcomePresentation.po")); 25 } 26 27 } 28 | Popular Tags |