Package org.ametys.cms.search.systemprop
Class FulltextSystemProperty
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.cms.search.systemprop.AbstractSystemProperty
-
- org.ametys.cms.search.systemprop.FulltextSystemProperty
-
- All Implemented Interfaces:
SystemProperty,LogEnabled,PluginAware,Configurable,Serviceable
public class FulltextSystemProperty extends AbstractSystemProperty
SystemPropertywhich represents the full textual content of a Content.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.model.SystemProperty
SystemProperty.EnumeratorDefinition
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean_stemmedTrue for a stemmed full-text search, false otherwise.-
Fields inherited from class org.ametys.cms.search.systemprop.AbstractSystemProperty
_description, _i18nUtils, _id, _label, _pluginName, _resolver, _userHelper, _userManager
-
-
Constructor Summary
Constructors Constructor Description FulltextSystemProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Configuration configuration)QuerygetQuery(Object value, Query.Operator operator, String language, Map<String,Object> contextualParameters)Get theQueryassociated to the given value.SearchFieldgetSearchField()Get theSearchFieldrepresenting this system property.MetadataTypegetType()Get the property type.ObjectgetValue(Content content)Get the typed raw value for this field in the given result content.booleanisDisplayable()Get if the property can be displayed (i.e.booleanisMultiple()Get the multiple status of the property.booleanisSortable()Get if the property can be sorted on.-
Methods inherited from class org.ametys.cms.search.systemprop.AbstractSystemProperty
_indexBooleanValue, _indexBooleanValues, _indexDateValue, _indexDateValues, _indexDoubleValue, _indexDoubleValues, _indexGeocodeValue, _indexLongValue, _indexLongValues, _indexStringValue, _indexStringValues, _indexUserValue, _indexUserValues, _parseI18nizableText, getDescription, getId, getLabel, getSchemaDefinitions, getSortValue, index, parseBoolean, parseDate, parseDouble, parseLong, parseString, parseStringArray, parseUserArray, saxValue, service, setPluginInfo
-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.ametys.cms.search.model.SystemProperty
getColumnWidth, getContentTypeId, getConverter, getEnumeratorDefinition, getJsonValue, getRenderer, getWidget, getWidgetParameters, isFacetable, isSearchable
-
-
-
-
Field Detail
-
_stemmed
protected boolean _stemmed
True for a stemmed full-text search, false otherwise.
-
-
Constructor Detail
-
FulltextSystemProperty
public FulltextSystemProperty()
-
-
Method Detail
-
configure
public void configure(Configuration configuration) throws ConfigurationException
- Specified by:
configurein interfaceConfigurable- Overrides:
configurein classAbstractSystemProperty- Throws:
ConfigurationException
-
getType
public MetadataType getType()
Description copied from interface:SystemPropertyGet the property type.- Returns:
- the property type.
-
isMultiple
public boolean isMultiple()
Description copied from interface:SystemPropertyGet the multiple status of the property.- Returns:
trueif the property can have multiple values,falseotherwise.
-
isDisplayable
public boolean isDisplayable()
Description copied from interface:SystemPropertyGet if the property can be displayed (i.e. used in a ResultField).- Returns:
trueif the property can be displayed,falseotherwise.
-
isSortable
public boolean isSortable()
Description copied from interface:SystemPropertyGet if the property can be sorted on.- Returns:
trueif the property can be sorted on,falseotherwise.
-
getQuery
public Query getQuery(Object value, Query.Operator operator, String language, Map<String,Object> contextualParameters)
Description copied from interface:SystemPropertyGet theQueryassociated to the given value.- Parameters:
value- the user-submitted value for this property.operator- In advanced search mode, the operator chosen by the user.nullto use the criterion-defined operator (simple search mode).language- The current search language.contextualParameters- the search contextual parameters.- Returns:
- The
Queryassociated to the given value.
-
getSearchField
public SearchField getSearchField()
Description copied from interface:SystemPropertyGet theSearchFieldrepresenting this system property.- Returns:
- The search field representing this system property.
-
getValue
public Object getValue(Content content)
Description copied from interface:SystemPropertyGet the typed raw value for this field in the given result content. The returned object depends on this field's type:
-MetadataType.STRINGmust return String or String[] if multiple
-MetadataType.DATEorMetadataType.DATETIMEmust return Date or Date[] if multiple
-MetadataType.LONGmust return Long or Long[] if multiple
-MetadataType.DOUBLEmust return Double or Double[] if multiple
-MetadataType.CONTENTmust return String or String[] if multiple
-MetadataType.GEOCODEmust return Map<String, Double>
-MetadataType.USERmust return UserIdentity or UserIdentity[] if multiple
-MetadataType.MULTILINGUAL_STRINGmust returnMultilingualString
Others types are not supported.- Parameters:
content- The result content- Returns:
- The typed value, cast to the appropriate object according its type.
-
-