summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/f1oauth
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2018-01-29 20:23:59 -0800
committerJesse Morgan <jesse@jesterpm.net>2018-01-29 20:23:59 -0800
commitb4b71b902493cac1e5b57c70ab53961c26ceb323 (patch)
treed529a306c3203b9a942464b15225511b7b3fc12e /src/main/java/com/p4square/f1oauth
parent8e7a0c2442674ee95b4ed2453436b6e20c153118 (diff)
Adding /ping resource for deep health checks
Diffstat (limited to 'src/main/java/com/p4square/f1oauth')
-rw-r--r--src/main/java/com/p4square/f1oauth/FellowshipOneIntegrationDriver.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/com/p4square/f1oauth/FellowshipOneIntegrationDriver.java b/src/main/java/com/p4square/f1oauth/FellowshipOneIntegrationDriver.java
index 865f5d6..d3690af 100644
--- a/src/main/java/com/p4square/f1oauth/FellowshipOneIntegrationDriver.java
+++ b/src/main/java/com/p4square/f1oauth/FellowshipOneIntegrationDriver.java
@@ -52,4 +52,11 @@ public class FellowshipOneIntegrationDriver implements IntegrationDriver {
public ProgressReporter getProgressReporter() {
return mProgressReporter;
}
+
+ @Override
+ public boolean doHealthCheck() {
+ // Since I no longer have access to an F1 account,
+ // this will remain unimplemented until it's needed.
+ throw new UnsupportedOperationException("Health check is not yet implemented for the F1 driver.");
+ }
}