summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java
index 26a98def..c3c78c75 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/PersistentConfigProvider.java
@@ -134,6 +134,36 @@ public interface PersistentConfigProvider {
public boolean getSignaturePdfACompat();
/**
+ * Gets whether keystore signing is enabled
+ * @return whether keystore signing is enabled
+ */
+ public Boolean getKeyStoreEnabledPersistent();
+
+ /**
+ * Gets the keystore file
+ * @return the keystore file
+ */
+ public String getKeyStoreFilePersistent();
+
+ /**
+ * Gets the keystore type
+ * @return the keystore type
+ */
+ public String getKeyStoreTypePersistent();
+
+ /**
+ * Gets the keystore store password
+ * @return the keystore store password
+ */
+ public String getKeyStoreStorePassPersistent();
+
+ /**
+ * Gets the keystore key password
+ * @return the keystore key password
+ */
+ public String getKeyStoreKeyPassPersistent();
+
+ /**
* Gets whether to automatically check for application updates
* @return whether to automatically check for application updates
*/