Package org.ametys.web.search.query
Class SharedQuery
- java.lang.Object
-
- org.ametys.web.search.query.SharedQuery
-
- All Implemented Interfaces:
Query
public class SharedQuery extends Object implements Query
Represents aQuerytesting the shared status of a content.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Constructor Summary
Constructors Constructor Description SharedQuery()Create a SharedQuery.SharedQuery(boolean shared)Create a SharedQuery.SharedQuery(boolean shared, Query.Operator operator)Create a SharedQuery.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbuild()Build the solr query string representing the Query object.booleanequals(Object obj)inthashCode()
-
-
-
Constructor Detail
-
SharedQuery
public SharedQuery()
Create a SharedQuery.
-
SharedQuery
public SharedQuery(boolean shared)
Create a SharedQuery.- Parameters:
shared-trueto get only shared contents,falseto get only non-shared contents.
-
SharedQuery
public SharedQuery(boolean shared, Query.Operator operator)
Create a SharedQuery.- Parameters:
shared-trueto get only shared contents,falseto get only non-shared contents.operator- the operator.
-
-
Method Detail
-
build
public String build() throws QuerySyntaxException
Description copied from interface:QueryBuild the solr query string representing the Query object.- Specified by:
buildin interfaceQuery- Returns:
- the solr query string representing the Query object.
- Throws:
QuerySyntaxException- if the query can't be built because of a syntax error.
-
-