/**********************************************************\ | | | hprose | | | | Official WebSite: http://www.hprose.com/ | | http://www.hprose.org/ | | | \**********************************************************/ /**********************************************************\ * * * ResultMode.java * * * * ResultMode Annotation for Java. * * * * LastModified: Mar 2, 2014 * * Author: Ma Bingyao <andot@hprose.com> * * * \**********************************************************/ package hprose.common; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ResultMode { HproseResultMode value(); }