01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.geronimo.jetty6;
17:
18: import org.mortbay.jetty.Handler;
19: import org.mortbay.jetty.Server;
20:
21: /**
22: * @version $Rev: 449059 $ $Date: 2006-09-23 05:23:09 +1000 (Sat, 23 Sep 2006) $
23: */
24: public abstract class AbstractPreHandler implements PreHandler {
25: protected Handler next;
26:
27: public final void setNextHandler(Handler next) {
28: this .next = next;
29: }
30:
31: public final Server getServer() {
32: throw new UnsupportedOperationException();
33: }
34:
35: public final boolean isFailed() {
36: throw new UnsupportedOperationException();
37: }
38:
39: public final boolean isRunning() {
40: throw new UnsupportedOperationException();
41: }
42:
43: public final boolean isStarted() {
44: throw new UnsupportedOperationException();
45: }
46:
47: public final boolean isStarting() {
48: throw new UnsupportedOperationException();
49: }
50:
51: public final boolean isStopping() {
52: throw new UnsupportedOperationException();
53: }
54:
55: public boolean isStopped() {
56: throw new UnsupportedOperationException();
57: }
58:
59: public final void setServer(Server server) {
60: throw new UnsupportedOperationException();
61: }
62:
63: public final void start() throws Exception {
64: throw new UnsupportedOperationException();
65: }
66:
67: public final void stop() throws Exception {
68: throw new UnsupportedOperationException();
69: }
70:
71: public void destroy() {
72: }
73:
74: }
|