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

tfw.tsm.ecd.RollbackECD Maven / Gradle / Ivy

Go to download

The FrameWork for building highly scalable and maintainable applications

The newest version!
package tfw.tsm.ecd;

import tfw.value.ValueConstraint;

/**
 * The base class for all event channels that are used to set state as part of a
 * transaction rollback. Note that the state is changed in a follow-on
 * transaction.
 */
public abstract class RollbackECD extends ObjectECD {
    /**
     * Creates a rollback event channel description.
     *
     * @param eventChannelName
     *            the name of the event channel.
     * @param constraint
     *            the value constraint for the evnet channel.
     */
    protected RollbackECD(String eventChannelName, ValueConstraint constraint) {
        super(eventChannelName, constraint);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy