| Line | |
|---|
| 1 | package omq.client.annotation; |
|---|
| 2 | |
|---|
| 3 | import java.lang.annotation.Documented; |
|---|
| 4 | import java.lang.annotation.ElementType; |
|---|
| 5 | import java.lang.annotation.Retention; |
|---|
| 6 | import java.lang.annotation.RetentionPolicy; |
|---|
| 7 | import 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) |
|---|
| 20 | public @interface RemoteInterface { |
|---|
| 21 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.