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

br.eti.clairton.migrator.rest.ConfigRest Maven / Gradle / Ivy

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