/razweb/src/com/razie/pub/lightsoa/SoaAllParms.java

http://razpub.googlecode.com/ · Java · 27 lines · 13 code · 2 blank · 12 comment · 0 complexity · ad639e5893b213905f4f64572512c6b6 MD5 · raw file

  1. /**
  2. * Razvan's public code. Copyright 2008 based on Apache license (share alike) see LICENSE.txt for
  3. * details.
  4. */
  5. package com.razie.pub.lightsoa;
  6. import java.lang.annotation.Documented;
  7. import java.lang.annotation.ElementType;
  8. import java.lang.annotation.Inherited;
  9. import java.lang.annotation.Retention;
  10. import java.lang.annotation.RetentionPolicy;
  11. import java.lang.annotation.Target;
  12. /**
  13. * mark a SoaMethod that it will accept all parms passed in as an AttrAccess. It must have a single
  14. * parm of type AttrAccess
  15. *
  16. * i.e. <code>public void processForm(AttrAccess parms)</code>
  17. *
  18. * @author razvanc99
  19. */
  20. @Documented
  21. @Retention(RetentionPolicy.RUNTIME)
  22. @Target( { ElementType.METHOD })
  23. @Inherited
  24. public @interface SoaAllParms {
  25. }