
net.amygdalum.testrecorder.hints.AnnotateTimestamp Maven / Gradle / Ivy
The newest version!
package net.amygdalum.testrecorder.hints;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is a hint for the Serializer:
* - to record and persist the time stamp of the recording
*
* This annotation is planned for the future
*
* Use this annotation to provide filter attributes for the generation phase.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD })
public @interface AnnotateTimestamp {
String format() default "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy