keys constant

String const keys

Implementation

static const keys = r'^keys:((?<operation>put|get|delete):?)'
    r'(?:(?<visibility>public|private|self):?)?'
    r'(?:namespace:(?<namespace>[a-zA-Z0-9_]+):?)?'
    r'(?:appName:(?<appName>[a-zA-Z0-9_]+):?)?'
    r'(?:deviceName:(?<deviceName>[a-zA-Z0-9_]+):?)?'
    r'(?:keyType:(?<keyType>[a-zA-Z0-9_-]+):?)?'
    r'(?:encryptionKeyName:(?<encryptionKeyName>[a-zA-Z0-9_\-]+):?)?'
    r'(?:keyName:(?<keyName>\S+) ?)?'
    r'(?<keyValue>.*)?$';