LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
global class PluginDescribeResult {
    global String description;
    global List<Process.PluginDescribeResult.InputParameter> inputParameters;
    global String name;
    global List<Process.PluginDescribeResult.OutputParameter> outputParameters;
    global String tag;
    global PluginDescribeResult() { }
    global Object clone() { }
global class InputParameter {
    global String description;
    global String name;
    global Process.PluginDescribeResult.ParameterType parameterType;
    global Boolean required;
    global PluginDescribeResult.InputParameter(String name, String description, Process.PluginDescribeResult.ParameterType parameterType, Boolean required) { }
    global PluginDescribeResult.InputParameter(String name, Process.PluginDescribeResult.ParameterType parameterType, Boolean required) { }
    global Object clone() { }
 
}
global class OutputParameter {
    global String description;
    global String name;
    global Process.PluginDescribeResult.ParameterType parameterType;
    global PluginDescribeResult.OutputParameter(String name, String description, Process.PluginDescribeResult.ParameterType parameterType) { }
    global PluginDescribeResult.OutputParameter(String name, Process.PluginDescribeResult.ParameterType parameterType) { }
    global Object clone() { }
 
}
global enum ParameterType {
BOOLEAN,
DATE,
DATETIME,
DECIMAL,
DOUBLE,
FLOAT,
ID,
INTEGER,
LONG,
STRING
}
 
}