Package org.apache.solr.schema
Interface SchemaAware
-
- All Known Implementing Classes:
AbstractSubTypeFieldType
,BBoxField
,CoordinateFieldType
,CurrencyField
,CurrencyFieldType
,ExternalFileField
,LatLonPointSpatialField
,PointType
public interface SchemaAware
An interface that can be extended to provide a callback mechanism for informing anIndexSchema
instance of changes to it, dynamically performed at runtime.- Since:
- SOLR-1131
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
inform(IndexSchema schema)
Informs theIndexSchema
provided by theschema
parameter of an event (e.g., a newFieldType
was added, etc.
-
-
-
Method Detail
-
inform
void inform(IndexSchema schema)
Informs theIndexSchema
provided by theschema
parameter of an event (e.g., a newFieldType
was added, etc.- Parameters:
schema
- TheIndexSchema
instance that inform of the update to.- Since:
- SOLR-1131
-
-