Class PinIndexingField
- java.lang.Object
-
- org.ametys.plugins.workspaces.wall.PinIndexingField
-
- All Implemented Interfaces:
CustomIndexingField,IndexingField,PluginAware,Configurable
public class PinIndexingField extends Object implements CustomIndexingField, Configurable, PluginAware
CustomIndexingFieldfor pinned wall content
-
-
Field Summary
Fields Modifier and Type Field Description private I18nizableText_descriptionprivate I18nizableText_labelprivate String_pluginName
-
Constructor Summary
Constructors Constructor Description PinIndexingField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Configuration configuration)I18nizableTextgetDescription()Get the field description.I18nizableTextgetLabel()Get the field label.StringgetName()Get the field's nameMetadataTypegetType()Get the typeObject[]getValues(Content content)Get a content's values to index.voidsetPluginInfo(String pluginName, String featureName, String id)Sets the plugin info relative to the current component.
Note : The feature name may be null if the targeted component in declared at plugin level.
-
-
-
Field Detail
-
_pluginName
private String _pluginName
-
_label
private I18nizableText _label
-
_description
private I18nizableText _description
-
-
Constructor Detail
-
PinIndexingField
public PinIndexingField()
-
-
Method Detail
-
setPluginInfo
public void setPluginInfo(String pluginName, String featureName, String id)
Description copied from interface:PluginAwareSets the plugin info relative to the current component.
Note : The feature name may be null if the targeted component in declared at plugin level.- Specified by:
setPluginInfoin interfacePluginAware- Parameters:
pluginName- Unique identifier for the plugin hosting the extensionfeatureName- Unique feature identifier (unique for a given pluginName)id- Unique identifier of this component
-
configure
public void configure(Configuration configuration) throws ConfigurationException
- Specified by:
configurein interfaceConfigurable- Throws:
ConfigurationException
-
getName
public String getName()
Description copied from interface:IndexingFieldGet the field's name- Specified by:
getNamein interfaceIndexingField- Returns:
- the field's name
-
getLabel
public I18nizableText getLabel()
Description copied from interface:IndexingFieldGet the field label.- Specified by:
getLabelin interfaceIndexingField- Returns:
- the field label.
-
getDescription
public I18nizableText getDescription()
Description copied from interface:IndexingFieldGet the field description.- Specified by:
getDescriptionin interfaceIndexingField- Returns:
- the field description.
-
getType
public MetadataType getType()
Description copied from interface:IndexingFieldGet the type- Specified by:
getTypein interfaceIndexingField- Returns:
- the type
-
getValues
public Object[] getValues(Content content)
Description copied from interface:CustomIndexingFieldGet a content's values to index.- Specified by:
getValuesin interfaceCustomIndexingField- Parameters:
content- The content being indexed.- Returns:
- the values to index.
-
-