Package ch.csnc.extension.ui

Examples of ch.csnc.extension.ui.CertificateView


  }//GEN-LAST:event_keyStoreListMouseClicked

  private void showActiveCertificateButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_showActiveCertificateButtonActionPerformed
    Certificate cert = contextManager.getDefaultCertificate();
    if(cert!=null) {
      new Dialog(new CertificateView(cert.toString()), false);
    }
  }//GEN-LAST:event_showActiveCertificateButtonActionPerformed
View Full Code Here


  private void showAliasButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_showAliasButtonActionPerformed
    int keystore = keyStoreList.getSelectedIndex();
    if(keystore>=0) {
      int alias = aliasTable.getSelectedRow();
      Certificate cert = contextManager.getCertificate(keystore, alias);
      new Dialog(new CertificateView(cert.toString()), false);
    }
  }//GEN-LAST:event_showAliasButtonActionPerformed
View Full Code Here

TOP

Related Classes of ch.csnc.extension.ui.CertificateView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.