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

edu.stanford.protege.webprotege.watches.GetWatchesAction Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.common.ProjectId;
import edu.stanford.protege.webprotege.common.UserId;
import edu.stanford.protege.webprotege.dispatch.ProjectAction;
import org.semanticweb.owlapi.model.OWLEntity;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 20/03/2013 */ @JsonTypeName("webprotege.watches.GetWatches") public record GetWatchesAction(@JsonProperty("projectId") ProjectId projectId, @JsonProperty("userId") UserId userId, @JsonProperty("entity") OWLEntity entity) implements ProjectAction { public static final String CHANNEL = "webprotege.watches.GetWatches"; @Override public String getChannel() { return CHANNEL; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy