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

com.clickntap.tool.setup.SetupStep Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
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