Class AbstractAsFacetConfiguration
- java.lang.Object
-
- de.hybris.platform.adaptivesearch.data.AbstractAsConfiguration
-
- de.hybris.platform.adaptivesearch.data.AbstractAsItemConfiguration
-
- de.hybris.platform.adaptivesearch.data.AbstractAsFacetConfiguration
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AsExcludedFacet
,AsFacet
,AsPromotedFacet
public abstract class AbstractAsFacetConfiguration extends AbstractAsItemConfiguration
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractAsFacetConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AsExcludedFacetValue>
getExcludedValues()
AsFacetType
getFacetType()
java.lang.String
getIndexProperty()
java.lang.Integer
getPriority()
java.util.List<AsPromotedFacetValue>
getPromotedValues()
java.lang.String
getTopValuesProvider()
java.lang.String
getValuesDisplayNameProvider()
java.lang.String
getValuesSortProvider()
void
setExcludedValues(java.util.List<AsExcludedFacetValue> excludedValues)
void
setFacetType(AsFacetType facetType)
void
setIndexProperty(java.lang.String indexProperty)
void
setPriority(java.lang.Integer priority)
void
setPromotedValues(java.util.List<AsPromotedFacetValue> promotedValues)
void
setTopValuesProvider(java.lang.String topValuesProvider)
void
setValuesDisplayNameProvider(java.lang.String valuesDisplayNameProvider)
void
setValuesSortProvider(java.lang.String valuesSortProvider)
-
Methods inherited from class de.hybris.platform.adaptivesearch.data.AbstractAsItemConfiguration
getSearchConfigurationUid, getSearchProfileCode, setSearchConfigurationUid, setSearchProfileCode
-
Methods inherited from class de.hybris.platform.adaptivesearch.data.AbstractAsConfiguration
getCatalogVersion, getUid, setCatalogVersion, setUid
-
-
-
-
Method Detail
-
setIndexProperty
public void setIndexProperty(java.lang.String indexProperty)
-
getIndexProperty
public java.lang.String getIndexProperty()
-
setPriority
public void setPriority(java.lang.Integer priority)
-
getPriority
public java.lang.Integer getPriority()
-
setFacetType
public void setFacetType(AsFacetType facetType)
-
getFacetType
public AsFacetType getFacetType()
-
setValuesSortProvider
public void setValuesSortProvider(java.lang.String valuesSortProvider)
-
getValuesSortProvider
public java.lang.String getValuesSortProvider()
-
setValuesDisplayNameProvider
public void setValuesDisplayNameProvider(java.lang.String valuesDisplayNameProvider)
-
getValuesDisplayNameProvider
public java.lang.String getValuesDisplayNameProvider()
-
setTopValuesProvider
public void setTopValuesProvider(java.lang.String topValuesProvider)
-
getTopValuesProvider
public java.lang.String getTopValuesProvider()
-
setPromotedValues
public void setPromotedValues(java.util.List<AsPromotedFacetValue> promotedValues)
-
getPromotedValues
public java.util.List<AsPromotedFacetValue> getPromotedValues()
-
setExcludedValues
public void setExcludedValues(java.util.List<AsExcludedFacetValue> excludedValues)
-
getExcludedValues
public java.util.List<AsExcludedFacetValue> getExcludedValues()
-
-