private static class JettisonMappedReaderFactory extends AbstractXMLInputFactory {
private static final int INPUT_BUF_SIZE = 4096;
private MappedNamespaceConvention convention;
private DocumentDepthProperties depthProps;
public JettisonMappedReaderFactory(Map<?, ?> nstojns, DocumentDepthProperties depthProps) {
convention = new MappedNamespaceConvention(new Configuration(nstojns));
this.depthProps = depthProps;
}