source: trunk/src/main/java/omq/client/annotation/RemoteInterface.java @ 83

Last change on this file since 83 was 82, checked in by stoda, 11 years ago

I've done some javadocs...

File size: 676 bytes
Line 
1package omq.client.annotation;
2
3import java.lang.annotation.Documented;
4import java.lang.annotation.ElementType;
5import java.lang.annotation.Retention;
6import java.lang.annotation.RetentionPolicy;
7import java.lang.annotation.Target;
8
9/**
10 * Annotation which indicates which is the remote interface that can have
11 * asynchmethods or syncmethods. By default every method without an annotation
12 * will be classified as a SyncMethod. Both annotations can be preceded by the @MultiMethod
13 * annotation.
14 *
15 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
16 *
17 */
18@Documented
19@Retention(RetentionPolicy.RUNTIME)
20@Target(ElementType.TYPE)
21public @interface RemoteInterface {
22}
Note: See TracBrowser for help on using the repository browser.