*/
public void save( String procInstId,String taskInstId
,ExecutionType type,String operator,String message,Calendar time ){
if( StringUtils.isEmpty(procInstId) )
throw new ApplicationException("流程实例Id不能为空!");
if( StringUtils.isEmpty(taskInstId) )
throw new ApplicationException("流程任务Id不能为空!");
if( type == null )
throw new ApplicationException("流程操作类型不能为空!");
if( StringUtils.isEmpty(operator) )
throw new ApplicationException("操作员不能为空!");
TaskLog log = new TaskLog();
log.setActProcInstId(procInstId);
log.setActTaskInstId(taskInstId);
log.setType(type);