package io.ebean.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

Marks a method as executing prior to a Soft Delete.
/** * Marks a method as executing prior to a Soft Delete. */
@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface PreSoftDelete { }