Class: R509::Validity::Checker
- Inherits:
-
Object
- Object
- R509::Validity::Checker
- Defined in:
- lib/r509/validity.rb
Overview
abstract base class for a Checker
Direct Known Subclasses
Instance Method Summary (collapse)
- - (Object) check(issuer, serial)
-
- (Boolean) is_available?
is_available? is meant to be implemented to check if the backend store you choose to implement is currently working.
Instance Method Details
- (Object) check(issuer, serial)
60 61 62 |
# File 'lib/r509/validity.rb', line 60 def check(issuer, serial) raise NotImplementedError, "You must call #check on a subclass of Checker" end |
- (Boolean) is_available?
is_available? is meant to be implemented to check if the backend store you choose to implement is currently working. see r509-ocsp-responder and r509-validity-redis for an example of use
66 67 68 |
# File 'lib/r509/validity.rb', line 66 def is_available? raise NotImplementedError, "You must call #is_available? on a subclass of Checker" end |