Class BeanDescriptionFactory
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.core.joran.util.beans.BeanDescriptionFactory
-
- All Implemented Interfaces:
ContextAware
@Deprecated(since="2022-01-27") public class BeanDescriptionFactory extends ContextAwareBase
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.Encapsulates creation ofBeanDescription
instances. This factory is kind of a lightweight Introspector as described in the Java Beans API specification. The given class is only analyzed for its public getters, setters and adders methods. Implementations of the BeanInfo interface are not taken into account for analysis. Therefore this class is only partially compatible with the Java Beans API specification.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BeanDescription
create(java.lang.Class<?> clazz)
Deprecated.-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getStatusManager, setContext
-
-
-
-
Method Detail
-
create
public BeanDescription create(java.lang.Class<?> clazz)
Deprecated.- Parameters:
clazz
- to create aBeanDescription
for.- Returns:
- a
BeanDescription
for the given class.
-
-