1 package org.kuali.rice.krad.util; 2 3 import java.lang.annotation.ElementType; 4 import java.lang.annotation.Inherited; 5 import java.lang.annotation.Retention; 6 import java.lang.annotation.RetentionPolicy; 7 import java.lang.annotation.Target; 8 9 /** 10 * Marks a class as part of the "legacy" data framework. 11 * This annotation is used to enforce legacy disablement. 12 */ 13 @Target({ElementType.TYPE, ElementType.METHOD}) 14 @Retention(RetentionPolicy.RUNTIME) 15 @Inherited 16 public @interface LegacyDataFramework {}