001package com.identityworksllc.iiq.common.annotation; 002 003import java.lang.annotation.*; 004 005/** 006 * Indicates that a class or method is currently work-in-progress. Methods or 007 * classes tagged with this annotation may change their behavior without 008 * notice. 009 */ 010@Target({ElementType.TYPE, ElementType.METHOD}) 011@Retention(RetentionPolicy.CLASS) 012@Inherited 013public @interface InProgress { 014}