1 17 18 package org.apache.geronimo.jetty6; 19 20 import org.mortbay.jetty.Handler; 21 import org.mortbay.jetty.Server; 22 23 26 public abstract class AbstractPreHandler implements PreHandler { 27 protected Handler next; 28 29 public final void setNextHandler(Handler next) { 30 this.next = next; 31 } 32 33 public final Server getServer() { 34 throw new UnsupportedOperationException (); 35 } 36 37 public final boolean isFailed() { 38 throw new UnsupportedOperationException (); 39 } 40 41 public final boolean isRunning() { 42 throw new UnsupportedOperationException (); 43 } 44 45 public final boolean isStarted() { 46 throw new UnsupportedOperationException (); 47 } 48 49 public final boolean isStarting() { 50 throw new UnsupportedOperationException (); 51 } 52 53 public final boolean isStopping() { 54 throw new UnsupportedOperationException (); 55 } 56 57 public boolean isStopped() { 58 throw new UnsupportedOperationException (); 59 } 60 61 public final void setServer(Server server) { 62 throw new UnsupportedOperationException (); 63 } 64 65 public final void start() throws Exception { 66 throw new UnsupportedOperationException (); 67 } 68 69 public final void stop() throws Exception { 70 throw new UnsupportedOperationException (); 71 } 72 73 public void destroy() { 74 } 75 76 } 77 | Popular Tags |