Examples of unbindFc()


Examples of org.objectweb.fractal.api.control.BindingController.unbindFc()

        ContentController tpmCC = Fractal.getContentController(composite_tpm);
    //fetch the primitive concurrency manager
    BindingController tpmBC = Fractal.getBindingController(
        getSubComponent(composite_tpm, "transactional-persistence-manager"));
    tpmBC.unbindFc("concurrency-manager");

    //Remove the old pessimistic concurrency manager
    BindingController cmBC = Fractal.getBindingController(cm);
        String[] bds = cmBC.listFc();
        for (int i = 0; i < bds.length; i++) {
View Full Code Here

Examples of org.objectweb.fractal.api.control.BindingController.unbindFc()

    //Remove the old pessimistic concurrency manager
    BindingController cmBC = Fractal.getBindingController(cm);
        String[] bds = cmBC.listFc();
        for (int i = 0; i < bds.length; i++) {
            cmBC.unbindFc(bds[i]);
        }
    tpmCC.removeFcSubComponent(cm);


    //instanciate the new ConcurrencyManager
View Full Code Here

Examples of org.objectweb.fractal.api.control.BindingController.unbindFc()

      pmBC.unbindFc(AbstractPOManager.QUERY_MANAGER_BINDING);
      pmBC.unbindFc(AbstractPOManager.TRANSACTIONAL_PERSISTENCE_MANAGER_BINDING);
      pmBC.unbindFc(AbstractPOManager.TRANSACTION_BINDING);

      //remove bindings of the Tx component
      tBC.unbindFc(AbstractTransaction.PO_MANAGER_BINDING);
      tBC.unbindFc(AbstractTransaction.TRANSACTIONAL_PERSISTENCE_MANAGER_BINDING);
      tBC.unbindFc(AbstractTransaction.MAPPER_BINDING);

      //remove both components from the composite
      //TODO: find a way to remove sub components without stopping Speedo !!!
View Full Code Here

Examples of org.objectweb.fractal.api.control.BindingController.unbindFc()

      pmBC.unbindFc(AbstractPOManager.TRANSACTIONAL_PERSISTENCE_MANAGER_BINDING);
      pmBC.unbindFc(AbstractPOManager.TRANSACTION_BINDING);

      //remove bindings of the Tx component
      tBC.unbindFc(AbstractTransaction.PO_MANAGER_BINDING);
      tBC.unbindFc(AbstractTransaction.TRANSACTIONAL_PERSISTENCE_MANAGER_BINDING);
      tBC.unbindFc(AbstractTransaction.MAPPER_BINDING);

      //remove both components from the composite
      //TODO: find a way to remove sub components without stopping Speedo !!!
      //Fractal.getContentController(speedoComponent).removeFcSubComponent(pmC);
View Full Code Here

Examples of org.objectweb.fractal.api.control.BindingController.unbindFc()

      pmBC.unbindFc(AbstractPOManager.TRANSACTION_BINDING);

      //remove bindings of the Tx component
      tBC.unbindFc(AbstractTransaction.PO_MANAGER_BINDING);
      tBC.unbindFc(AbstractTransaction.TRANSACTIONAL_PERSISTENCE_MANAGER_BINDING);
      tBC.unbindFc(AbstractTransaction.MAPPER_BINDING);

      //remove both components from the composite
      //TODO: find a way to remove sub components without stopping Speedo !!!
      //Fractal.getContentController(speedoComponent).removeFcSubComponent(pmC);
      //Fractal.getContentController(speedoComponent).removeFcSubComponent(tC);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.