Skip to content

Commit

Permalink
edited ChangeEntityParentsResult to contain the classes that contain …
Browse files Browse the repository at this point in the history
…cycles
  • Loading branch information
soimugeo committed Jun 5, 2024
1 parent 03ba2bf commit f54763e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
package edu.stanford.protege.webprotege.bulkop;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.dispatch.Result;
import edu.stanford.protege.webprotege.entity.OWLEntityData;

import javax.annotation.Nonnull;
import java.util.Set;

/**
* Matthew Horridge
Expand All @@ -11,6 +16,6 @@


@JsonTypeName("webprotege.entities.ChangeEntityParents")
public record ChangeEntityParentsResult() implements Result {
public record ChangeEntityParentsResult(@JsonProperty("classesWithCycle") @Nonnull Set<OWLEntityData> classesWithCycle) implements Result {

}

0 comments on commit f54763e

Please sign in to comment.