summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/xml/providers/SAXParserFactoryProvider.java
blob: 5cf921884c58bf1ee103b63a137176f7d9d3c3fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.xml.providers;

import com.yahoo.container.di.componentgraph.Provider;

import javax.xml.parsers.SAXParserFactory;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 * @since 5.1.29
 */
public class SAXParserFactoryProvider implements Provider<SAXParserFactory> {
    public static final String FACTORY_CLASS = "com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl";

    @Override
    public SAXParserFactory get() {
        return SAXParserFactory.newInstance(FACTORY_CLASS,
                                            this.getClass().getClassLoader());
    }

    @Override
    public void deconstruct() { }
}