package io.gitlab.jfronny.inceptum.launcher.system.setup; import java.io.IOException; import java.util.concurrent.atomic.AtomicBoolean; public interface Step { void execute(SetupStepInfo info, AtomicBoolean stopThread) throws IOException; }