1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.dobbinsoft.fw.launcher.inter;
|
|
| import javax.servlet.http.HttpServletResponse;
|
| /**
| * ClassName: BeforeHttpMethod
| * Description: TODO
| *
| * @author: e-weichaozheng
| * @date: 2021-03-29
| */
| public interface AfterHttpMethod {
|
| public void after(HttpServletResponse response, String result);
|
| }
|
|