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

org.activiti.api.runtime.event.impl.BPMNActivityCompletedEventImpl Maven / Gradle / Ivy

The newest version!
package org.activiti.api.runtime.event.impl;

import org.activiti.api.process.model.BPMNActivity;
import org.activiti.api.process.model.events.BPMNActivityCompletedEvent;

public class BPMNActivityCompletedEventImpl extends BPMNActivityEventImpl implements BPMNActivityCompletedEvent {

    public BPMNActivityCompletedEventImpl() {
    }

    public BPMNActivityCompletedEventImpl(BPMNActivity entity) {
        super(entity);
    }

    @Override
    public ActivityEvents getEventType() {
        return ActivityEvents.ACTIVITY_COMPLETED;
    }

    @Override
    public String toString() {
        return "BPMNActivityCompletedEventImpl{" + super.toString() + "}";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy