![JAR search and dependency download from the Maven repository](/logo.png)
tfw.tsm.ecd.RollbackECD Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tfw Show documentation
Show all versions of tfw Show documentation
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 extends Object> constraint) {
super(eventChannelName, constraint);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy