Examples of StrongUuidGenerator


Examples of org.camunda.bpm.engine.impl.persistence.StrongUuidGenerator

    ProcessEngineConfigurationImpl configuration = createInstance(configurationClass);

    // set UUid generator
    // TODO: move this to configuration and use as default?
    ProcessEngineConfigurationImpl configurationImpl = configuration;
    configurationImpl.setIdGenerator(new StrongUuidGenerator());

    configureCustomRetryStrategy(configurationImpl);

    // set configuration values
    String name = processEngineXml.getName();
View Full Code Here

Examples of org.camunda.bpm.engine.impl.persistence.StrongUuidGenerator

    setFailedJobCommandFactory(new FoxFailedJobCommandFactory());
  }

  protected void initIdGenerator() {
    if (idGenerator == null) {
      idGenerator = new StrongUuidGenerator();
    }
  }
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.