You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
294 B
13 lines
294 B
6 years ago
|
package WeChat;
|
||
|
|
||
|
import javax.servlet.http.Cookie;
|
||
|
import javax.servlet.http.HttpServletRequest;
|
||
|
import javax.servlet.http.HttpSession;
|
||
|
|
||
|
public class Authentication {
|
||
|
// 用cookie验证用户身份
|
||
|
public static boolean islegal(HttpServletRequest request){
|
||
|
return true;
|
||
|
}
|
||
|
}
|