mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Search-340, added tags and excludeFilter
This commit is contained in:
@@ -68,7 +68,9 @@ public class RangeParameters
|
|||||||
@JsonProperty("facet.range.gap") String gap,
|
@JsonProperty("facet.range.gap") String gap,
|
||||||
@JsonProperty("facet.range.hardend") boolean hardend,
|
@JsonProperty("facet.range.hardend") boolean hardend,
|
||||||
@JsonProperty("facet.range.other")String other,
|
@JsonProperty("facet.range.other")String other,
|
||||||
@JsonProperty("facet.range.include")String include)
|
@JsonProperty("facet.range.include")String include,
|
||||||
|
@JsonProperty("tags")List<String> tags,
|
||||||
|
@JsonProperty("excludeFilters")List<String> excludeFilters)
|
||||||
{
|
{
|
||||||
super();
|
super();
|
||||||
this.field = field;
|
this.field = field;
|
||||||
@@ -78,6 +80,8 @@ public class RangeParameters
|
|||||||
this.hardend = hardend;
|
this.hardend = hardend;
|
||||||
this.other = other;
|
this.other = other;
|
||||||
this.include = include;
|
this.include = include;
|
||||||
|
this.tags = tags;
|
||||||
|
this.excludeFilters = excludeFilters;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getField()
|
public String getField()
|
||||||
|
Reference in New Issue
Block a user