summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java66
1 files changed, 54 insertions, 12 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java
index d878f59e..ec79b403 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/config/ConfigurationContainerImpl.java
@@ -54,31 +54,37 @@ public class ConfigurationContainerImpl implements ConfigurationContainer {
/** The mobile phone number */
protected String mobileNumber = null;
-
+
/** The mobile phone password */
protected String mobilePassword = null;
-
- /** Holds the proxy Host */
+
+ /** Holds the proxy host */
protected String proxyHost = null;
-
- /** Holds the signatureNote */
- protected String signatureNote = null;
-
+
/** Holds the proxy port number */
protected int proxyPort = -1;
-
+
+ /** Holds the proxy username */
+ protected String proxyUser = null;
+
+ /** Holds the proxy password */
+ protected String proxyPass = null;
+
+ /** Holds the signatureNote */
+ protected String signatureNote = null;
+
/** Holds the locale */
protected Locale locale = null;
-
+
/** Holds the signature locale */
protected Locale signLocale = null;
-
+
/** Holds the output folder */
protected String folder = null;
-
+
/** Holds the default BKU to use */
protected BKUs defaultBKU = BKUs.NONE;
-
+
/** Holds the automatic positioning value */
protected boolean automaticPositioning = false;
@@ -225,6 +231,42 @@ public class ConfigurationContainerImpl implements ConfigurationContainer {
/* (non-Javadoc)
+ * @see at.asit.pdfover.gui.workflow.config.ConfigurationContainer#getProxyUser()
+ */
+ @Override
+ public String getProxyUser() {
+ return this.proxyUser;
+ }
+
+
+ /* (non-Javadoc)
+ * @see at.asit.pdfover.gui.workflow.config.ConfigurationContainer#setProxyUser(java.lang.String)
+ */
+ @Override
+ public void setProxyUser(String user) {
+ this.proxyUser = user;
+ }
+
+
+ /* (non-Javadoc)
+ * @see at.asit.pdfover.gui.workflow.config.ConfigurationContainer#getProxyPass()
+ */
+ @Override
+ public String getProxyPass() {
+ return this.proxyPass;
+ }
+
+
+ /* (non-Javadoc)
+ * @see at.asit.pdfover.gui.workflow.config.ConfigurationContainer#setProxyPass(java.lang.String)
+ */
+ @Override
+ public void setProxyPass(String pass) {
+ this.proxyPass = pass;
+ }
+
+
+ /* (non-Javadoc)
* @see at.asit.pdfover.gui.workflow.ConfigurationContainer#getPlaceholderTransparency()
*/
@Override