@Target(value=METHOD)
 @Retention(value=RUNTIME)
public @interface Uncached
Specify a method as uncached.
  Methods with no parameters that have a non-void and non-future return type
  are cached by default, i.e. the return value is pre-calculated and
  transferred in the remote reference.
  If a method is specified as uncached, it will be invoked on every call.
  
  Applicable for methods with no parameters
  that have a non-void and non-future return type.
  These methods are cached by default.