source: branches/objectmq-1.0/src/omq/client/annotation/RemoteInterface.java @ 33

Last change on this file since 33 was 33, checked in by amoreno, 11 years ago

new release version

File size: 607 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
13 *
14 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
15 *
16 */
17@Documented
18@Retention(RetentionPolicy.RUNTIME)
19@Target(ElementType.TYPE)
20public @interface RemoteInterface {
21}
Note: See TracBrowser for help on using the repository browser.