feat: support tongweb shell generate (resolved #11)

This commit is contained in:
ReaJason
2024-12-26 23:45:58 +08:00
parent ab0b6131f0
commit da182a8df5
20 changed files with 2570 additions and 4 deletions
@@ -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();
}