lemur/lemur/plugins/bases/issuer.py

24 lines
554 B
Python
Raw Normal View History

2015-06-22 22:47:27 +02:00
"""
.. module: lemur.bases.issuer
2015-06-22 22:47:27 +02:00
:platform: Unix
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
:license: Apache, see LICENSE for more details.
.. moduleauthor:: Kevin Glisson <kglisson@netflix.com>
"""
from lemur.plugins.base import Plugin
2015-06-22 22:47:27 +02:00
class IssuerPlugin(Plugin):
2015-06-22 22:47:27 +02:00
"""
This is the base class from which all of the supported
issuers will inherit from.
"""
type = 'issuer'
2015-06-22 22:47:27 +02:00
def create_certificate(self):
raise NotImplementedError
def create_authority(self):
2015-07-08 00:32:55 +02:00
raise NotImplemented
2015-06-22 22:47:27 +02:00