argos/dmp-backend/core/src/main/java/eu/eudat/model/tenantconfiguration/FileTransformerTenantConfig...

21 lines
521 B
Java
Raw Normal View History

2024-04-19 14:34:07 +02:00
package eu.eudat.model.tenantconfiguration;
import eu.eudat.commons.types.filetransformer.FileTransformerSourceEntity;
2024-04-19 17:39:51 +02:00
import eu.eudat.model.filetransformer.FileTransformerSource;
2024-04-19 14:34:07 +02:00
import java.util.List;
public class FileTransformerTenantConfiguration {
2024-04-19 17:39:51 +02:00
private List<FileTransformerSource> sources;
2024-04-19 14:34:07 +02:00
public static final String _sources = "sources";
2024-04-19 17:39:51 +02:00
public List<FileTransformerSource> getSources() {
2024-04-19 14:34:07 +02:00
return sources;
}
2024-04-19 17:39:51 +02:00
public void setSources(List<FileTransformerSource> sources) {
2024-04-19 14:34:07 +02:00
this.sources = sources;
}
}