1 2 3 4 5 6 7 8 9 10 11 | class GENERIC(DataClassification):
name="GENERIC"
# this a description of the intent of the classification
# to what does the classification apply?
usage = """
Special parent to group generic types (e.g. IMAGE, SPECT, MOS, IFU)
"""
parent = None
requirement = False # no type is "GENERIC"
newtypes.append(GENERIC())
|