001package com.identityworksllc.iiq.common.annotation; 002 003import java.lang.annotation.*; 004 005/** 006 * An annotation indicating that the given type is experimental. Classes annotated with 007 * this may change without notice. 008 */ 009@Retention(RetentionPolicy.CLASS) 010@Target({ElementType.TYPE, ElementType.METHOD}) 011@Inherited 012public @interface Experimental { 013}