Package org.apache.solr.schema
Interface SchemaAware
- All Known Implementing Classes:
AbstractSubTypeFieldType,BBoxField,CoordinateFieldType,CurrencyFieldType,LatLonPointSpatialField,PointType
public interface SchemaAware
An interface that can be extended to provide a callback mechanism for informing an
IndexSchema instance of changes to it, dynamically performed at runtime.- Since:
- SOLR-1131
-
Method Summary
Modifier and TypeMethodDescriptionvoidinform(IndexSchema schema) Informs theIndexSchemaprovided by theschemaparameter of an event (e.g., a newFieldTypewas added, etc.
-
Method Details
-
inform
Informs theIndexSchemaprovided by theschemaparameter of an event (e.g., a newFieldTypewas added, etc.- Parameters:
schema- TheIndexSchemainstance that inform of the update to.- Since:
- SOLR-1131
-