1
zj
2025-04-17 ff2d1f5acdadc466d7e199028ef385ae8ca277e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package security.web;
 
import kernel.util.ServletUtil;
 
/** 
 *  判断是否登录
 */
public class IsLoginAction extends BaseSecurityAction {
 
    /**    
     * Member Description
     */
    
    private static final long serialVersionUID = 1L;
 
    public String execute() throws Exception {
        String partyId =this.getLoginPartyId();
        ServletUtil.outputXML(getResponse(), partyId!=null ? "0" : "1");
        return null;
 
    }
 
 
}