Package org.apache.oodt.cas.webcomponents.workflow.instance

Examples of org.apache.oodt.cas.webcomponents.workflow.instance.WorkflowInstancesViewer


   * @param parameters
   */
  public WorkflowInstanceViewerPage(PageParameters parameters) {
    super(parameters);
    OpsuiApp app = (OpsuiApp)getApplication();
    add(new WorkflowInstancesViewer("instance_viewer",
        app.getWmUrlStr(), parameters.getString("status"),
        parameters.getInt("pageNum", 1),
        app.getWorkflowInstStatues(), app.getWorkflowLifecycleFilePath(),
        app.getWorkflowInstMetFieldsFilePath(), WorkflowViewerPage.class,
        WorkflowTaskViewerPage.class, WorkflowInstanceViewerPage.class));
View Full Code Here


     public void onClick() {
       setResponsePage(getApplication().getHomePage());
     }
  });
   
    add(new WorkflowInstancesViewer("instance_viewer", ((WMMonitorApp)getApplication()).getWorkflowUrl(),
        params.getString("status", "ALL"), params.getInt("pageNum", 1), ((WMMonitorApp)getApplication()).getStatuses(),
        ((WMMonitorApp)getApplication()).getLifecycleFilePath(), ((WMMonitorApp)getApplication()).getInstMetFieldsFilePath(),
        WorkflowViewerPage.class, WorkflowTaskViewerPage.class, WorkflowInstanceViewerPage.class));
  }
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.webcomponents.workflow.instance.WorkflowInstancesViewer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.