summaryrefslogtreecommitdiffstats
path: root/app/toscalib/types/constraints.py
blob: ae2401de4d7809db0c9e29a3eeebecfa8bd9b234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#Author: Shu Shi
#emaiL: shushi@research.att.com


class PropertyConstraints(object):
    def __init__(self, content):
        self.raw_content = content
    
    def _parse_content(self):
        pass
    
    def _validate(self, value):
        return True