13 lines
345 B
Java
13 lines
345 B
Java
|
|
package com.ai.da.service;
|
||
|
|
|
||
|
|
import javax.servlet.ServletException;
|
||
|
|
import javax.servlet.http.HttpServletRequest;
|
||
|
|
import javax.servlet.http.HttpServletResponse;
|
||
|
|
import java.io.IOException;
|
||
|
|
|
||
|
|
public interface CallBackService {
|
||
|
|
|
||
|
|
Boolean doGet(HttpServletRequest req, HttpServletResponse resp)
|
||
|
|
throws ServletException, IOException;
|
||
|
|
}
|