Skip to content

Commit

Permalink
[Enhancement #283] Fix invalid iri in @owlclass annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
luxbe committed Nov 22, 2024
1 parent 533b412 commit 9fcd05f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.lang.reflect.Field;
import java.net.URI;

@OWLClass(iri = Vocabulary.c_OwlClassU)
@OWLClass(iri = Vocabulary.c_OwlClassV)
public class OWLClassV implements Serializable {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class Vocabulary {
public static final String c_OwlClassS = CLASS_BASE + "OWLClassS";
public static final String c_OwlClassT = CLASS_BASE + "OWLClassT";
public static final String c_OwlClassU = CLASS_BASE + "OWLClassU";
public static final String c_OwlClassV = CLASS_BASE + "OWLClassV";
public static final String c_OwlClassW = CLASS_BASE + "OWLClassW";
public static final String c_OwlClassWithQueryAttr = CLASS_BASE + "OWLClassWithQueryAttr";
public static final String c_Person = CLASS_BASE + "Person";
Expand Down

0 comments on commit 9fcd05f

Please sign in to comment.