Package org.activiti.explorer.navigation

Examples of org.activiti.explorer.navigation.UriFragment


  protected LazyLoadingQuery processDefinitionListQuery;
  protected LazyLoadingContainer processDefinitionListContainer;
 
  public SuspendedProcessDefinitionPage() {
    ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(SuspendedProcessDefinitionNavigator.SUSPENDED_PROC_DEF_URI_PART));
  }
View Full Code Here


          String processDefinitionId = (String) item.getItemProperty("id").getValue();
          setDetailComponent(new SuspendedProcessDefinitionDetailPanel(processDefinitionId, SuspendedProcessDefinitionPage.this));
         
          // Update URL
          ExplorerApp.get().setCurrentUriFragment(
                  new UriFragment(ActiveProcessDefinitionNavigator.ACTIVE_PROC_DEF_URI_PART, processDefinitionId));
         
        } else {
          // Nothing selected
          setDetailComponent(null);
          ExplorerApp.get().setCurrentUriFragment(new UriFragment(ActiveProcessDefinitionNavigator.ACTIVE_PROC_DEF_URI_PART));
        }
      }
     
    });
   
View Full Code Here

  protected ManagementService managementService = ProcessEngines.getDefaultProcessEngine().getManagementService();
  protected String tableName;
 
  public DatabasePage() {
    ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(DatabaseNavigator.TABLE_URI_PART));
  }
View Full Code Here

        String tableName = (String) event.getProperty().getValue();
        setDetailComponent(new DatabaseDetailPanel(tableName));
      
       // Update URL
       ExplorerApp.get().setCurrentUriFragment(
         new UriFragment(DatabaseNavigator.TABLE_URI_PART, tableName));
      }
    });
   
    // Create column headers
    tableList.addContainerProperty("icon", Embedded.class, null);
View Full Code Here

  protected LazyLoadingContainer deploymentListContainer;
  protected DeploymentFilter deploymentFilter;
 
  public DeploymentPage() {
    ExplorerApp.get().setCurrentUriFragment(
      new UriFragment(DeploymentNavigator.DEPLOYMENT_URI_PART));
   
    deploymentFilter = ExplorerApp.get().getComponentFactory(DeploymentFilterFactory.class).create();
  }
View Full Code Here

          String deploymentId = (String) item.getItemProperty("id").getValue();
          setDetailComponent(new DeploymentDetailPanel(deploymentId, DeploymentPage.this));
         
          // Update URL
          ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(DeploymentNavigator.DEPLOYMENT_URI_PART, deploymentId));
        } else {
          // Nothing is selected
          setDetailComponent(null);
          ExplorerApp.get().setCurrentUriFragment(new UriFragment(DeploymentNavigator.DEPLOYMENT_URI_PART));
        }
      }
    });
   
    // Create column headers
View Full Code Here

TOP

Related Classes of org.activiti.explorer.navigation.UriFragment

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.