Annotation Type PubServerMethod
-
@Target(METHOD) @Retention(RUNTIME) public @interface PubServerMethodDeclares a Publishing Server method.Methods annotated as PubServerMethod will be visible in ison for project configuration.
An example:
@PubServerMethod( type = PluginMethod.MethodType.DATA_MAPPING, label="The first entry of a text list as string", description = "Map the first entry of a text list to a string") public List
firstTextToString(..) {..}
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description PluginMethod.MethodTypetype
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.Stringdescriptionjava.lang.Stringlabel
-
-
-
Element Detail
-
type
PluginMethod.MethodType type
- Returns:
- type of the methods as a value from MethodType enum, e.g. DATA_MAPPING
-
-