Add custom EXI buffer management
[netconf.git] / netconf / netconf-netty-util / src / main / java / org / opendaylight / netconf / nettyutil / handler / ThreadLocalSAXFactory.java
1 /*
2  * Copyright (c) 2019 Pantheon Technologies, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.nettyutil.handler;
9
10 import org.opendaylight.netconf.shaded.exificient.core.EXIFactory;
11 import org.opendaylight.netconf.shaded.exificient.core.exceptions.EXIException;
12 import org.opendaylight.netconf.shaded.exificient.main.api.sax.SAXFactory;
13
14 /**
15  * A SAXFactory which hands out {@link ThreadLocalSAXDecoder}s.
16  */
17 final class ThreadLocalSAXFactory extends SAXFactory {
18     ThreadLocalSAXFactory(final EXIFactory exiFactory) {
19         super(exiFactory);
20     }
21
22     @Override
23     public ThreadLocalSAXDecoder createEXIReader() throws EXIException {
24         return new ThreadLocalSAXDecoder(exiFactory);
25     }
26 }