mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 23:11:52 +08:00
feat: support tongweb shell generate (resolved #11)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.tongweb.catalina;
|
||||
|
||||
import com.tongweb.catalina.connector.Request;
|
||||
import com.tongweb.catalina.connector.Response;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import java.io.IOException;
|
||||
|
||||
public interface Valve {
|
||||
Valve getNext();
|
||||
|
||||
void setNext(Valve var1);
|
||||
|
||||
void backgroundProcess();
|
||||
|
||||
void invoke(Request var1, Response var2) throws IOException, ServletException;
|
||||
|
||||
boolean isAsyncSupported();
|
||||
}
|
||||
Reference in New Issue
Block a user