All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpedal.objects.acroforms.javafx.CertificateHolderFX Maven / Gradle / Ivy

There is a newer version: 7.15.25
Show newest version
/*
 * ===========================================
 * Java Pdf Extraction Decoding Access Library
 * ===========================================
 *
 * Project Info:  http://www.idrsolutions.com
 * Help section for developers at http://www.idrsolutions.com/support/
 *
 * (C) Copyright 1997-2017 IDRsolutions and Contributors.
 *
 * This file is part of JPedal/JPDF2HTML5
 *
 @LICENSE@
 *
 * ---------------
 * CertificateHolderFX.java
 * ---------------
 */


package org.jpedal.objects.acroforms.javafx;

import java.math.BigInteger;

import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.control.Button;
import javafx.scene.control.TabPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import org.jpedal.utils.LogWriter;

public class CertificateHolderFX {
    private final Stage frame;
    private JavaFXGeneral generalTab;


    public void setValues(final String name, final int version, final String hashAlgorithm, final String subjectFields, final String issuerFields,
                          final BigInteger serialNumber, final String notBefore, final String notAfter, final String publicKeyDescription, final String publicKey,
                          final String x509Data, final String sha1Digest, final String md5Digest) {

        generalTab = new JavaFXGeneral();

        generalTab.setValues(name, notBefore, notAfter);
        JavaFXDetails.setValues();

        LogWriter.writeLog("JavaFX does not make use of " + version + ' ' + hashAlgorithm + ' ' + subjectFields + ' ' + issuerFields +
                ' ' + serialNumber + ' ' + publicKeyDescription + ' ' + publicKey + ' ' + x509Data + ' ' + sha1Digest + ' ' + md5Digest);


    }

    /**
     * Creates new form CertificateHolder
     *
     * @param dialog
     */
    CertificateHolderFX(final Stage dialog) {
        initComponents();
        this.frame = dialog;
    }

    private void initComponents() {
        final TabPane tabbedPanel1 = new TabPane();
        final Button button1 = new Button();
        final HBox box = new HBox();


        button1.setText("OK");
        button1.setOnAction(new EventHandler() {
            @Override
            public void handle(final ActionEvent t) {
//                throw new UnsupportedOperationException("Not supported yet."); 
                frame.close();
            }

        });

        box.getChildren().addAll(button1, tabbedPanel1);


    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy