1 2 3 4 5 6 7 8 9 10 11 12 | class NODCHOP(DataClassification):
name="NODCHOP"
# this a description of the intent of the classification
# to what does the classification apply?
usage = '''
Applies to data marked with NOD and CHOP keywords.
TEST TYPE!!!
Made to test Structures Feature.
'''
requirement = PHU(DATATYPE="marked-nodandchop")
newtypes.append( NODCHOP())
|