1 2 3 4 5 6 7 8 9 | class PROCESSED_FRINGE(DataClassification):
name="PROCESSED_FRINGE"
usage = 'Applies to all "gifringe"ed data.'
parent = "UNPREPARED"
requirement = OR([PHU( {'{re}.*?GIFRINGE': ".*?" }),
PHU( {'{re}.*?PROCFRNG': ".*?" })])
newtypes.append(PROCESSED_FRINGE())
|