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

edu.stanford.protege.webprotege.dispatch.actions.DeleteAxiomsAction Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.dispatch.actions;

import edu.stanford.protege.webprotege.common.ChangeRequestId;
import edu.stanford.protege.webprotege.common.ContentChangeRequest;
import edu.stanford.protege.webprotege.dispatch.ProjectAction;
import edu.stanford.protege.webprotege.common.ProjectId;
import org.semanticweb.owlapi.model.OWLAxiom;

import javax.annotation.Nonnull;
import java.util.stream.Stream;

import static com.google.common.base.Preconditions.checkNotNull;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 20 Apr 2018
 */
public class DeleteAxiomsAction implements ProjectAction, ContentChangeRequest {

    public static final String CHANNEL = "webprotege.axiomsSource.DeleteAxioms";

    @Nonnull
    private final ChangeRequestId changeRequestId;

    @Nonnull
    private final ProjectId projectId;

    @Nonnull
    private final Stream axioms;

    @Nonnull
    private final String commitMessage;


    public DeleteAxiomsAction(@Nonnull ChangeRequestId changeRequestId,
                              @Nonnull ProjectId projectId,
                              @Nonnull Stream axioms,
                              @Nonnull String commitMessage) {
        this.projectId = checkNotNull(projectId);
        this.axioms = checkNotNull(axioms);
        this.commitMessage = checkNotNull(commitMessage);
        this.changeRequestId = checkNotNull(changeRequestId);
    }

    @Override
    public ChangeRequestId changeRequestId() {
        return changeRequestId;
    }

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

    @Nonnull
    public ProjectId projectId() {
        return projectId;
    }

    @Nonnull
    public Stream getAxioms() {
        return axioms;
    }

    @Nonnull
    public String getCommitMessage() {
        return commitMessage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy