Annotation Type PlatformServiceMethod


  • @Documented
    @Retention(RUNTIME)
    @Target(METHOD)
    public @interface PlatformServiceMethod
    Annotation for setting mapping between java interface's method and platform service's method. Platform service method name is defined in value()

    For example, this annotated java inerface method:

     @PlatformServiceMethod("SomeMethod")
     Object someMethod(Object[] args)
     
    will be mapped to SomeMethod, for example (.NET service):
     object SomeMethod(object[] args)
     
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String value  
    • Element Detail

      • value

        String value
        Returns:
        Method name in corresponding platform service.