summaryrefslogtreecommitdiff
path: root/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/validators/PropertyValidator.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/validators/PropertyValidator.java')
-rw-r--r--pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/validators/PropertyValidator.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/validators/PropertyValidator.java b/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/validators/PropertyValidator.java
deleted file mode 100644
index 8da9babc..00000000
--- a/pdf-over/pdf-signer-interface/src/main/java/at/asit/pdfover/pdfsignator/profileproperties/validators/PropertyValidator.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package at.asit.pdfover.pdfsignator.profileproperties.validators;
-
-import at.asit.pdfover.pdfsignator.InvalidPropertyTypeException;
-import at.asit.pdfover.pdfsignator.InvalidPropertyValueException;
-import at.asit.pdfover.pdfsignator.profileproperties.ProfileProperty;
-
-/**
- * Validates the value of a property
- */
-public abstract class PropertyValidator {
-
- /**
- * The priority of this property should determine the order of validations
- */
- protected int priority = 1;
-
- /**
- * Called to validate the value of the given property and throws an InvalidPropertyValueException if value is invalid
- * @param propety
- * @throws InvalidPropertyValueException
- */
- public abstract void validate(ProfileProperty property) throws InvalidPropertyValueException, InvalidPropertyTypeException;
-
- /**
- * Sets the priority of this validator
- * @param value The new priority
- */
- public void SetPriority(int value) {
- this.priority = value;
- }
-
- /**
- * Gets the priority of this validator
- * @return The priority of this validator
- */
- public int GetPriority() {
- return this.priority;
- }
-
- public abstract void CheckPropertyType(ProfileProperty property) throws InvalidPropertyTypeException;
-}