com.clickntap.tool.setup.AbstractStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
package com.clickntap.tool.setup;
import com.clickntap.hub.BOManager;
import org.springframework.jdbc.core.JdbcTemplate;
abstract class AbstractStep implements SetupStep {
private JdbcTemplate db;
private BOManager app;
private String schema;
public void init(JdbcTemplate db, BOManager app, String schema) throws Exception {
this.db = db;
this.app = app;
this.schema = schema;
}
public JdbcTemplate getDb() {
return db;
}
public BOManager getApp() {
return app;
}
public String getSchema() {
return schema;
}
}