ludc
2024-12-13 9d92bb1d5698690bfd06fb93c668d9ae73300426
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.vci.client.auth2.action;
 
import com.vci.client.auth2.view.CheckRightResultView;
 
public class CheckRightAction extends Action{
 
    /**
     * 
     */
    private static final long serialVersionUID = -8721476593996387603L;
 
    public CheckRightAction(String name) {
        super(name);
    }
 
    @Override
    public void execute() {
        CheckRightResultView instance = CheckRightResultView.getInstance();
        instance.setFunclet(getFunclet());
        instance.refresh();
        instance.setVisible(true);
        
    }
 
}