Class BeanDescription

java.lang.Object
ch.qos.logback.core.joran.util.beans.BeanDescription

@Deprecated(since="2022-01-27") public class BeanDescription extends Object
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
Lightweight pendant to the java.beans.BeanInfo class. An instance of this class encapsulates the properties of a certain class. The properties are the public setters and getters. In addition the 'add-er'-methods are included, which are the public methods which start with the prefix 'add'.
  • Method Details

    • getClazz

      public Class<?> getClazz()
      Deprecated.
    • getPropertyNameToGetter

      public Map<String,Method> getPropertyNameToGetter()
      Deprecated.
    • getPropertyNameToSetter

      public Map<String,Method> getPropertyNameToSetter()
      Deprecated.
    • getGetter

      public Method getGetter(String propertyName)
      Deprecated.
    • getSetter

      public Method getSetter(String propertyName)
      Deprecated.
    • getPropertyNameToAdder

      public Map<String,Method> getPropertyNameToAdder()
      Deprecated.
    • getAdder

      public Method getAdder(String propertyName)
      Deprecated.