Class ParserConfigurator

  • All Implemented Interfaces:
    ExtensionPoint, Serializable

    @Deprecated
    public abstract class ParserConfigurator
    extends Object
    implements ExtensionPoint, Serializable
    Deprecated.
    No longer used.
    Configures XML parsers to be used for various XML parsing activities inside Jenkins.

    XML parsing is a complex enough activity that often certain degree of customization of the parsing behaviour is desired. This extension point enables that. To avoid creating new extension point for each different parsing scene, this extension point takes the type-less "context" argument, which should identify the context of the parse by type.

    This extension point is added late in the game, so existing XML parsing behaviour should be retrofitted to use this as we find them. Similarly, additional overloaded versions are likely needed to support SAX, JAXP, and other means of parsing.

    Since:
    1.416
    Author:
    Kohsuke Kawaguchi
    See Also:
    Serialized Form
    • Constructor Detail

      • ParserConfigurator

        public ParserConfigurator()
        Deprecated.