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;
|
}
|
}
|