aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-web-status/src/main/java/at/gv/egiz/status/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-as-web-status/src/main/java/at/gv/egiz/status/Test.java')
-rw-r--r--pdf-as-web-status/src/main/java/at/gv/egiz/status/Test.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/pdf-as-web-status/src/main/java/at/gv/egiz/status/Test.java b/pdf-as-web-status/src/main/java/at/gv/egiz/status/Test.java
new file mode 100644
index 00000000..97f5f4d7
--- /dev/null
+++ b/pdf-as-web-status/src/main/java/at/gv/egiz/status/Test.java
@@ -0,0 +1,28 @@
+package at.gv.egiz.status;
+
+/**
+ * The Interface Test.
+ */
+public interface Test {
+
+ /**
+ * Gets the name.
+ *
+ * @return the name
+ */
+ public String getName();
+
+ /**
+ * Gets the cache delay.
+ *
+ * @return the cache delay
+ */
+ public long getCacheDelay();
+
+ /**
+ * Run test.
+ *
+ * @return the test result
+ */
+ public TestResult runTest();
+}