summaryrefslogtreecommitdiffstats
path: root/custodia/store/interface.py
blob: 11c2e3664749e91c806d4ceec18c9879993fa05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (C) 2015  Custodia Project Contributors - see LICENSE file

from custodia import log


class CSStoreError(Exception):
    def __init__(self, message=None):
        log.debug(message)
        super(CSStoreError, self).__init__(message)


class CSStoreExists(Exception):
    def __init__(self, message=None):
        log.debug(message)
        super(CSStoreExists, self).__init__(message)


class CSStore(object):

    def get(self, key):
        raise NotImplementedError

    def set(self, key, value, replace=False):
        raise NotImplementedError

    def list(self, keyfilter=None):
        raise NotImplementedError

    def cut(self, key):
        raise NotImplementedError