Files
spring-boot-rest/spring-data-mongodb/src/main/java/com/baeldung/annotation/CascadeSave.java
Loredana Crusoveanu a673f2d809 fix package name
2018-06-02 23:14:27 +03:00

12 lines
293 B
Java

package com.baeldung.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface CascadeSave {
}