zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.autoform.fw.config.login;
 
import com.changhong.passport.client.key.DefaultKeyServiceImpl;
import com.changhong.passport.core.key.Ki4soKey;
 
public class KeyServiceImpl extends DefaultKeyServiceImpl {
 
    public KeyServiceImpl() {
    }
 
    public KeyServiceImpl(String ki4soServerFetchKeyUrl, String appId) {
        //super(ki4soServerFetchKeyUrl, appId,null);
        super(ki4soServerFetchKeyUrl, appId);
    }
 
    public Ki4soKey findKeyByAppId(String appId) {
        Ki4soKey key = new Ki4soKey();
        key.setAppId("7b8879ad");
        key.setKeyId("21");
        key.setValue("z6a73qas23D#@12a");
        return key;
    }
}