Search in sources :

Example 1 with PartitionsController

use of org.pentaho.di.ui.repository.repositoryexplorer.controllers.PartitionsController in project pentaho-kettle by pentaho.

the class BaseRepositoryExplorerUISupport method setup.

@Override
protected void setup() {
    BrowseController browseController = new BrowseController();
    ConnectionsController connectionsController = new ConnectionsController();
    PartitionsController partitionsController = new PartitionsController();
    SlavesController slavesController = new SlavesController();
    ClustersController clustersController = new ClustersController();
    handlers.add(browseController);
    controllerNames.add(browseController.getName());
    handlers.add(connectionsController);
    controllerNames.add(connectionsController.getName());
    handlers.add(partitionsController);
    controllerNames.add(partitionsController.getName());
    handlers.add(slavesController);
    controllerNames.add(slavesController.getName());
    handlers.add(clustersController);
    controllerNames.add(clustersController.getName());
}
Also used : SlavesController(org.pentaho.di.ui.repository.repositoryexplorer.controllers.SlavesController) ClustersController(org.pentaho.di.ui.repository.repositoryexplorer.controllers.ClustersController) BrowseController(org.pentaho.di.ui.repository.repositoryexplorer.controllers.BrowseController) ConnectionsController(org.pentaho.di.ui.repository.repositoryexplorer.controllers.ConnectionsController) PartitionsController(org.pentaho.di.ui.repository.repositoryexplorer.controllers.PartitionsController)

Aggregations

BrowseController (org.pentaho.di.ui.repository.repositoryexplorer.controllers.BrowseController)1 ClustersController (org.pentaho.di.ui.repository.repositoryexplorer.controllers.ClustersController)1 ConnectionsController (org.pentaho.di.ui.repository.repositoryexplorer.controllers.ConnectionsController)1 PartitionsController (org.pentaho.di.ui.repository.repositoryexplorer.controllers.PartitionsController)1 SlavesController (org.pentaho.di.ui.repository.repositoryexplorer.controllers.SlavesController)1