package omq.client.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation which indicates which is the remote interface that can have * asynchmethods or syncmethods. By default every method without an annotation * will be classified as a SyncMethod * * @author Sergi Toda * */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface RemoteInterface { }