Ejemplo n.º 1
0
        public override void performOperationStep(DeploymentOperation operationContext)
        {
//JAVA TO C# CONVERTER WARNING: The original Java variable was marked 'final':
//ORIGINAL LINE: final org.camunda.bpm.container.impl.spi.PlatformServiceContainer serviceContainer = operationContext.getServiceContainer();
            PlatformServiceContainer serviceContainer = operationContext.ServiceContainer;

            serviceContainer.startService(serviceName, service);
        }
Ejemplo n.º 2
0
        public override void performOperationStep(DeploymentOperation operationContext)
        {
            PlatformServiceContainer serviceContainer = operationContext.ServiceContainer;

            BpmPlatformPlugins plugins = BpmPlatformPlugins.load(PluginsClassloader);

            JmxManagedBpmPlatformPlugins jmxManagedPlugins = new JmxManagedBpmPlatformPlugins(plugins);

            serviceContainer.startService(ServiceTypes.BPM_PLATFORM, RuntimeContainerDelegateImpl.SERVICE_NAME_PLATFORM_PLUGINS, jmxManagedPlugins);
        }