
org.activiti.api.runtime.event.impl.BPMNTimerFailedEventImpl Maven / Gradle / Ivy
The newest version!
package org.activiti.api.runtime.event.impl;
import org.activiti.api.process.model.BPMNTimer;
import org.activiti.api.process.model.events.BPMNTimerEvent;
import org.activiti.api.process.model.events.BPMNTimerFailedEvent;
public class BPMNTimerFailedEventImpl extends RuntimeEventImpl implements BPMNTimerFailedEvent {
public BPMNTimerFailedEventImpl() {
}
public BPMNTimerFailedEventImpl(BPMNTimer entity) {
super(entity);
}
@Override
public TimerEvents getEventType() {
return BPMNTimerEvent.TimerEvents.TIMER_FAILED;
}
@Override
public String toString() {
return "BPMNTimerFailedEventImpl{" + super.toString() + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy