| | |
| | | package com.vci.server.workflow; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import org.omg.CORBA.LongHolder; |
| | | |
| | |
| | | import com.vci.corba.workflow.data.TaskDescInfo; |
| | | import com.vci.corba.workflow.data.TaskRevokeInfo; |
| | | import com.vci.corba.workflow.data.TasksAssignedInfo; |
| | | import com.vci.corba.workflow.method.WorkflowService; |
| | | import com.vci.corba.workflow.WorkflowService; |
| | | import com.vci.server.BaseService; |
| | | import com.vci.server.workflow.common.resouce.EventProperties; |
| | | import com.vci.server.workflow.common.resouce.WorkflowProperties; |
| | |
| | | public String getServiceName() { |
| | | return ServiceNames.WFSERVICE; |
| | | } |
| | | |
| | | @Override |
| | | public void test(com.zeroc.Ice.Current current) { |
| | | String op = current.operation; |
| | | String adapter = current.adapter.getName(); |
| | | String id = current.id.name; |
| | | String time = new Date().toString(); |
| | | System.out.println(String.format("== %s [WorkflowService.test] (adapter=%s, id=%s, op=%s)", time, adapter, id, op)); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public ProcessCategoryInfo[] getProcessCategories(String parentId, Current current) throws VCIError { |