Class ApplicationWarningsBase

java.lang.Object
org.frankframework.configuration.ApplicationWarningsBase
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.InitializingBean, org.springframework.context.ApplicationContextAware
Direct Known Subclasses:
ApplicationWarnings, ConfigurationWarnings

public abstract class ApplicationWarningsBase extends Object implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
  • Constructor Details

    • ApplicationWarningsBase

      public ApplicationWarningsBase()
  • Method Details

    • afterPropertiesSet

      public void afterPropertiesSet()
      Specified by:
      afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
    • addWarnings

      protected void addWarnings(List<String> warnings)
    • destroy

      public void destroy() throws Exception
      Specified by:
      destroy in interface org.springframework.beans.factory.DisposableBean
      Throws:
      Exception
    • size

      public int size()
    • get

      public String get(int i)
    • isEmpty

      public boolean isEmpty()
    • setApplicationContext

      public final void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
      Specified by:
      setApplicationContext in interface org.springframework.context.ApplicationContextAware
    • getApplicationContext

      protected final org.springframework.context.ApplicationContext getApplicationContext()
    • getAppConstants

      protected final AppConstants getAppConstants()
    • getWarnings

      public final List<String> getWarnings()
    • add

      public void add(Object source, org.apache.logging.log4j.Logger log, String message)
      Add a warning with Object Class + Name prefix
    • add

      public void add(Object source, org.apache.logging.log4j.Logger log, String message, Throwable t)
      Add a warning with Object Class + Name prefix and log the exception stack
    • doAdd

      protected void doAdd(Object source, org.apache.logging.log4j.Logger log, String message, Throwable t)
    • doAdd

      protected void doAdd(Object source, org.apache.logging.log4j.Logger log, String message, String hint)
    • doAdd

      protected void doAdd(org.apache.logging.log4j.Logger log, String message, Throwable t)