Package org.apache.camel.model

Examples of org.apache.camel.model.ProcessorDefinition.idOrCreate()


  public String getNewID() {
    String answer = null;
    if (useCamelIds) {
      ProcessorDefinition definition = createCamelDefinition();
      if (definition != null) {
        answer = definition.idOrCreate(getNodeIdFactory());
      }
    }
    if (answer == null) {
      answer = UUID.randomUUID().toString();
    }
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.