summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java62
1 files changed, 61 insertions, 1 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
index 6215fb87..9b312ee6 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainer.java
@@ -250,12 +250,72 @@ public interface ConfigurationContainer {
public SignaturePosition getDefaultSignaturePosition();
/**
- * Gets the default signature position
+ * Sets the default signature position
* @param signaturePosition the default signature position
*/
public void setDefaultSignaturePosition(SignaturePosition signaturePosition);
/**
+ * Gets whether keystore signing is enabled
+ * @return whether keystore signing is enabled
+ */
+ public Boolean getKeyStoreEnabled();
+
+ /**
+ * Sets whether keystore signing is enabled
+ * @param enabled whether keystore signing is enabled
+ */
+ public void setKeyStoreEnabled(Boolean enabled);
+
+ /**
+ * Gets the keystore file
+ * @return the keystore file
+ */
+ public String getKeyStoreFile();
+
+ /**
+ * Sets the keystore file
+ * @param file the keystore file
+ */
+ public void setKeyStoreFile(String file);
+
+ /**
+ * Gets the keystore type
+ * @return the keystore type
+ */
+ public String getKeyStoreType();
+
+ /**
+ * Sets the keystore type
+ * @param type the keystore type
+ */
+ public void setKeyStoreType(String type);
+
+ /**
+ * Gets the keystore store password
+ * @return the keystore store password
+ */
+ public String getKeyStoreStorePass();
+
+ /**
+ * Sets the keystore store password
+ * @param storePass the keystore store password
+ */
+ public void setKeyStoreStorePass(String storePass);
+
+ /**
+ * Gets the keystore key password
+ * @return the keystore key password
+ */
+ public String getKeyStoreKeyPass();
+
+ /**
+ * Sets the keystore key password
+ * @param keyPass the keystore key password
+ */
+ public void setKeyStoreKeyPass(String keyPass);
+
+ /**
* Gets whether to automatically check for application updates
* @return whether to automatically check for application updates
*/