Class DigesterRule

java.lang.Object
org.frankframework.configuration.digester.DigesterRule

public class DigesterRule extends Object
Java representation of a digester rule specified in the digester-rules.xml file.
Author:
Niels Meijer
  • Constructor Details

    • DigesterRule

      public DigesterRule()
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getPattern

      public String getPattern()
      The digester rule's pattern.
    • setPattern

      public void setPattern(String pattern)
      The digester rule's pattern.
    • getBeanClass

      public String getBeanClass()
      The class to use when creating the bean through Spring.
    • setBeanClass

      public void setBeanClass(String beanClass)
      The class to use when creating the bean through Spring.
    • getFactory

      public String getFactory()
      The 'factory-create-rule' attribute. When non specified it uses the GenericFactory. When specified as NULL-String it does not use a factory.
    • setFactory

      public void setFactory(String factory)
      The 'factory-create-rule' attribute. When non specified it uses the GenericFactory. When specified as NULL-String it does not use a factory.
    • getRegisterMethod

      public String getRegisterMethod()
      The 'set-next-rule' attribute. Register the just-created-object on it's parent.
    • setRegisterMethod

      public void setRegisterMethod(String registerMethod)
      The 'set-next-rule' attribute. Register the just-created-object on it's parent.
    • getSelfRegisterMethod

      public String getSelfRegisterMethod()
      The 'set-top-rule' attribute. Register the parent on the just-created-object.
    • setSelfRegisterMethod

      public void setSelfRegisterMethod(String selfRegisterMethod)
      The 'set-top-rule' attribute. Register the parent on the just-created-object.
    • getRegisterTextMethod

      public String getRegisterTextMethod()
      The 'registerTextMethod()' attribute. Add the element body text to the parent.
    • setRegisterTextMethod

      public void setRegisterTextMethod(String registerTextMethod)
      The 'registerTextMethod()' attribute. Add the element body text to the parent.