1 9 10 package org.enhydra.pim.presentation; 11 12 import com.lutris.appserver.server.httpPresentation.*; 13 14 15 public class RedirectPresentation implements HttpPresentation { 16 17 20 public void run(HttpPresentationComms comms) throws Exception { 21 throw new ClientPageRedirectException( 22 comms.request.getAppFileURIPath("Index.po")); 23 } 24 25 } 26 | Popular Tags |