summaryrefslogtreecommitdiff
path: root/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java')
-rw-r--r--pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java b/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
deleted file mode 100644
index 35d903af..00000000
--- a/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package at.asit.pdfover.pdfsignator.profileproperties;
-
-import at.asit.pdfover.pdfsignator.InvalidPropertyTypeException;
-import at.asit.pdfover.pdfsignator.InvalidPropertyValueException;
-
-public class StringProfileProperty extends ProfileProperty {
- /**
- * Sets the string value of the Property
- * @param value The string value
- * @throws InvalidPropertyValueException
- * @throws InvalidPropertyTypeException
- */
- public void SetValue(String value) throws InvalidPropertyValueException, InvalidPropertyTypeException {
- this.SetTextValue(value);
- }
-
- /**
- * Gets the string value
- * @return the string value of the property
- */
- public String GetValue() {
- return this.GetTextValue();
- }
-}