# HG changeset patch # User Robert Casties # Date 1528894897 -7200 # Node ID 869fb6bb36417533c83715cea6f676c96f1b48e0 # Parent 7b95bd44caec79f7ab16d4fc43b882414f8ac856 additional fields and default constructor for RelationFilter. diff -r 7b95bd44caec -r 869fb6bb3641 src/main/java/org/mpi/openmind/repository/services/utils/RelationFilter.java --- a/src/main/java/org/mpi/openmind/repository/services/utils/RelationFilter.java Fri Jun 08 17:04:56 2018 +0200 +++ b/src/main/java/org/mpi/openmind/repository/services/utils/RelationFilter.java Wed Jun 13 15:01:37 2018 +0200 @@ -30,9 +30,17 @@ //means if the Attribute of the Target should be included in the searching. public Boolean tarAttInclude = false; + /** + * match if the relation is not present. + */ + public Boolean relationMissing = false; + public RelationFilter(String srcOwnValue, String relOwnValue, String tarOwnValue){ this.srcOwnValue = srcOwnValue; this.relOwnValue = relOwnValue; this.tarOwnValue = tarOwnValue; } + + public RelationFilter() { + } }