com.clickntap.tool.setup.SetupStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
package com.clickntap.tool.setup;
import org.springframework.jdbc.core.JdbcTemplate;
import com.clickntap.hub.BOManager;
public interface SetupStep {
public String getDescription() throws Exception;
public boolean isSkipable() throws Exception;
public void init(JdbcTemplate db, BOManager app, String schema) throws Exception;
public void setup() throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy