All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ksoot.common.spring.boot.annotation.Prod Maven / Gradle / Ivy

The newest version!
package com.ksoot.common.spring.boot.annotation;

import com.ksoot.common.spring.boot.config.SpringProfiles;
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.Profile;

/**
 * @author Rajveer Singh
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Profile(SpringProfiles.PRODUCTION)
public @interface Prod {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy