summaryrefslogtreecommitdiff
path: root/macaroonbakery/checkers/conditions.py
blob: 74e863e85134186406324c4fa9972c70f3af8dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2017 Canonical Ltd.
# Licensed under the LGPLv3, see LICENCE file for details.

# StdNamespace holds the URI of the standard checkers schema.
STD_NAMESPACE = 'std'

# Constants for all the standard caveat conditions.
# First and third party caveat conditions are both defined here,
# even though notionally they exist in separate name spaces.
COND_DECLARED = 'declared'
COND_TIME_BEFORE = 'time-before'
COND_ERROR = 'error'
COND_ALLOW = 'allow'
COND_DENY = 'deny'


COND_NEED_DECLARED = 'need-declared'