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

edu.stanford.protege.webprotege.ontology.ProcessOntologySourcesRequest Maven / Gradle / Ivy

There is a newer version: 2.0.2-WHO
Show newest version
package edu.stanford.protege.webprotege.ontology;

import edu.stanford.protege.webprotege.common.BlobLocation;
import edu.stanford.protege.webprotege.common.Request;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2021-09-28
 *
 * @param sources The locations of the ontology sources.  The blob should either be an ontology document
 *                file or it can be a zip file of ontology document files.
 */
public record ProcessOntologySourcesRequest(BlobLocation sources) implements Request {

    public static final String CHANNEL = "ontologies.ProcessOntologySources";

    @Override
    public String getChannel() {
        return CHANNEL;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy