Advertisement
tpeierls

FormDeserializable

Mar 16th, 2012
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.54 KB | None | 0 0
  1. package net.peierls.util.restlet;
  2.  
  3. import java.lang.annotation.Documented;
  4. import java.lang.annotation.ElementType;
  5. import java.lang.annotation.Inherited;
  6. import java.lang.annotation.Retention;
  7. import java.lang.annotation.RetentionPolicy;
  8. import java.lang.annotation.Target;
  9.  
  10.  
  11. /**
  12.  * Marker annotation for types that can be deserialized from a
  13.  * form representation (application/www-form-urlencoded).
  14.  */
  15. @Documented
  16. @Target({ ElementType.TYPE })
  17. @Inherited
  18. @Retention(RetentionPolicy.RUNTIME)
  19. public @interface FormDeserializable {
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement