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

edu.stanford.protege.webprotege.entity.SetEntityDeprecatedRequest Maven / Gradle / Ivy

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

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.common.ProjectRequest;
import org.semanticweb.owlapi.model.IRI;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2021-09-01
 */
@JsonTypeName("webprotege.entities.SetEntityDeprecated")
public record SetEntityDeprecatedRequest(@JsonProperty(value = "changeRequestId", required = true) ChangeRequestId changeRequestId,
                                         @JsonProperty(value = "projectId", required = true) ProjectId projectId,
                                         @JsonProperty(value = "entityIri", required = true) IRI entityIri) implements ProjectRequest, ContentChangeRequest {

    public static final String CHANNEL = "webprotege.entities.SetEntityDeprecated";

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy