1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.mandi.common;
|
| import javax.servlet.http.HttpSession;
|
| public class Tokenmethod {
| @Deprecated
| public static boolean checkcertify(String certi,HttpSession session)
| {
| if(certi==null||session==null)
| return false;
| String scerti=session.getAttribute("certifycode")+"";
| if(certi.equals(scerti))
| return true;
| return false;
| }
| }
|
|