
org.activiti.api.runtime.event.impl.MessageSubscriptionCancelledEventImpl Maven / Gradle / Ivy
The newest version!
package org.activiti.api.runtime.event.impl;
import org.activiti.api.process.model.MessageSubscription;
import org.activiti.api.process.model.events.MessageSubscriptionCancelledEvent;
import org.activiti.api.process.model.events.MessageSubscriptionEvent;
public class MessageSubscriptionCancelledEventImpl extends RuntimeEventImpl
implements MessageSubscriptionCancelledEvent {
public MessageSubscriptionCancelledEventImpl() {
}
public MessageSubscriptionCancelledEventImpl(MessageSubscription entity) {
super(entity);
setProcessInstanceId(entity.getProcessInstanceId());
setProcessDefinitionId(entity.getProcessDefinitionId());
}
@Override
public String toString() {
return "MessageSubscriptionCancelledEventImpl {" + super.toString() + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy