mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3399 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
34 lines
1005 B
Plaintext
34 lines
1005 B
Plaintext
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
|
|
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
|
|
|
|
<f:view locale="#{facesContext.externalContext.request.locale}">
|
|
<f:loadBundle basename="alfresco.messages.jbpm" var="msgs"/>
|
|
|
|
<jsp:include page="header1.jsp" />
|
|
Monitoring
|
|
<jsp:include page="header2.jsp" />
|
|
|
|
<b><h:messages/></b>
|
|
|
|
<br />
|
|
<b><h:outputText value="#{monitoringBean.message}" /></b>
|
|
<br /><br />
|
|
|
|
<h:commandLink action="#{monitoringBean.showProcessDefinitions}">
|
|
<h:outputText value="#{msgs.processDefinitionsList}" />
|
|
</h:commandLink>
|
|
<br /><br />
|
|
<h:commandLink action="#{monitoringBean.showSearchInstances}">
|
|
<h:outputText value="#{msgs.searchProcessInstances}"/>
|
|
</h:commandLink>
|
|
<br /><br />
|
|
<h:form>
|
|
Instance ID:
|
|
<h:inputText value="#{monitoringBean.processInstanceId}" />
|
|
<h:commandButton value="Inspect" action="#{monitoringBean.inspectInstance}" />
|
|
</h:form>
|
|
|
|
|
|
<jsp:include page="footer.jsp" />
|
|
</f:view>
|