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

org.camunda.bpm.scenario.impl.delegate.AbstractDelegate Maven / Gradle / Ivy

package org.camunda.bpm.scenario.impl.delegate;

/**
 * @author Martin Schimak
 */
public abstract class AbstractDelegate {

  protected D delegate;

  public AbstractDelegate(D delegate) {
    this.delegate = delegate;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy