Class DigesterRule
java.lang.Object
org.frankframework.configuration.digester.DigesterRule
Java representation of a digester rule specified in the digester-rules.xml file.
- Author:
- Niels Meijer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe class to use when creating the bean through Spring.The 'factory-create-rule' attribute.The digester rule's pattern.The 'set-next-rule' attribute.The 'registerTextMethod()' attribute.void
setBeanClass
(String beanClass) The class to use when creating the bean through Spring.void
setFactory
(String factory) The 'factory-create-rule' attribute.void
setPattern
(String pattern) The digester rule's pattern.void
setRegisterMethod
(String registerMethod) The 'set-next-rule' attribute.void
setRegisterTextMethod
(String registerTextMethod) The 'registerTextMethod()' attribute.toString()
-
Constructor Details
-
DigesterRule
public DigesterRule()
-
-
Method Details
-
toString
-
getPattern
The digester rule's pattern. -
setPattern
The digester rule's pattern. -
getBeanClass
The class to use when creating the bean through Spring. -
setBeanClass
The class to use when creating the bean through Spring. -
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
The 'factory-create-rule' attribute. When non specified it uses the GenericFactory. When specified as NULL-String it does not use a factory. -
getRegisterMethod
The 'set-next-rule' attribute. Register the just-created-object on it's parent. -
setRegisterMethod
The 'set-next-rule' attribute. Register the just-created-object on it's parent. -
getRegisterTextMethod
The 'registerTextMethod()' attribute. Add the element body text to the parent. -
setRegisterTextMethod
The 'registerTextMethod()' attribute. Add the element body text to the parent.
-