Examples of activate()


Examples of org.ethereum.net.eth.EthHandler.activate()

                        // Activate EthHandler for this peer
                        EthHandler ethHandler =
                                (EthHandler)ctx.pipeline().get(Capability.ETH);

                        ethHandler.setPeerId(msg.getPeerId());
                        ethHandler.activate();
                    }
                    else if (capability.getName().equals(Capability.SHH)){

                        // Activate ShhHandler for this peer
                        ShhHandler shhHandler =
View Full Code Here

Examples of org.ethereum.net.shh.ShhHandler.activate()

                    else if (capability.getName().equals(Capability.SHH)){

                        // Activate ShhHandler for this peer
                        ShhHandler shhHandler =
                                (ShhHandler)ctx.pipeline().get(Capability.SHH);
                        shhHandler.activate();
                    }


          capInCommon.add(capability);
        }
View Full Code Here

Examples of org.freeplane.core.user.IUserAccount.activate()

 
  public String getSettingsPath() {
    IUserAccount user = UserAccountController.getController().getActiveUser();
    if(user == null) {
      user = new LocalUser("local");
      user.activate();
    }
    return URIUtils.getAbsoluteFile(WorkspaceController.getApplicationSettingsHome()).getPath() + File.separator + "users"+File.separator+user.getName();
  }

  private IProjectSelectionListener getProjectSelectionListener() {
View Full Code Here

Examples of org.gatein.wsrp.WSRPConsumer.activate()

            if (consumer == null)
            {
               throw new IllegalArgumentException(CONSUMER_WITH_ID + id + "' doesn't exist!");
            }

            consumer.activate();
            federatingPortletInvoker.registerInvoker(id, consumer);
            sessionEventBroadcaster.registerListener(getListenerIdFrom(id), consumer);
         }
         else
         {
View Full Code Here

Examples of org.geogrid.aist.credential.services.security.gss.CredentialContext.activate()

            context.setLabel("tsukuba-gama");
        } else {
            log.info("Activate credential");
        }
        deleteOldCredentialContext(user, dn);
        context.activate(credential);
        credentialManager.saveCredentialContext(context);
    }

    /*
     * find CredentialContext for user
View Full Code Here

Examples of org.globus.workspace.service.InstanceResource.activate()

                }
            }

            resource.setOpsEnabled(true);
            try {
                resource.activate();
                this.sweeper.scheduleSweeper();
            } catch (ManageException e) {
                logger.error("", e);
            }
        }
View Full Code Here

Examples of org.jacorb.notification.filter.FilterFactoryImpl.activate()

        });

        FilterFactoryImpl servant =
            (FilterFactoryImpl) _container.getComponentInstanceOfType(FilterFactoryImpl.class);

        return FilterFactoryHelper.narrow(servant.activate());
    }

    private FilterFactory lookupFilterFactory(PicoContainer container)
    {
        String _filterFactoryConf = getFilterFactoryLocation(container);
View Full Code Here

Examples of org.jacorb.notification.servant.AbstractAdmin.activate()

            IntHolder intHolder)
    {
        final AbstractAdmin _adminServant = new_for_consumers_servant(filterGroupOperator,
                intHolder);

        return ConsumerAdminHelper.narrow(_adminServant.activate());
    }

    public SupplierAdmin new_for_suppliers(InterFilterGroupOperator filterGroupOperator,
            IntHolder intHolder)
    {
View Full Code Here

Examples of org.jboss.arquillian.container.spi.context.ContainerContext.activate()

      ContainerContext containerContext = this.containerContext.get();
      ContainerControlEvent event = context.getEvent();

      try
      {
         containerContext.activate(event.getContainerName());
         context.proceed();
      }
      finally
      {
         containerContext.deactivate();
View Full Code Here

Examples of org.jboss.arquillian.container.spi.context.DeploymentContext.activate()

   {
      DeploymentContext deploymentContext = this.deploymentContext.get();
      try
      {
         DeploymentEvent event = context.getEvent();
         deploymentContext.activate(event.getDeployment());

         context.proceed();
      }
      finally
      {
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.