package cucumber.runtime.annotations; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import cucumber.api.Format; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.PARAMETER}) @Documented @Format("yyyy-MM-dd'T'HH:mm:ss") public @interface SampleDateFormat { }