Skip to content

Commit e7b5db6

Browse files
committed
feat: AdminActivityLogging 어노테이션 추가
1 parent b6f33ba commit e7b5db6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package in.koreatech.koin.admin.history.aop;
2+
3+
import static java.lang.annotation.ElementType.METHOD;
4+
import static java.lang.annotation.RetentionPolicy.RUNTIME;
5+
6+
import java.lang.annotation.Retention;
7+
import java.lang.annotation.Target;
8+
9+
import in.koreatech.koin.admin.history.enums.DomainType;
10+
11+
@Target(METHOD)
12+
@Retention(RUNTIME)
13+
public @interface AdminActivityLogging {
14+
DomainType domain();
15+
String domainIdParam() default "";
16+
}

0 commit comments

Comments
 (0)