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