Source code for cfxdb.gen.arealm.MatchType

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: arealm

# WAMP URI match type applied (for pattern subscription/registrations and permissions).
[docs] class MatchType(object): # No match type.
[docs] NONE = 0
# Match URI exactly.
[docs] EXACT = 1
# Match by URI prefix.
[docs] PREFIX = 2
# Match by URI wildcard pattern.
[docs] WILDCARD = 3