Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import java.lang.annotation.ElementType;
  2. import java.lang.annotation.Retention;
  3. import java.lang.annotation.RetentionPolicy;
  4. import java.lang.annotation.Target;
  5.  
  6. @Target(ElementType.PARAMETER)
  7. @Retention(RetentionPolicy.RUNTIME)
  8. public @interface RequestDTO {
  9. Class value();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement