All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.camel.spring.CamelServiceImpl Maven / Gradle / Ivy

The newest version!
package org.camunda.bpm.camel.spring;

import org.apache.camel.CamelContext;
import org.camunda.bpm.camel.common.CamelServiceCommonImpl;
import org.camunda.bpm.engine.ProcessEngine;
import org.springframework.beans.factory.annotation.Required;

public class CamelServiceImpl extends CamelServiceCommonImpl {

  @Required
  public void setProcessEngine(ProcessEngine processEngine) {
    this.processEngine = processEngine;
  }

  @Required
  public void setCamelContext(CamelContext camelContext) {
    this.camelContext = camelContext;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy