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; } }