Interface SpringBeanDecoratorContext


public interface SpringBeanDecoratorContext
Spring Bean decorator context.
Author:
Daniel Sagenschneider
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addDependency(String qualifier, Class<?> type)
    Adds a further dependency for the Spring Bean.
    Obtains the name of the Spring Bean.
    Obtains the type of the Spring Bean.
  • Method Details

    • getBeanName

      String getBeanName()
      Obtains the name of the Spring Bean.
      Returns:
      Name of the Spring Bean.
    • getBeanType

      Class<?> getBeanType()
      Obtains the type of the Spring Bean.
      Returns:
      Type of the Spring Bean.
    • addDependency

      void addDependency(String qualifier, Class<?> type)
      Adds a further dependency for the Spring Bean.
      Parameters:
      qualifier - Qualifier. May be null.
      type - Type for dependency.