构建富互联网应用程序监控工作流和流程(6)

简介:
以下代码片段显示了 getProcessModel 和 getInstanceAuditTrail 方法。
  getProcessModel 方法
/**
* This function gets the debugger XML model of a given BPEL process.

* The function returns the xml model.


* @param strProcessID
*            the business process name.
* @return the xml process model.
*/
public String getProcessModel(String strProcessID) {
 System.out.println("getProcessModel - " + strProcessID);
 String strProcessModel = "";
 try {
  IBPELProcessHandle process = getLocator().lookupProcess(
    strProcessID);
  // Returns the debugger XML model of this BPEL process.
  strProcessModel = process.getProcessModel();
 } catch (Exception e){
  e.printStackTrace();
  strProcessModel = ERROR_STRING;
 }
 return strProcessModel;
}
getInstanceAuditTrail 方法 
/**
* This function gets the XML audit trail of a given BPEL process.

* The function returns the xml model.


* @param strProcessID
*            the business process name.
* @return the xml process model.
*/
public String getInstanceAuditTrail(String strInstanceReferenceID) {
 System.out.println("getInstanceAuditTrail - " + strInstanceReferenceID);
 String strResponse = "";
 try {
  IInstanceHandle instance = getInstance(strInstanceReferenceID);
  // Returns the XML representation of the audit trail of this
  // instance.
  strResponse = instance.getAuditTrail();
 } catch (Exception e){
  e.printStackTrace();
  strResponse = ERROR_STRING;
 }
 return strResponse;
}









本文转自 牛海彬 51CTO博客,原文链接:http://blog.51cto.com/newhappy/77191,如需转载请自行联系原作者
目录
相关文章
|
7月前
|
前端开发
基于jeecgboot流程管理平台的自定义业务表单集成方法
基于jeecgboot流程管理平台的自定义业务表单集成方法
168 0
|
缓存 安全 Linux
自建iOS构建流水线建设核心原理剖析
文章主要从iOS打包机远程构建的角度分析,整体链路脚本涉及的shell、ruby、security指令、xml以及iOS工程化相关知识,文章通过一个远程构建流程简单并重点的讲解了如何规避本地打包环境下的小的修改出包存在的大量人工操作,如何动态化配置证书、版本号等信息以及内测分发方式的避坑点。
自建iOS构建流水线建设核心原理剖析
|
运维 监控 网络协议
统一运维监控平台设计思路| 学习笔记
快速学习统一运维监控平台设计思路。
统一运维监控平台设计思路| 学习笔记
|
运维 监控 网络协议
统一运维监控平台设计思路
一、 监控平台的思路 二、 ganglia的安装 三、 yum方式安装ganglia
统一运维监控平台设计思路
|
JSON 数据可视化 前端开发
逻辑编排在优酷可视化搭建中的实践(二) - 编排器与业务
说到逻辑编排大家应该都不陌生了,目前我们集团有多面向后端的逻辑编排技术专项,且没有统一的标准、沉淀通用的方案。也有前端逻辑编排项目,但均面向前端开发提效的逻辑编排,而我们是要打造一个面向非研发人员,可让他们根据图形化组件搭建出逻辑的平台。
649 0
逻辑编排在优酷可视化搭建中的实践(二) - 编排器与业务
|
运维 数据可视化 关系型数据库
工具应用最佳实践系列之——逻辑编排
本篇文章将为大家介绍如何使用阿里云逻辑编排,轻松实现阿里云账单定时自动化导入自己的数据库,便于后续分析。
工具应用最佳实践系列之——逻辑编排