package org.dcache.tests.cells; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation used for cell options. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Message { boolean required() default false; int step() default 0; String cell(); }