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

org.requirementsascode.systemreaction.AbstractContinues Maven / Gradle / Ivy

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

import java.util.Objects;
import java.util.function.Consumer;

public abstract class AbstractContinues implements Consumer {
	private String stepName;

	public AbstractContinues(String stepName) {
		Objects.requireNonNull(stepName);
		this.stepName = stepName;
	}

	public String getStepName() {
		return stepName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy