本文整理了Java中com.jcraft.jsch.JSch.removeIdentity()
方法的一些代码示例,展示了JSch.removeIdentity()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JSch.removeIdentity()
方法的具体详情如下:
包路径:com.jcraft.jsch.JSch
类名称:JSch
方法名:removeIdentity
[英]Removes the identity from identityRepository.
[中]从identityRepository中删除标识。
代码示例来源:origin: liveoak-io/liveoak
private void updateIdentity(final JSch jsch, File identity) {
if (identity.isFile()) {
try {
jsch.removeIdentity(identity.getAbsolutePath());
jsch.addIdentity(identity.getAbsolutePath(), passphrase);
} catch (JSchException e) {
// Pretend file didn't exist
}
}
}
}
代码示例来源:origin: com.jcraft.jsch/com.springsource.com.jcraft.jsch
public void removeAllIdentity() throws JSchException{
synchronized(identities){
Vector foo=getIdentityNames();
for(int i=0; i<foo.size(); i++){
String name=((String)foo.elementAt(i));
removeIdentity(name);
}
}
}
代码示例来源:origin: net.oneandone/sushi
jsch.removeIdentity(identity);
jsch.addIdentity(identity, null);
内容来源于网络,如有侵权,请联系作者删除!