
org.activiti.api.runtime.event.impl.BPMNTimerCancelledEventImpl 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.BPMNTimerCancelledEvent;
import org.activiti.api.process.model.events.BPMNTimerEvent;
public class BPMNTimerCancelledEventImpl extends RuntimeEventImpl implements BPMNTimerCancelledEvent {
public BPMNTimerCancelledEventImpl() {
}
public BPMNTimerCancelledEventImpl(BPMNTimer entity) {
super(entity);
}
@Override
public TimerEvents getEventType() {
return BPMNTimerEvent.TimerEvents.TIMER_CANCELLED;
}
@Override
public String toString() {
return "BPMNTimerCancelledEventImpl{" + super.toString() + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy