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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.common.ChangeRequestId;
import edu.stanford.protege.webprotege.common.ContentChangeRequest;
import edu.stanford.protege.webprotege.common.ProjectId;
import edu.stanford.protege.webprotege.dispatch.ProjectAction;
import edu.stanford.protege.webprotege.frame.PropertyAnnotationValue;
import org.semanticweb.owlapi.model.OWLOntologyID;

import java.util.Set;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 01/08/2013 */ @JsonTypeName("webprotege.ontologies.SetOntologyAnnotations") public record SetOntologyAnnotationsAction(@JsonProperty("changeRequestId") ChangeRequestId changeRequestId, @JsonProperty("projectId") ProjectId projectId, @JsonProperty("ontologyId") OWLOntologyID ontologyID, @JsonProperty("fromAnnotations") Set fromAnnotations, @JsonProperty("toAnnotations") Set toAnnotations) implements ProjectAction, ContentChangeRequest { public static final String CHANNEL = "webprotege.ontologies.SetOntologyAnnotations"; @Override public String getChannel() { return CHANNEL; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy