package incheon.com.config.annotation;

import org.springframework.beans.factory.annotation.Qualifier;

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

/**
 * @ClassName : ExternalDB.java
 * @Description : 외부 DB 연결용 커스텀 어노테이션
 *
 * @author : 개선작업
 * @since  : 2024. 12. 19
 * @version : 1.0
 *
 * <pre>
 * << 개정이력(Modification Information) >>
 *
 *   수정일              수정자               수정내용
 *  -------------  ------------   ---------------------
 *   2024. 12. 19   개선작업             외부 DB 어노테이션 생성
 * </pre>
 */
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Qualifier
public @interface ExternalDB {
} 