/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
- /**
- * Razvan's public code. Copyright 2008 based on Apache license (share alike) see LICENSE.txt for
- * details.
- */
- package com.razie.pub.lightsoa;
-
- import java.lang.annotation.Documented;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Inherited;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
-
- /**
- * mark a SoaMethod that it will accept all parms passed in as an AttrAccess. It must have a single
- * parm of type AttrAccess
- *
- * i.e. <code>public void processForm(AttrAccess parms)</code>
- *
- * @author razvanc99
- */
- @Documented
- @Retention(RetentionPolicy.RUNTIME)
- @Target( { ElementType.METHOD })
- @Inherited
- public @interface SoaAllParms {
- }