Package org.activiti.explorer.navigation

Examples of org.activiti.explorer.navigation.UriFragment


    setDetailComponent(detailPanel);
    changeUrl(processDefinitionId);
  }

  protected void changeUrl(String processDefinitionId) {
    UriFragment processDefinitionFragment = new UriFragment(ProcessNavigator.process_URI_PART, processDefinitionId);
    ExplorerApp.get().setCurrentUriFragment(processDefinitionFragment);
  }
View Full Code Here


       
        if(item != null) {
          String id = (String) item.getItemProperty("id").getValue();
          setDetailComponent(createDetailComponent(id));
         
          UriFragment taskFragment = getUriFragment(id);
          ExplorerApp.get().setCurrentUriFragment(taskFragment);
        } else {
          // Nothing is selected
          setDetailComponent(null);
          ExplorerApp.get().setCurrentUriFragment(getUriFragment(null));
View Full Code Here

  protected LazyLoadingQuery processDefinitionListQuery;
  protected LazyLoadingContainer processDefinitionListContainer;
 
  public ActiveProcessDefinitionPage() {
    ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(ActiveProcessDefinitionNavigator.ACTIVE_PROC_DEF_URI_PART));
  }
View Full Code Here

          String processDefinitionId = (String) item.getItemProperty("id").getValue();
          setDetailComponent(new ActiveProcessDefinitionDetailPanel(processDefinitionId, ActiveProcessDefinitionPage.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 Table jobTable;
  protected LazyLoadingContainer jobListContainer;
 
  public JobPage() {
    ExplorerApp.get().setCurrentUriFragment(
      new UriFragment(JobNavigator.JOB_URL_PART));
  }
View Full Code Here

  protected String managementId;
  protected Table managementTable;
 
  public AdministrationPage() {
    ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(AdministrationNavigator.MANAGEMENT_URI_PART));
    this.i18nManager = ExplorerApp.get().getI18nManager();
  }
View Full Code Here

          String jobId = (String) item.getItemProperty("id").getValue();

          setDetailComponent(new JobDetailPanel(jobId, JobPage.this));
          // Update URL
          ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(JobNavigator.JOB_URL_PART, jobId));
        } else {
          // Nothing is selected
          setDetailComponent(null);
          ExplorerApp.get().setCurrentUriFragment(new UriFragment(JobNavigator.JOB_URL_PART));
        }
      }
    });
   
    // Create column headers
View Full Code Here

            setDetailComponent(new AdminDatabaseSettingsPanel());
          }
         
          // Update URL
          ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(AdministrationNavigator.MANAGEMENT_URI_PART, event.getProperty().getValue().toString()));
        } else {
          // Nothing is selected
          setDetailComponent(null);
          ExplorerApp.get().setCurrentUriFragment(new UriFragment(AdministrationNavigator.MANAGEMENT_URI_PART, managementId));
        }
      }
    });
   
    return managementTable;
View Full Code Here

  protected LazyLoadingContainer processInstanceContainer;
  protected String processInstanceId;
 
  public ProcessInstancePage() {
    ExplorerApp.get().setCurrentUriFragment(
      new UriFragment(DeploymentNavigator.DEPLOYMENT_URI_PART));
  }
View Full Code Here

          String processInstanceId = (String) item.getItemProperty("id").getValue();
          setDetailComponent(new AlfrescoProcessInstanceDetailPanel(processInstanceId, ProcessInstancePage.this));
         
          // Update URL
          ExplorerApp.get().setCurrentUriFragment(
            new UriFragment(ProcessInstanceNavigator.PROCESS_INSTANCE_URL_PART, processInstanceId));
        } else {
          // Nothing is selected
          setDetailComponent(null);
          ExplorerApp.get().setCurrentUriFragment(new UriFragment(ProcessInstanceNavigator.PROCESS_INSTANCE_URL_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.