Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
52 lines
1.3 KiB
Java
52 lines
1.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.servlet;
|
|
|
|
import javax.servlet.AsyncContext;
|
|
import javax.servlet.ServletRequest;
|
|
import javax.servlet.ServletResponse;
|
|
|
|
public class AsyncEvent {
|
|
private AsyncContext context;
|
|
private ServletRequest request;
|
|
private ServletResponse response;
|
|
private Throwable throwable;
|
|
|
|
public AsyncEvent(AsyncContext context) {
|
|
this(context, context.getRequest(), context.getResponse(), null);
|
|
}
|
|
|
|
public AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response) {
|
|
this(context, request, response, null);
|
|
}
|
|
|
|
public AsyncEvent(AsyncContext context, Throwable throwable) {
|
|
this(context, context.getRequest(), context.getResponse(), throwable);
|
|
}
|
|
|
|
public AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response, Throwable throwable) {
|
|
this.context = context;
|
|
this.request = request;
|
|
this.response = response;
|
|
this.throwable = throwable;
|
|
}
|
|
|
|
public AsyncContext getAsyncContext() {
|
|
return this.context;
|
|
}
|
|
|
|
public ServletRequest getSuppliedRequest() {
|
|
return this.request;
|
|
}
|
|
|
|
public ServletResponse getSuppliedResponse() {
|
|
return this.response;
|
|
}
|
|
|
|
public Throwable getThrowable() {
|
|
return this.throwable;
|
|
}
|
|
}
|
|
|