summaryrefslogtreecommitdiffstats
path: root/custodia/store/interface.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-04-07 17:33:28 -0400
committerSimo Sorce <simo@redhat.com>2015-04-07 18:48:31 -0400
commite35d48dbb2362fe06f62e19c2594ef1fdfc4c8c5 (patch)
treecc9fee894edaa9633d900839dee1172c1932e8b6 /custodia/store/interface.py
parent5ed4b17854977c38944b8670b2264b2a9d8c2121 (diff)
downloadcustodia-e35d48dbb2362fe06f62e19c2594ef1fdfc4c8c5.tar.gz
custodia-e35d48dbb2362fe06f62e19c2594ef1fdfc4c8c5.tar.xz
custodia-e35d48dbb2362fe06f62e19c2594ef1fdfc4c8c5.zip
Add interface to remove data from store
Diffstat (limited to 'custodia/store/interface.py')
-rw-r--r--custodia/store/interface.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/custodia/store/interface.py b/custodia/store/interface.py
index 6ca3ea4..3c7d620 100644
--- a/custodia/store/interface.py
+++ b/custodia/store/interface.py
@@ -15,3 +15,6 @@ class CSStore(object):
def list(self, keyfilter=None):
raise NotImplementedError
+
+ def cut(self, key):
+ raise NotImplementedError