com.kuliginstepan.mongration.configuration.ConditionalOnMongrationMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongration Show documentation
Show all versions of mongration Show documentation
MongoDB data migration tool for Spring Boot projects
package com.kuliginstepan.mongration.configuration;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.context.annotation.Conditional;
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
@Conditional(OnMongrationModeCondition.class)
public @interface ConditionalOnMongrationMode {
MongrationMode mode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy