10 lines
200 B
Java
10 lines
200 B
Java
package com.eactive.httpmockserver.common.security;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Target({ElementType.PARAMETER})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface CurrentUser {
|
|
}
|