summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/xml/providers/XMLEventFactoryProvider.java
blob: e894c39865b137b79b5dc42384ae96e5d4382039 (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
24
25
26
// Copyright 2017 Yahoo Holdings. 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.stream.XMLEventFactory;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 * @since 5.1.29
 * @deprecated Do not use!
 */
@Deprecated
public class XMLEventFactoryProvider implements Provider<XMLEventFactory> {
    public static final String FACTORY_CLASS = "com.sun.xml.internal.stream.events.XMLEventFactoryImpl";

    @Override
    public XMLEventFactory get() {
        System.setProperty("javax.xml.stream.XMLEventFactory", FACTORY_CLASS);
        // NOTE: In case the newFactory(String, ClassLoader) is used, XMLEventFactory treats the string as classname.
        return XMLEventFactory.newFactory();
    }

    @Override
    public void deconstruct() { }
}