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

edu.stanford.protege.webprotege.frame.UpdateAnnotationPropertyFrameAction Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.frame;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.common.*;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 23/04/2013 */ @JsonTypeName("webprotege.frames.UpdateAnnotationPropertyFrame") public record UpdateAnnotationPropertyFrameAction(@JsonProperty("changeRequestId") ChangeRequestId changeRequestId, @JsonProperty("projectId") ProjectId projectId, @JsonProperty("from") PlainAnnotationPropertyFrame from, @JsonProperty("to") PlainAnnotationPropertyFrame to) implements ProjectRequest, UpdateFrame, ContentChangeRequest { public static final String CHANNEL = "webprotege.frames.UpdateAnnotationPropertyFrame"; @Override public String getChannel() { return CHANNEL; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy