Package org.olat.commons.coordinate.cluster

Examples of org.olat.commons.coordinate.cluster.ClusterCoordinator


   * @param ureq
   * @param wControl
   */
  public ClusterAdminControllerCluster(UserRequest ureq, WindowControl wControl) {
    super(ureq, wControl);
    ClusterCoordinator clustercoord = (ClusterCoordinator) CoreSpringFactory.getCoreBean(Coordinator.class);
    clusBus = clustercoord.getClusterEventBus();

    mainVc = createVelocityContainer("cluster");
   
   
    // information about the cluster nodes
View Full Code Here


    }
  }
 
  private ClusterEventBus getClusterEventBus() {
    if (clusterEventBus_==null) {
      ClusterCoordinator clustercoord = (ClusterCoordinator) CoreSpringFactory.getCoreBean(Coordinator.class);
      if (clustercoord!=null) {
        clusterEventBus_ = clustercoord.getClusterEventBus();
      }
    }
    return clusterEventBus_;
  }
View Full Code Here

TOP

Related Classes of org.olat.commons.coordinate.cluster.ClusterCoordinator

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.