argos/dmp-backend/core/src/main/java/eu/eudat/service/externalfetcher/config/UrlConfiguration.java

46 lines
961 B
Java

package eu.eudat.service.externalfetcher.config;
import eu.eudat.commons.enums.ExternalFetcherSourceType;
import eu.eudat.service.externalfetcher.config.entities.SourceBaseConfiguration;
public class UrlConfiguration implements SourceBaseConfiguration {
private String key;
private String label;
private Integer ordinal;
private ExternalFetcherSourceType type;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public Integer getOrdinal() {
return ordinal;
}
public void setOrdinal(Integer ordinal) {
this.ordinal = ordinal;
}
public ExternalFetcherSourceType getType() {
return type;
}
public void setType(ExternalFetcherSourceType type) {
this.type = type;
}
}