Skip to content

Commit

Permalink
[#29] Add rejected record phase
Browse files Browse the repository at this point in the history
  • Loading branch information
kostobog committed Dec 13, 2023
1 parent 3c137e8 commit 815f536
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/cz/cvut/kbss/study/model/RecordPhase.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ public enum RecordPhase {
@Individual(iri = Vocabulary.s_c_completed_record_phase)
completed(Vocabulary.s_c_completed_record_phase),
@Individual(iri = Vocabulary.s_c_published_record_phase)
published(Vocabulary.s_c_published_record_phase);
published(Vocabulary.s_c_published_record_phase),
@Individual(iri = Vocabulary.s_c_rejected_record_phase)
rejected(Vocabulary.s_c_rejected_record_phase);

private final String iri;

Expand Down
5 changes: 5 additions & 0 deletions src/main/resources/model.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,9 @@ rm:published-record-phase rdf:type owl:Class ;
rdfs:subClassOf rm:record-phase ;
rdfs:label "published record phase"@en .

### http://onto.fel.cvut.cz/ontologies/record-manager/rejected-record-phase
rm:rejected-record-phase rdf:type owl:Class ;
rdfs:subClassOf rm:record-phase ;
rdfs:label "rejected record phase"@en .

### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi

0 comments on commit 815f536

Please sign in to comment.