Exemple #1
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.itemId         = attrs.get('itemId')
        self.name           = attrs.get('name')
        self.enricher       = attrs.get('enricher')
        self.enricherOptions = attrs.get('enricherOptions')
Exemple #2
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.itemId     = attrs.get('itemId')
        self.name       = attrs.get('name')
        self.label      = attrs.get('label')
        self.rbKeyLabel = attrs.get('rbKeyLabel')
Exemple #3
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.itemId       = attrs.get('itemId')
        self.name         = attrs.get('name')
        self.elements     = attrs.get('elements')
        self.defaultIndex = attrs.get('defaultIndex')
    def __init__(self, attrs=None):
        if attrs is None:
            attrs = {}

        RangerBase.__init__(self, attrs)

        self.itemId                 = attrs.get('itemId')
        self.name                   = attrs.get('name')
        self.type                   = attrs.get('type')
        self.level                  = non_null(attrs.get('level'), 1)
        self.parent                 = attrs.get('parent')
        self.mandatory              = attrs.get('mandatory')
        self.lookupSupported        = attrs.get('lookupSupported')
        self.recursiveSupported     = attrs.get('recursiveSupported')
        self.excludesSupported      = attrs.get('excludesSupported')
        self.matcher                = attrs.get('matcher')
        self.matcherOptions         = attrs.get('matcherOptions')
        self.validationRegEx        = attrs.get('validationRegEx')
        self.validationMessage      = attrs.get('validationMessage')
        self.uiHint                 = attrs.get('uiHint')
        self.label                  = attrs.get('label')
        self.description            = attrs.get('description')
        self.rbKeyLabel             = attrs.get('rbKeyLabel')
        self.rbKeyDescription       = attrs.get('rbKeyDescription')
        self.rbKeyValidationMessage = attrs.get('rbKeyValidationMessage')
        self.accessTypeRestrictions = attrs.get('accessTypeRestrictions')
        self.isValidLeaf            = attrs.get('isValidLeaf')
Exemple #5
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.name = attrs.get('name')
        self.rbKey = attrs.get('rbKey')
        self.message = attrs.get('message')
        self.objectId = attrs.get('objectId')
        self.fieldName = attrs.get('fieldName')
Exemple #6
0
    def __init__(self, attrs=None):
        if attrs is None:
            attrs = {}

        RangerBase.__init__(self, attrs)

        self.name = attrs.get('name')
        self.isAdmin = non_null(attrs.get('isAdmin'), False)
    def __init__(self, attrs=None):
        if attrs is None:
            attrs = {}

        RangerBase.__init__(self, attrs)

        self.accessTypes = attrs.get('accessTypes')
        self.resources   = attrs.get('resources')
    def __init__(self, attrs=None):
        if attrs is None:
            attrs = {}

        RangerBase.__init__(self, attrs)

        self.httpStatusCode = attrs.get('httpStatusCode')
        self.statusCode = attrs.get('statusCode')
        self.msgDesc = attrs.get('msgDesc')
        self.messageList = non_null(attrs.get('messageList'), [])
    def __init__(self, attrs=None):
        if attrs is None:
            attrs = {}

        RangerBase.__init__(self, attrs)

        self.itemId     = attrs.get('itemId')
        self.name       = attrs.get('name')
        self.label      = attrs.get('label')
        self.rbKeyLabel = attrs.get('rbKeyLabel')
Exemple #10
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.itemId           = attrs.get('itemId')
        self.name             = attrs.get('name')
        self.label            = attrs.get('label')
        self.description      = attrs.get('description')
        self.transformer      = attrs.get('transformer')
        self.dataMaskOptions  = attrs.get('dataMaskOptions')
        self.rbKeyLabel       = attrs.get('rbKeyLabel')
        self.rbKeyDescription = attrs.get('rbKeyDescription')
Exemple #11
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.itemId                 = attrs.get('itemId')
        self.name                   = attrs.get('name')
        self.evaluator              = attrs.get('evaluator')
        self.evaluatorOptions       = attrs.get('evaluatorOptions')
        self.validationRegEx        = attrs.get('validationRegEx')
        self.validationMessage      = attrs.get('validationMessage')
        self.uiHint                 = attrs.get('uiHint')
        self.label                  = attrs.get('label')
        self.description            = attrs.get('description')
        self.rbKeyLabel             = attrs.get('rbKeyLabel')
        self.rbKeyDescription       = attrs.get('rbKeyDescription')
        self.rbKeyValidationMessage = attrs.get('rbKeyValidationMessage')
Exemple #12
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.itemId                 = attrs.get('itemId')
        self.name                   = attrs.get('name')
        self.type                   = attrs.get('type')
        self.subType                = attrs.get('subType')
        self.mandatory              = attrs.get('mandatory')
        self.defaultValue           = attrs.get('defaultValue')
        self.validationRegEx        = attrs.get('validationRegEx')
        self.validationMessage      = attrs.get('validationMessage')
        self.uiHint                 = attrs.get('uiHint')
        self.label                  = attrs.get('label')
        self.description            = attrs.get('description')
        self.rbKeyLabel             = attrs.get('rbKeyLabel')
        self.rbKeyDescription       = attrs.get('rbKeyDescription')
        self.rbKeyValidationMessage = attrs.get('rbKeyValidationMessage')
Exemple #13
0
    def __init__(self, attrs={}):
        RangerBase.__init__(self, attrs)

        self.accessTypes = attrs.get('accessTypes')
        self.resources   = attrs.get('resources')