]> WPIA git - gigi.git/blob - lib/servlet-api/javax/servlet/AsyncEvent.java
adding servlet api (from tomcat)
[gigi.git] / lib / servlet-api / javax / servlet / AsyncEvent.java
1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements.  See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License.  You may obtain a copy of the License at
8 *
9 *     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 */
17 package javax.servlet;
18
19 /**
20  * TODO SERVLET3 - Add comments
21  * @since Servlet 3.0
22  */
23 public class AsyncEvent {
24     private final AsyncContext context;
25     private final ServletRequest request;
26     private final ServletResponse response;
27     private final Throwable throwable;
28
29     public AsyncEvent(AsyncContext context) {
30         this.context = context;
31         this.request = null;
32         this.response = null;
33         this.throwable = null;
34     }
35
36     public AsyncEvent(AsyncContext context, ServletRequest request,
37             ServletResponse response) {
38         this.context = context;
39         this.request = request;
40         this.response = response;
41         this.throwable = null;
42     }
43
44     public AsyncEvent(AsyncContext context, Throwable throwable) {
45         this.context = context;
46         this.throwable = throwable;
47         this.request = null;
48         this.response = null;
49     }
50
51     public AsyncEvent(AsyncContext context, ServletRequest request,
52             ServletResponse response, Throwable throwable) {
53         this.context = context;
54         this.request = request;
55         this.response = response;
56         this.throwable = throwable;
57     }
58
59     public AsyncContext getAsyncContext() {
60         return context;
61     }
62
63     public ServletRequest getSuppliedRequest() {
64         return request;
65     }
66
67     public ServletResponse getSuppliedResponse() {
68         return response;
69     }
70
71     public Throwable getThrowable() {
72         return throwable;
73     }
74 }