Class LoggingDeprecationHandler
java.lang.Object
org.elasticsearch.common.xcontent.LoggingDeprecationHandler
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.DeprecationHandler
public class LoggingDeprecationHandler
extends Object
implements org.elasticsearch.common.xcontent.DeprecationHandler
Logs deprecations to the
DeprecationLogger.
This is core's primary implementation of DeprecationHandler and
should absolutely be used everywhere where it parses
requests. It is much less appropriate when parsing responses from external
sources because it will report deprecated fields back to the user as
though the user sent them.
-
Field Summary
FieldsFields inherited from interface org.elasticsearch.common.xcontent.DeprecationHandler
IGNORE_DEPRECATIONS, THROW_UNSUPPORTED_OPERATION -
Method Summary
Modifier and TypeMethodDescriptionvoidusedDeprecatedField(String parserName, Supplier<org.elasticsearch.common.xcontent.XContentLocation> location, String usedName)voidusedDeprecatedField(String parserName, Supplier<org.elasticsearch.common.xcontent.XContentLocation> location, String usedName, String replacedWith)voidusedDeprecatedName(String parserName, Supplier<org.elasticsearch.common.xcontent.XContentLocation> location, String usedName, String modernName)
-
Field Details
-
INSTANCE
-
-
Method Details
-
usedDeprecatedName
public void usedDeprecatedName(String parserName, Supplier<org.elasticsearch.common.xcontent.XContentLocation> location, String usedName, String modernName)- Specified by:
usedDeprecatedNamein interfaceorg.elasticsearch.common.xcontent.DeprecationHandler
-
usedDeprecatedField
public void usedDeprecatedField(String parserName, Supplier<org.elasticsearch.common.xcontent.XContentLocation> location, String usedName, String replacedWith)- Specified by:
usedDeprecatedFieldin interfaceorg.elasticsearch.common.xcontent.DeprecationHandler
-
usedDeprecatedField
public void usedDeprecatedField(String parserName, Supplier<org.elasticsearch.common.xcontent.XContentLocation> location, String usedName)- Specified by:
usedDeprecatedFieldin interfaceorg.elasticsearch.common.xcontent.DeprecationHandler
-