use of org.jcryptool.crypto.keystore.ui.views.interfaces.IKeyStoreListener in project core by jcryptool.
the class CertificateContainerNode method remove.
public void remove(IKeyStoreAlias alias) {
AbstractKeyNode child = new CertificateNode(alias);
nodes.remove(child);
removeChild(child);
Iterator<IKeyStoreListener> it = ContactManager.getInstance().getKeyStoreListeners();
while (it.hasNext()) {
it.next().fireKeyStoreModified(this);
}
}
use of org.jcryptool.crypto.keystore.ui.views.interfaces.IKeyStoreListener in project core by jcryptool.
the class CertificateContainerNode method add.
public void add(IKeyStoreAlias alias) {
AbstractKeyNode child = new CertificateNode(alias);
nodes.add(child);
addChild(child);
Iterator<IKeyStoreListener> it = ContactManager.getInstance().getKeyStoreListeners();
while (it.hasNext()) {
it.next().fireKeyStoreModified(this);
}
}
use of org.jcryptool.crypto.keystore.ui.views.interfaces.IKeyStoreListener in project core by jcryptool.
the class SecretKeyContainerNode method add.
public void add(IKeyStoreAlias alias) {
AbstractKeyNode child = new SecretKeyNode(alias);
nodes.add(child);
addChild(child);
Iterator<IKeyStoreListener> it = ContactManager.getInstance().getKeyStoreListeners();
while (it.hasNext()) {
it.next().fireKeyStoreModified(this);
}
}
use of org.jcryptool.crypto.keystore.ui.views.interfaces.IKeyStoreListener in project core by jcryptool.
the class SecretKeyContainerNode method remove.
public void remove(IKeyStoreAlias alias) {
AbstractKeyNode child = new SecretKeyNode(alias);
// $NON-NLS-1$
LogUtil.logInfo("nodes.length a priori: " + nodes.size());
nodes.remove(child);
// $NON-NLS-1$
LogUtil.logInfo("nodes.length a posterior: " + nodes.size());
removeChild(child);
Iterator<IKeyStoreListener> it = ContactManager.getInstance().getKeyStoreListeners();
while (it.hasNext()) {
it.next().fireKeyStoreModified(this);
}
}
use of org.jcryptool.crypto.keystore.ui.views.interfaces.IKeyStoreListener in project core by jcryptool.
the class KeyPairContainerNode method remove.
public void remove(IKeyStoreAlias alias) {
KeyPairNode child = nodes.get(alias.getHashValue());
nodes.remove(alias.getHashValue());
removeChild(child);
Iterator<IKeyStoreListener> it = ContactManager.getInstance().getKeyStoreListeners();
while (it.hasNext()) {
it.next().fireKeyStoreModified(this);
}
}
Aggregations