diff --git a/letsencrypt/client/validator.py b/letsencrypt/client/validator.py index c647f7d2b..716d1528f 100644 --- a/letsencrypt/client/validator.py +++ b/letsencrypt/client/validator.py @@ -1,12 +1,14 @@ class Validator(object): - """ - This Class will contain an API to validate configurations. - """ + """Configuration validator.""" + def redirect(self, name): - return + raise NotImplementedError() + def ocsp_stapling(self, name): - return + raise NotImplementedError() + def https(self, names): - return + raise NotImplementedError() + def hsts(self, name): - return + raise NotImplementedError()