diff options
Diffstat (limited to 'src/main/java/com/p4square/grow/frontend/IntegrationDriver.java')
-rw-r--r-- | src/main/java/com/p4square/grow/frontend/IntegrationDriver.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/com/p4square/grow/frontend/IntegrationDriver.java b/src/main/java/com/p4square/grow/frontend/IntegrationDriver.java index b9c3508..8ea2600 100644 --- a/src/main/java/com/p4square/grow/frontend/IntegrationDriver.java +++ b/src/main/java/com/p4square/grow/frontend/IntegrationDriver.java @@ -23,4 +23,14 @@ public interface IntegrationDriver { * @return The ProgressReporter. */ ProgressReporter getProgressReporter(); + + /** + * Check if the IntegrationDriver is configured correctly and working. + * + * This method should try to contact the CMS to ensure endpoints, + * credentials, etc. are working correctly. + * + * @return true for success. + */ + boolean doHealthCheck(); } |