ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
package com.vci.corba.workflow.data;
 
/**
 * Generated from IDL struct "ProcessTaskInfo".
 *
 * @author JacORB IDL compiler V 3.9
 * @version generated at 2022-12-23 15:42:24
 */
 
public final class ProcessTaskInfo
    implements org.omg.CORBA.portable.IDLEntity
{
    /** Serial version UID. */
    private static final long serialVersionUID = 1L;
    public ProcessTaskInfo(){}
    public java.lang.String id = "";
    public java.lang.String deploymentId = "";
    public java.lang.String taskName = "";
    public java.lang.String taskType = "";
    public java.lang.String taskDesc = "";
    public int pltreatment;
    public java.lang.String popUserDialog = "";
    public java.lang.String revoke = "";
    public com.vci.corba.workflow.data.PropertyInfo[] taskTypeProperties;
    public com.vci.corba.workflow.data.CustomInfo[] customUserInfos;
    public com.vci.corba.workflow.data.PropertyInfo[] revokeInfos;
    public ProcessTaskInfo(java.lang.String id, java.lang.String deploymentId, java.lang.String taskName, java.lang.String taskType, java.lang.String taskDesc, int pltreatment, java.lang.String popUserDialog, java.lang.String revoke, com.vci.corba.workflow.data.PropertyInfo[] taskTypeProperties, com.vci.corba.workflow.data.CustomInfo[] customUserInfos, com.vci.corba.workflow.data.PropertyInfo[] revokeInfos)
    {
        this.id = id;
        this.deploymentId = deploymentId;
        this.taskName = taskName;
        this.taskType = taskType;
        this.taskDesc = taskDesc;
        this.pltreatment = pltreatment;
        this.popUserDialog = popUserDialog;
        this.revoke = revoke;
        this.taskTypeProperties = taskTypeProperties;
        this.customUserInfos = customUserInfos;
        this.revokeInfos = revokeInfos;
    }
}