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

org.requirementsascode.flowposition.Anytime Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package org.requirementsascode.flowposition;

import java.io.Serializable;

import org.requirementsascode.FlowStep;
import org.requirementsascode.ModelRunner;

public class Anytime extends FlowPosition implements Serializable {
	private static final long serialVersionUID = 7724607380865304333L;

	public Anytime() {
		super(null);
	}

	@Override
	protected boolean isRunnerAtRightPositionFor(FlowStep step, ModelRunner modelRunner) {
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy