changeset 94:869fb6bb3641

additional fields and default constructor for RelationFilter.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Wed, 13 Jun 2018 15:01:37 +0200
parents 7b95bd44caec
children 2c01cdc9b34a
files src/main/java/org/mpi/openmind/repository/services/utils/RelationFilter.java
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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() {
+	}
 }