Search in sources :

Example 1 with CertImportController

use of de.carne.certmgr.jfx.certimport.CertImportController in project certmgr by hdecarne.

the class StoreController method onCmdImportCerts.

@SuppressWarnings("unused")
@FXML
void onCmdImportCerts(ActionEvent evt) {
    try {
        CertImportController importController = loadStage(CertImportController.class).init(this.storeProperty.get());
        importController.showAndWait();
        updateStoreEntryView();
    } catch (IOException e) {
        Alerts.unexpected(e).showAndWait();
    }
}
Also used : CertImportController(de.carne.certmgr.jfx.certimport.CertImportController) IOException(java.io.IOException) FXML(javafx.fxml.FXML)

Aggregations

CertImportController (de.carne.certmgr.jfx.certimport.CertImportController)1 IOException (java.io.IOException)1 FXML (javafx.fxml.FXML)1