1 16 package org.apache.cocoon.environment; 17 18 import org.apache.cocoon.ProcessingException; 19 import java.io.IOException ; 20 21 27 28 public interface Redirector { 29 30 33 void redirect(boolean sessionmode, String url) throws IOException , ProcessingException; 34 void globalRedirect(boolean sessionmode, String url) throws IOException , ProcessingException; 35 36 39 boolean hasRedirected(); 40 41 46 void sendStatus(int sc); 47 } 48 49 | Popular Tags |