Package org.slf4j.spi
Interface MarkerFactoryBinder
-
@Deprecated(since="2022-01-27") public interface MarkerFactoryBinder
Deprecated.This internal log4j API is not supported by AEM as a Cloud Service.An internal interface which helps the staticMarkerFactory
class bind with the appropriateIMarkerFactory
instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description IMarkerFactory
getMarkerFactory()
Deprecated.Return the instance ofIMarkerFactory
thatMarkerFactory
class should bind to.java.lang.String
getMarkerFactoryClassStr()
Deprecated.The String form of theIMarkerFactory
object that thisMarkerFactoryBinder
instance is intended to return.
-
-
-
Method Detail
-
getMarkerFactory
IMarkerFactory getMarkerFactory()
Deprecated.Return the instance ofIMarkerFactory
thatMarkerFactory
class should bind to.- Returns:
- the instance of
IMarkerFactory
thatMarkerFactory
class should bind to.
-
getMarkerFactoryClassStr
java.lang.String getMarkerFactoryClassStr()
Deprecated.The String form of theIMarkerFactory
object that thisMarkerFactoryBinder
instance is intended to return.This method allows the developer to interrogate this binder's intention which may be different from the
IMarkerFactory
instance it is able to return. Such a discrepancy should only occur in case of errors.- Returns:
- the class name of the intended
IMarkerFactory
instance
-
-