
br.eti.clairton.migrator.rest.ConfigRest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of migrator-rest Show documentation
Show all versions of migrator-rest Show documentation
Migrator Rest for migrator
The newest version!
package br.eti.clairton.migrator.rest;
import javax.enterprise.inject.Vetoed;
import br.eti.clairton.migrator.Config;
@Vetoed
public class ConfigRest extends Config {
private final String tenant;
public ConfigRest(final String tenant, final String datasetPath, final String changelogPath) {
this(tenant, datasetPath, changelogPath, null);
}
public ConfigRest(final String tenant, final String datasetPath, final String changelogPath, final String schema) {
super(datasetPath, changelogPath, schema);
this.tenant = tenant;
}
public String getTenant() {
return tenant;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy