def __init__(self, maxDigits=None): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({ 'maxDigits': { 'type': 'int', 'name': 'maxDigits', 'native': True } }) self.maxDigits = maxDigits
def __init__(self, range=list()): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({ 'range': { 'maxOccurs': 'unbounded', 'type': 'NumericRange', 'name': 'range', 'minOccurs': '0', 'native': False } }) self.range = range
def __init__(self, expression=list()): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({ 'expression': { 'maxOccurs': 'unbounded', 'type': 'string', 'name': 'expression', 'minOccurs': '0', 'native': True } }) self.expression = expression
def __init__(self, direction=list()): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({ 'direction': { 'maxOccurs': 'unbounded', 'type': 'DateDirection', 'name': 'direction', 'minOccurs': '0', 'native': False } }) self.direction = direction
def __init__(self, minLength=None, maxLength=None): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({ 'minLength': { 'type': 'int', 'name': 'minLength', 'minOccurs': '0', 'native': True }, 'maxLength': { 'type': 'int', 'name': 'maxLength', 'minOccurs': '0', 'native': True } }) self.minLength = minLength self.maxLength = maxLength
def __init__(self): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({})
def __init__(self): ''' Constructor ''' FieldValidatorBase.__init__(self)
def __init__(self, expression=list()): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({'expression': {'maxOccurs': 'unbounded', 'type': 'string', 'name': 'expression', 'minOccurs': '0', 'native': True}}) self.expression = expression
def __init__(self, direction=list()): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({'direction': {'maxOccurs': 'unbounded', 'type': 'DateDirection', 'name': 'direction', 'minOccurs': '0', 'native': False}}) self.direction = direction
def __init__(self, maxDigits=None): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({'maxDigits': {'type': 'int', 'name': 'maxDigits', 'native': True}}) self.maxDigits = maxDigits
def __init__(self, range=list()): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({'range': {'maxOccurs': 'unbounded', 'type': 'NumericRange', 'name': 'range', 'minOccurs': '0', 'native': False}}) self.range = range
def __init__(self, minLength=None, maxLength=None): FieldValidatorBase.__init__(self) self._attrSpecs = getattr(self, '_attrSpecs', {}) self._attrSpecs.update({'minLength': {'type': 'int', 'name': 'minLength', 'minOccurs': '0', 'native': True}, 'maxLength': {'type': 'int', 'name': 'maxLength', 'minOccurs': '0', 'native': True}}) self.minLength = minLength self.maxLength = maxLength