diff --git a/.github/workflows/release_python.yml b/.github/workflows/release_python.yml index e70a240..495d4d9 100644 --- a/.github/workflows/release_python.yml +++ b/.github/workflows/release_python.yml @@ -91,48 +91,47 @@ jobs: cd bindings/extractous-python pytest -s -# -# windows: -# runs-on: ${{ matrix.platform.runner }} -# strategy: -# matrix: -# platform: -# - runner: windows-latest -# target: x64 -# steps: -# - uses: actions/checkout@v4 -# - uses: actions/setup-python@v5 -# with: -# python-version: '3.8' -# architecture: ${{ matrix.platform.target }} -# - uses: graalvm/setup-graalvm@v1.2.2 -# with: -# java-version: '22' -# distribution: 'graalvm-community' -# set-java-home: 'true' -# - name: Build wheels -# uses: PyO3/maturin-action@v1 -# with: -# target: ${{ matrix.platform.target }} -# working-directory: "bindings/extractous-python" -# args: --release --out dist --find-interpreter -# sccache: 'true' -# - name: Upload wheels -# uses: actions/upload-artifact@v4 -# with: -# name: wheels-windows-${{ matrix.platform.target }} -# path: bindings/extractous-python/dist -# - name: pytest -# if: ${{ !startsWith(matrix.platform.target, 'aarch64') }} -# shell: bash -# run: | -# set -e -# python3 -m venv .venv -# source .venv/Scripts/activate -# pip install extractous --find-links bindings/extractous-python/dist --force-reinstall -# pip install pytest scikit-learn -# cd bindings/extractous-python -# pytest -s + + windows: + runs-on: ${{ matrix.platform.runner }} + strategy: + matrix: + platform: + - runner: windows-latest + target: x64 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.8' + architecture: ${{ matrix.platform.target }} + - uses: graalvm/setup-graalvm@v1.2.2 + with: + java-version: '22' + distribution: 'graalvm-community' + set-java-home: 'true' + - name: Build wheels + uses: PyO3/maturin-action@v1 + with: + target: ${{ matrix.platform.target }} + working-directory: "bindings/extractous-python" + args: --release --out dist --find-interpreter + sccache: 'true' + - name: Upload wheels + uses: actions/upload-artifact@v4 + with: + name: wheels-windows-${{ matrix.platform.target }} + path: bindings/extractous-python/dist + - name: pytest + if: ${{ !startsWith(matrix.platform.target, 'aarch64') }} + shell: cmd + run: | + python -m venv .venv + .venv\Scripts\activate.bat + pip install extractous --find-links bindings/extractous-python/dist --force-reinstall + pip install pytest scikit-learn + cd bindings\extractous-python + pytest -s macos: runs-on: ${{ matrix.platform.runner }} @@ -205,7 +204,7 @@ jobs: publish-to-testpypi: name: Publish to TestPyPI # publish to TestPyPI on any push - needs: [linux, macos, sdist] + needs: [linux, macos, windows, sdist] runs-on: ubuntu-latest environment: name: testpypi @@ -230,7 +229,7 @@ jobs: name: Publish to PyPI # only publish to PyPI on tag pushes if: "startsWith(github.ref, 'refs/tags/')" - needs: [linux, macos, sdist] + needs: [linux, macos, windows, sdist] runs-on: ubuntu-latest environment: name: pypi @@ -247,4 +246,4 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: skip-existing: true - packages-dir: bindings/extractous-python/dist \ No newline at end of file + packages-dir: bindings/extractous-python/dist diff --git a/bindings/extractous-python/pyproject.toml b/bindings/extractous-python/pyproject.toml index 19b244a..e2d022b 100644 --- a/bindings/extractous-python/pyproject.toml +++ b/bindings/extractous-python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "extractous" -version = '0.1.4' +version = '0.1.5' classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", @@ -65,6 +65,5 @@ rustc-args = ["-C", "link-arg=-Wl,-rpath,$ORIGIN"] include = [ {path = "**/*.so", format = ["wheel"]}, {path = "**/*.dylib", format = ["wheel"]}, - {path = "**/*.dll", format = ["wheel"]}, - {path = "**/*.lib", format = ["wheel"]} + {path = "**/*.dll", format = ["wheel"]} ] diff --git a/bindings/extractous-python/python/extractous/__init__.py b/bindings/extractous-python/python/extractous/__init__.py index 45b8a28..fa588c9 100644 --- a/bindings/extractous-python/python/extractous/__init__.py +++ b/bindings/extractous-python/python/extractous/__init__.py @@ -1,3 +1,12 @@ +import os +from platform import system + +# On Windows there is no equivalent way of setting RPATH +# This adds the current directory to PATH so that the graalvm libs will be found +if system() == "Windows": + libpath = os.path.dirname(__file__) + os.environ["PATH"] = libpath + os.pathsep + os.environ["PATH"] + from ._extractous import * __doc__ = _extractous.__doc__ diff --git a/bindings/extractous-python/tests/test_extract_file_to_string.py b/bindings/extractous-python/tests/test_extract_file_to_string.py index 2df33fe..94d92a8 100644 --- a/bindings/extractous-python/tests/test_extract_file_to_string.py +++ b/bindings/extractous-python/tests/test_extract_file_to_string.py @@ -24,7 +24,7 @@ def test_extract_file_to_string(file_name, target_dist): expected_result_filepath = f"../../test_files/expected_result/{file_name}.txt" extractor = Extractor() result = extractor.extract_file_to_string(original_filepath) - with open(expected_result_filepath, "r") as file: + with open(expected_result_filepath, "r", encoding="utf8") as file: expected = file.read() assert cosine_similarity(result, expected) > target_dist, \ diff --git a/extractous-core/Cargo.lock b/extractous-core/Cargo.lock index 8c5277a..b1f4b0e 100644 --- a/extractous-core/Cargo.lock +++ b/extractous-core/Cargo.lock @@ -330,7 +330,7 @@ dependencies = [ [[package]] name = "extractous" -version = "0.1.4" +version = "0.1.5" dependencies = [ "bytemuck", "flate2", diff --git a/extractous-core/Cargo.toml b/extractous-core/Cargo.toml index bf45fc8..aa1bdc6 100644 --- a/extractous-core/Cargo.toml +++ b/extractous-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extractous" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = """ diff --git a/extractous-core/build.rs b/extractous-core/build.rs index 50cc6e8..4eb87a4 100644 --- a/extractous-core/build.rs +++ b/extractous-core/build.rs @@ -1,7 +1,6 @@ use std::env; use std::fs; use std::io; -use std::io::Write; use std::path::{Path, PathBuf}; use std::process::Command; @@ -34,8 +33,11 @@ fn main() { // Try to find already built libs match find_already_built_libs(&out_dir) { Some(libs_dir) => { - // If the libs are already built, copy them to the output directory - copy_build_artifacts(&libs_dir, vec![&libs_out_dir], false); + // ignore if libs_dir/.. is the same as out_dir + if out_dir.join("libs") != libs_dir { + // If the libs are already built, copy them to the output directory + copy_build_artifacts(&libs_dir, vec![&libs_out_dir], false); + } } None => { // Launch the gradle build @@ -52,7 +54,12 @@ fn main() { println!("cargo:rustc-link-search={}", libs_out_dir.display()); // Tell cargo to tell rustc to link the `tika_native` shared library. - println!("cargo:rustc-link-lib=dylib=tika_native"); + let lib_tika_name = if cfg!(target_os = "windows") { + "libtika_native" + } else { + "tika_native" + }; + println!("cargo:rustc-link-lib=dylib={}", lib_tika_name); } /// Searches for directories two levels up from `out_dir` and checks if any of them @@ -121,6 +128,7 @@ fn gradle_build( // Launch the gradle build Command::new(gradlew) .current_dir(&tika_native_dir) + .arg("--no-daemon") .arg("nativeCompile") .env("JAVA_HOME", graalvm_home) .status() @@ -290,7 +298,7 @@ pub fn install_graalvm_ce(install_dir: &PathBuf) -> PathBuf { // in case of a download error let mut buffer: Vec = vec![]; io::copy(&mut response.bytes() - .expect(&format!("Failed to download GraalVM JDK from {}", base_url)) + .unwrap_or_else(|_| panic!("Failed to download GraalVM JDK from {}", base_url)) .as_ref(), &mut buffer ).unwrap(); //let mut out = fs::File::create(&archive_path).unwrap(); @@ -335,4 +343,4 @@ pub fn install_graalvm_ce(install_dir: &PathBuf) -> PathBuf { } install_dir.join(main_dir) -} \ No newline at end of file +} diff --git a/extractous-core/tika-native/src/main/resources/META-INF/native-image/jni-config.json b/extractous-core/tika-native/src/main/resources/META-INF/native-image/jni-config.json index fe6c369..bae5d25 100644 --- a/extractous-core/tika-native/src/main/resources/META-INF/native-image/jni-config.json +++ b/extractous-core/tika-native/src/main/resources/META-INF/native-image/jni-config.json @@ -1,305 +1,1357 @@ [ -{ - "name":"[Lsun.java2d.loops.GraphicsPrimitive;" -}, -{ - "name":"org.apache.tika.parser.pdf.PDFParserConfig", - "methods":[ - {"name":"","parameterTypes":[]}, - {"name":"setExtractInlineImages","parameterTypes":["boolean"] }, - {"name":"setExtractUniqueInlineImagesOnly","parameterTypes":["boolean"] }, - {"name":"setExtractMarkedContent","parameterTypes":["boolean"] }, - {"name":"setExtractAnnotationText","parameterTypes":["boolean"] }, - {"name":"setOcrStrategy","parameterTypes":["java.lang.String"] } - ] -}, -{ - "name":"org.apache.tika.parser.microsoft.OfficeParserConfig", - "methods":[ - {"name":"","parameterTypes":[]}, - {"name":"setExtractMacros","parameterTypes":["boolean"] }, - {"name":"setIncludeDeletedContent","parameterTypes":["boolean"] }, - {"name":"setIncludeMoveFromContent","parameterTypes":["boolean"] }, - {"name":"setIncludeShapeBasedContent","parameterTypes":["boolean"] }, - {"name":"setIncludeHeadersAndFooters","parameterTypes":["boolean"] }, - {"name":"setIncludeMissingRows","parameterTypes":["boolean"] }, - {"name":"setIncludeSlideNotes","parameterTypes":["boolean"] }, - {"name":"setIncludeSlideMasterContent","parameterTypes":["boolean"] }, - {"name":"setConcatenatePhoneticRuns","parameterTypes":["boolean"] }, - {"name":"setExtractAllAlternativesFromMSG","parameterTypes":["boolean"] } - ] -}, -{ - "name":"org.apache.tika.parser.ocr.TesseractOCRConfig", - "methods":[ - {"name":"","parameterTypes":[]}, - {"name":"setDensity","parameterTypes":["int"] }, - {"name":"setDepth","parameterTypes":["int"] }, - {"name":"setTimeoutSeconds","parameterTypes":["int"] }, - {"name":"setEnableImagePreprocessing","parameterTypes":["boolean"] }, - {"name":"setApplyRotation","parameterTypes":["boolean"] }, - {"name":"setLanguage","parameterTypes":["java.lang.String"] } - ] -}, -{ - "name":"ai.yobix.ReaderResult", - "methods":[{"name":"getErrorMessage","parameterTypes":[] }, {"name":"getReader","parameterTypes":[] }, {"name":"getStatus","parameterTypes":[] }, {"name":"isError","parameterTypes":[] }] -}, -{ - "name":"ai.yobix.StringResult", - "methods":[{"name":"getContent","parameterTypes":[] }, {"name":"getErrorMessage","parameterTypes":[] }, {"name":"getStatus","parameterTypes":[] }, {"name":"isError","parameterTypes":[] }] -}, -{ - "name":"ai.yobix.TikaNativeMain", - "methods":[ - {"name":"detect","parameterTypes":["java.lang.String"] }, - {"name":"parseToString","parameterTypes":["java.lang.String","int"] }, - {"name":"parseBytes","parameterTypes":["byte[]","java.lang.String","org.apache.tika.parser.pdf.PDFParserConfig","org.apache.tika.parser.microsoft.OfficeParserConfig","org.apache.tika.parser.ocr.TesseractOCRConfig"] }, - {"name":"parseFile","parameterTypes":["java.lang.String","java.lang.String","org.apache.tika.parser.pdf.PDFParserConfig","org.apache.tika.parser.microsoft.OfficeParserConfig","org.apache.tika.parser.ocr.TesseractOCRConfig"] }, - {"name":"parseUrl","parameterTypes":["java.lang.String","java.lang.String","org.apache.tika.parser.pdf.PDFParserConfig","org.apache.tika.parser.microsoft.OfficeParserConfig","org.apache.tika.parser.ocr.TesseractOCRConfig"] } - ] -}, -{ - "name":"com.sun.imageio.plugins.jpeg.JPEGImageReader", - "methods":[{"name":"acceptPixels","parameterTypes":["int","boolean"] }, {"name":"passComplete","parameterTypes":[] }, {"name":"passStarted","parameterTypes":["int"] }, {"name":"pushBack","parameterTypes":["int"] }, {"name":"readInputData","parameterTypes":["byte[]","int","int"] }, {"name":"setImageData","parameterTypes":["int","int","int","int","int","byte[]"] }, {"name":"skipInputBytes","parameterTypes":["long"] }, {"name":"skipPastImage","parameterTypes":["int"] }, {"name":"warningOccurred","parameterTypes":["int"] }, {"name":"warningWithMessage","parameterTypes":["java.lang.String"] }] -}, -{ - "name":"java.awt.AlphaComposite", - "fields":[{"name":"extraAlpha"}, {"name":"rule"}] -}, -{ - "name":"java.awt.Color", - "fields":[{"name":"value"}], - "methods":[{"name":"getRGB","parameterTypes":[] }] -}, -{ - "name":"java.awt.GraphicsEnvironment", - "methods":[{"name":"isHeadless","parameterTypes":[] }] -}, -{ - "name":"java.awt.Rectangle", - "methods":[{"name":"","parameterTypes":["int","int","int","int"] }] -}, -{ - "name":"java.awt.geom.AffineTransform", - "fields":[{"name":"m00"}, {"name":"m01"}, {"name":"m02"}, {"name":"m10"}, {"name":"m11"}, {"name":"m12"}] -}, -{ - "name":"java.awt.geom.Path2D", - "fields":[{"name":"numTypes"}, {"name":"pointTypes"}, {"name":"windingRule"}] -}, -{ - "name":"java.awt.geom.Path2D$Float", - "fields":[{"name":"floatCoords"}] -}, -{ - "name":"java.awt.image.BufferedImage", - "fields":[{"name":"colorModel"}, {"name":"imageType"}, {"name":"raster"}], - "methods":[{"name":"getRGB","parameterTypes":["int","int","int","int","int[]","int","int"] }, {"name":"setRGB","parameterTypes":["int","int","int","int","int[]","int","int"] }] -}, -{ - "name":"java.awt.image.ColorModel", - "fields":[{"name":"colorSpace"}, {"name":"colorSpaceType"}, {"name":"isAlphaPremultiplied"}, {"name":"is_sRGB"}, {"name":"nBits"}, {"name":"numComponents"}, {"name":"supportsAlpha"}, {"name":"transparency"}], - "methods":[{"name":"getRGBdefault","parameterTypes":[] }] -}, -{ - "name":"java.awt.image.IndexColorModel", - "fields":[{"name":"allgrayopaque"}, {"name":"colorData"}, {"name":"map_size"}, {"name":"rgb"}, {"name":"transparent_index"}] -}, -{ - "name":"java.awt.image.Raster", - "fields":[{"name":"dataBuffer"}, {"name":"height"}, {"name":"minX"}, {"name":"minY"}, {"name":"numBands"}, {"name":"numDataElements"}, {"name":"sampleModel"}, {"name":"sampleModelTranslateX"}, {"name":"sampleModelTranslateY"}, {"name":"width"}] -}, -{ - "name":"java.awt.image.SampleModel", - "fields":[{"name":"height"}, {"name":"width"}], - "methods":[{"name":"getPixels","parameterTypes":["int","int","int","int","int[]","java.awt.image.DataBuffer"] }, {"name":"setPixels","parameterTypes":["int","int","int","int","int[]","java.awt.image.DataBuffer"] }] -}, -{ - "name":"java.awt.image.SinglePixelPackedSampleModel", - "fields":[{"name":"bitMasks"}, {"name":"bitOffsets"}, {"name":"bitSizes"}, {"name":"maxBitSize"}] -}, -{ - "name":"java.lang.Boolean", - "methods":[{"name":"getBoolean","parameterTypes":["java.lang.String"] }] -}, -{ - "name":"java.lang.System", - "methods":[{"name":"load","parameterTypes":["java.lang.String"] }] -}, -{ - "name":"java.lang.Thread", - "methods":[{"name":"yield","parameterTypes":[] }] -}, -{ - "name":"javax.imageio.plugins.jpeg.JPEGHuffmanTable", - "fields":[{"name":"lengths"}, {"name":"values"}] -}, -{ - "name":"javax.imageio.plugins.jpeg.JPEGQTable", - "fields":[{"name":"qTable"}] -}, -{ - "name":"org.apache.commons.io.input.ReaderInputStream", - "methods":[{"name":"close","parameterTypes":[] }, {"name":"read","parameterTypes":["byte[]"] }, {"name":"read","parameterTypes":["byte[]","int","int"] }] -}, -{ - "name":"sun.awt.SunHints", - "fields":[{"name":"INTVAL_STROKE_PURE"}] -}, -{ - "name":"sun.awt.SunToolkit", - "methods":[{"name":"awtLock","parameterTypes":[] }, {"name":"awtLockNotify","parameterTypes":[] }, {"name":"awtLockNotifyAll","parameterTypes":[] }, {"name":"awtLockWait","parameterTypes":["long"] }, {"name":"awtUnlock","parameterTypes":[] }] -}, -{ - "name":"sun.awt.X11.XErrorHandlerUtil", - "methods":[{"name":"init","parameterTypes":["long"] }] -}, -{ - "name":"sun.awt.X11.XToolkit", - "fields":[{"name":"modLockIsShiftLock"}, {"name":"numLockMask"}] -}, -{ - "name":"sun.awt.image.BufImgSurfaceData$ICMColorData", - "fields":[{"name":"pData"}], - "methods":[{"name":"","parameterTypes":["long"] }] -}, -{ - "name":"sun.awt.image.ByteComponentRaster", - "fields":[{"name":"data"}, {"name":"dataOffsets"}, {"name":"pixelStride"}, {"name":"scanlineStride"}, {"name":"type"}] -}, -{ - "name":"sun.awt.image.ImageRepresentation", - "fields":[{"name":"numSrcLUT"}, {"name":"srcLUTtransIndex"}] -}, -{ - "name":"sun.awt.image.IntegerComponentRaster", - "fields":[{"name":"data"}, {"name":"dataOffsets"}, {"name":"pixelStride"}, {"name":"scanlineStride"}, {"name":"type"}] -}, -{ - "name":"sun.java2d.Disposer", - "methods":[{"name":"addRecord","parameterTypes":["java.lang.Object","long","long"] }] -}, -{ - "name":"sun.java2d.InvalidPipeException" -}, -{ - "name":"sun.java2d.NullSurfaceData" -}, -{ - "name":"sun.java2d.SunGraphics2D", - "fields":[{"name":"clipRegion"}, {"name":"composite"}, {"name":"eargb"}, {"name":"lcdTextContrast"}, {"name":"pixel"}, {"name":"strokeHint"}] -}, -{ - "name":"sun.java2d.SurfaceData", - "fields":[{"name":"pData"}, {"name":"valid"}] -}, -{ - "name":"sun.java2d.loops.Blit", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.BlitBg", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.CompositeType", - "fields":[{"name":"AnyAlpha"}, {"name":"Src"}, {"name":"SrcNoEa"}, {"name":"SrcOver"}, {"name":"SrcOverNoEa"}, {"name":"Xor"}] -}, -{ - "name":"sun.java2d.loops.DrawGlyphList", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawGlyphListAA", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawGlyphListLCD", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawLine", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawParallelogram", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawPath", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawPolygons", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.DrawRect", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.FillParallelogram", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.FillPath", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.FillRect", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.FillSpans", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.GraphicsPrimitive", - "fields":[{"name":"pNativePrim"}] -}, -{ - "name":"sun.java2d.loops.GraphicsPrimitiveMgr", - "methods":[{"name":"register","parameterTypes":["sun.java2d.loops.GraphicsPrimitive[]"] }] -}, -{ - "name":"sun.java2d.loops.MaskBlit", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.MaskFill", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.ScaledBlit", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.SurfaceType", - "fields":[{"name":"Any3Byte"}, {"name":"Any4Byte"}, {"name":"AnyByte"}, {"name":"AnyColor"}, {"name":"AnyInt"}, {"name":"AnyShort"}, {"name":"ByteBinary1Bit"}, {"name":"ByteBinary2Bit"}, {"name":"ByteBinary4Bit"}, {"name":"ByteGray"}, {"name":"ByteIndexed"}, {"name":"ByteIndexedBm"}, {"name":"FourByteAbgr"}, {"name":"FourByteAbgrPre"}, {"name":"Index12Gray"}, {"name":"Index8Gray"}, {"name":"IntArgb"}, {"name":"IntArgbBm"}, {"name":"IntArgbPre"}, {"name":"IntBgr"}, {"name":"IntRgb"}, {"name":"IntRgbx"}, {"name":"OpaqueColor"}, {"name":"ThreeByteBgr"}, {"name":"Ushort4444Argb"}, {"name":"Ushort555Rgb"}, {"name":"Ushort555Rgbx"}, {"name":"Ushort565Rgb"}, {"name":"UshortGray"}, {"name":"UshortIndexed"}] -}, -{ - "name":"sun.java2d.loops.TransformHelper", - "methods":[{"name":"","parameterTypes":["long","sun.java2d.loops.SurfaceType","sun.java2d.loops.CompositeType","sun.java2d.loops.SurfaceType"] }] -}, -{ - "name":"sun.java2d.loops.XORComposite", - "fields":[{"name":"alphaMask"}, {"name":"xorColor"}, {"name":"xorPixel"}] -}, -{ - "name":"sun.java2d.pipe.Region", - "fields":[{"name":"bands"}, {"name":"endIndex"}, {"name":"hix"}, {"name":"hiy"}, {"name":"lox"}, {"name":"loy"}] -}, -{ - "name":"sun.java2d.pipe.RegionIterator", - "fields":[{"name":"curIndex"}, {"name":"numXbands"}, {"name":"region"}] -}, -{ - "name":"sun.java2d.pipe.ShapeSpanIterator", - "fields":[{"name":"pData"}] -}, -{ - "name":"sun.java2d.xr.XRSurfaceData", - "fields":[{"name":"picture"}, {"name":"xid"}] -} + { + "name": "[Lsun.java2d.loops.GraphicsPrimitive;" + }, + { + "methods": [ + { + "name": "getErrorMessage", + "parameterTypes": [] + }, + { + "name": "getReader", + "parameterTypes": [] + }, + { + "name": "getStatus", + "parameterTypes": [] + }, + { + "name": "isError", + "parameterTypes": [] + } + ], + "name": "ai.yobix.ReaderResult" + }, + { + "methods": [ + { + "name": "getContent", + "parameterTypes": [] + }, + { + "name": "getErrorMessage", + "parameterTypes": [] + }, + { + "name": "getStatus", + "parameterTypes": [] + }, + { + "name": "isError", + "parameterTypes": [] + } + ], + "name": "ai.yobix.StringResult" + }, + { + "methods": [ + { + "name": "detect", + "parameterTypes": [ + "java.lang.String" + ] + }, + { + "name": "parseBytes", + "parameterTypes": [ + "byte[]", + "java.lang.String", + "org.apache.tika.parser.pdf.PDFParserConfig", + "org.apache.tika.parser.microsoft.OfficeParserConfig", + "org.apache.tika.parser.ocr.TesseractOCRConfig" + ] + }, + { + "name": "parseFile", + "parameterTypes": [ + "java.lang.String", + "java.lang.String", + "org.apache.tika.parser.pdf.PDFParserConfig", + "org.apache.tika.parser.microsoft.OfficeParserConfig", + "org.apache.tika.parser.ocr.TesseractOCRConfig" + ] + }, + { + "name": "parseToString", + "parameterTypes": [ + "java.lang.String", + "int" + ] + }, + { + "name": "parseUrl", + "parameterTypes": [ + "java.lang.String", + "java.lang.String", + "org.apache.tika.parser.pdf.PDFParserConfig", + "org.apache.tika.parser.microsoft.OfficeParserConfig", + "org.apache.tika.parser.ocr.TesseractOCRConfig" + ] + } + ], + "name": "ai.yobix.TikaNativeMain" + }, + { + "methods": [ + { + "name": "acceptPixels", + "parameterTypes": [ + "int", + "boolean" + ] + }, + { + "name": "passComplete", + "parameterTypes": [] + }, + { + "name": "passStarted", + "parameterTypes": [ + "int" + ] + }, + { + "name": "pushBack", + "parameterTypes": [ + "int" + ] + }, + { + "name": "readInputData", + "parameterTypes": [ + "byte[]", + "int", + "int" + ] + }, + { + "name": "setImageData", + "parameterTypes": [ + "int", + "int", + "int", + "int", + "int", + "byte[]" + ] + }, + { + "name": "skipInputBytes", + "parameterTypes": [ + "long" + ] + }, + { + "name": "skipPastImage", + "parameterTypes": [ + "int" + ] + }, + { + "name": "warningOccurred", + "parameterTypes": [ + "int" + ] + }, + { + "name": "warningWithMessage", + "parameterTypes": [ + "java.lang.String" + ] + } + ], + "name": "com.sun.imageio.plugins.jpeg.JPEGImageReader" + }, + { + "fields": [ + { + "name": "extraAlpha" + }, + { + "name": "rule" + } + ], + "name": "java.awt.AlphaComposite" + }, + { + "fields": [ + { + "name": "value" + } + ], + "methods": [ + { + "name": "getRGB", + "parameterTypes": [] + } + ], + "name": "java.awt.Color" + }, + { + "fields": [ + { + "name": "height" + }, + { + "name": "width" + } + ], + "name": "java.awt.Dimension" + }, + { + "methods": [ + { + "name": "isHeadless", + "parameterTypes": [] + } + ], + "name": "java.awt.GraphicsEnvironment" + }, + { + "fields": [ + { + "name": "bottom" + }, + { + "name": "left" + }, + { + "name": "right" + }, + { + "name": "top" + } + ], + "methods": [ + { + "name": "", + "parameterTypes": [ + "int", + "int", + "int", + "int" + ] + } + ], + "name": "java.awt.Insets" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "int", + "int", + "int", + "int" + ] + } + ], + "name": "java.awt.Rectangle" + }, + { + "methods": [ + { + "name": "getDefaultToolkit", + "parameterTypes": [] + }, + { + "name": "getFontMetrics", + "parameterTypes": [ + "java.awt.Font" + ] + } + ], + "name": "java.awt.Toolkit" + }, + { + "fields": [ + { + "name": "m00" + }, + { + "name": "m01" + }, + { + "name": "m02" + }, + { + "name": "m10" + }, + { + "name": "m11" + }, + { + "name": "m12" + } + ], + "name": "java.awt.geom.AffineTransform" + }, + { + "fields": [ + { + "name": "numTypes" + }, + { + "name": "pointTypes" + }, + { + "name": "windingRule" + } + ], + "name": "java.awt.geom.Path2D" + }, + { + "fields": [ + { + "name": "floatCoords" + } + ], + "name": "java.awt.geom.Path2D$Float" + }, + { + "fields": [ + { + "name": "colorModel" + }, + { + "name": "imageType" + }, + { + "name": "raster" + } + ], + "methods": [ + { + "name": "getRGB", + "parameterTypes": [ + "int", + "int", + "int", + "int", + "int[]", + "int", + "int" + ] + }, + { + "name": "setRGB", + "parameterTypes": [ + "int", + "int", + "int", + "int", + "int[]", + "int", + "int" + ] + } + ], + "name": "java.awt.image.BufferedImage" + }, + { + "fields": [ + { + "name": "colorSpace" + }, + { + "name": "colorSpaceType" + }, + { + "name": "isAlphaPremultiplied" + }, + { + "name": "is_sRGB" + }, + { + "name": "nBits" + }, + { + "name": "numComponents" + }, + { + "name": "supportsAlpha" + }, + { + "name": "transparency" + } + ], + "methods": [ + { + "name": "getRGBdefault", + "parameterTypes": [] + } + ], + "name": "java.awt.image.ColorModel" + }, + { + "fields": [ + { + "name": "allgrayopaque" + }, + { + "name": "colorData" + }, + { + "name": "map_size" + }, + { + "name": "rgb" + }, + { + "name": "transparent_index" + } + ], + "name": "java.awt.image.IndexColorModel" + }, + { + "fields": [ + { + "name": "dataBuffer" + }, + { + "name": "height" + }, + { + "name": "minX" + }, + { + "name": "minY" + }, + { + "name": "numBands" + }, + { + "name": "numDataElements" + }, + { + "name": "sampleModel" + }, + { + "name": "sampleModelTranslateX" + }, + { + "name": "sampleModelTranslateY" + }, + { + "name": "width" + } + ], + "name": "java.awt.image.Raster" + }, + { + "fields": [ + { + "name": "height" + }, + { + "name": "width" + } + ], + "methods": [ + { + "name": "getPixels", + "parameterTypes": [ + "int", + "int", + "int", + "int", + "int[]", + "java.awt.image.DataBuffer" + ] + }, + { + "name": "setPixels", + "parameterTypes": [ + "int", + "int", + "int", + "int", + "int[]", + "java.awt.image.DataBuffer" + ] + } + ], + "name": "java.awt.image.SampleModel" + }, + { + "fields": [ + { + "name": "bitMasks" + }, + { + "name": "bitOffsets" + }, + { + "name": "bitSizes" + }, + { + "name": "maxBitSize" + } + ], + "name": "java.awt.image.SinglePixelPackedSampleModel" + }, + { + "methods": [ + { + "name": "getBoolean", + "parameterTypes": [ + "java.lang.String" + ] + } + ], + "name": "java.lang.Boolean" + }, + { + "methods": [ + { + "name": "load", + "parameterTypes": [ + "java.lang.String" + ] + } + ], + "name": "java.lang.System" + }, + { + "methods": [ + { + "name": "yield", + "parameterTypes": [] + } + ], + "name": "java.lang.Thread" + }, + { + "fields": [ + { + "name": "lengths" + }, + { + "name": "values" + } + ], + "name": "javax.imageio.plugins.jpeg.JPEGHuffmanTable" + }, + { + "fields": [ + { + "name": "qTable" + } + ], + "name": "javax.imageio.plugins.jpeg.JPEGQTable" + }, + { + "methods": [ + { + "name": "close", + "parameterTypes": [] + }, + { + "name": "read", + "parameterTypes": [ + "byte[]" + ] + }, + { + "name": "read", + "parameterTypes": [ + "byte[]", + "int", + "int" + ] + } + ], + "name": "org.apache.commons.io.input.ReaderInputStream" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "setConcatenatePhoneticRuns", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setExtractAllAlternativesFromMSG", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setExtractMacros", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeDeletedContent", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeHeadersAndFooters", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeMissingRows", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeMoveFromContent", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeShapeBasedContent", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeSlideMasterContent", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setIncludeSlideNotes", + "parameterTypes": [ + "boolean" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.OfficeParserConfig" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "setApplyRotation", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setDensity", + "parameterTypes": [ + "int" + ] + }, + { + "name": "setDepth", + "parameterTypes": [ + "int" + ] + }, + { + "name": "setEnableImagePreprocessing", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setLanguage", + "parameterTypes": [ + "java.lang.String" + ] + }, + { + "name": "setTimeoutSeconds", + "parameterTypes": [ + "int" + ] + } + ], + "name": "org.apache.tika.parser.ocr.TesseractOCRConfig" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "setExtractAnnotationText", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setExtractInlineImages", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setExtractMarkedContent", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setExtractUniqueInlineImagesOnly", + "parameterTypes": [ + "boolean" + ] + }, + { + "name": "setOcrStrategy", + "parameterTypes": [ + "java.lang.String" + ] + } + ], + "name": "org.apache.tika.parser.pdf.PDFParserConfig" + }, + { + "fields": [ + { + "name": "INTVAL_STROKE_PURE" + } + ], + "name": "sun.awt.SunHints" + }, + { + "methods": [ + { + "name": "awtLock", + "parameterTypes": [] + }, + { + "name": "awtLockNotify", + "parameterTypes": [] + }, + { + "name": "awtLockNotifyAll", + "parameterTypes": [] + }, + { + "name": "awtLockWait", + "parameterTypes": [ + "long" + ] + }, + { + "name": "awtUnlock", + "parameterTypes": [] + } + ], + "name": "sun.awt.SunToolkit" + }, + { + "methods": [ + { + "name": "init", + "parameterTypes": [ + "long" + ] + } + ], + "name": "sun.awt.X11.XErrorHandlerUtil" + }, + { + "fields": [ + { + "name": "modLockIsShiftLock" + }, + { + "name": "numLockMask" + } + ], + "name": "sun.awt.X11.XToolkit" + }, + { + "fields": [ + { + "name": "pData" + } + ], + "methods": [ + { + "name": "", + "parameterTypes": [ + "long" + ] + } + ], + "name": "sun.awt.image.BufImgSurfaceData$ICMColorData" + }, + { + "fields": [ + { + "name": "data" + }, + { + "name": "dataOffsets" + }, + { + "name": "pixelStride" + }, + { + "name": "scanlineStride" + }, + { + "name": "type" + } + ], + "name": "sun.awt.image.ByteComponentRaster" + }, + { + "fields": [ + { + "name": "numSrcLUT" + }, + { + "name": "srcLUTtransIndex" + } + ], + "name": "sun.awt.image.ImageRepresentation" + }, + { + "fields": [ + { + "name": "data" + }, + { + "name": "dataOffsets" + }, + { + "name": "pixelStride" + }, + { + "name": "scanlineStride" + }, + { + "name": "type" + } + ], + "name": "sun.awt.image.IntegerComponentRaster" + }, + { + "methods": [ + { + "name": "addRecord", + "parameterTypes": [ + "java.lang.Object", + "long", + "long" + ] + } + ], + "name": "sun.java2d.Disposer" + }, + { + "name": "sun.java2d.InvalidPipeException" + }, + { + "name": "sun.java2d.NullSurfaceData" + }, + { + "fields": [ + { + "name": "clipRegion" + }, + { + "name": "composite" + }, + { + "name": "eargb" + }, + { + "name": "lcdTextContrast" + }, + { + "name": "pixel" + }, + { + "name": "strokeHint" + } + ], + "name": "sun.java2d.SunGraphics2D" + }, + { + "fields": [ + { + "name": "pData" + }, + { + "name": "valid" + } + ], + "name": "sun.java2d.SurfaceData" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.Blit" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.BlitBg" + }, + { + "fields": [ + { + "name": "AnyAlpha" + }, + { + "name": "Src" + }, + { + "name": "SrcNoEa" + }, + { + "name": "SrcOver" + }, + { + "name": "SrcOverNoEa" + }, + { + "name": "Xor" + } + ], + "name": "sun.java2d.loops.CompositeType" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawGlyphList" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawGlyphListAA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawGlyphListLCD" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawLine" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawParallelogram" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawPath" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawPolygons" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.DrawRect" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.FillParallelogram" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.FillPath" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.FillRect" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.FillSpans" + }, + { + "fields": [ + { + "name": "pNativePrim" + } + ], + "name": "sun.java2d.loops.GraphicsPrimitive" + }, + { + "methods": [ + { + "name": "register", + "parameterTypes": [ + "sun.java2d.loops.GraphicsPrimitive[]" + ] + } + ], + "name": "sun.java2d.loops.GraphicsPrimitiveMgr" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.MaskBlit" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.MaskFill" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.ScaledBlit" + }, + { + "fields": [ + { + "name": "Any3Byte" + }, + { + "name": "Any4Byte" + }, + { + "name": "AnyByte" + }, + { + "name": "AnyColor" + }, + { + "name": "AnyInt" + }, + { + "name": "AnyShort" + }, + { + "name": "ByteBinary1Bit" + }, + { + "name": "ByteBinary2Bit" + }, + { + "name": "ByteBinary4Bit" + }, + { + "name": "ByteGray" + }, + { + "name": "ByteIndexed" + }, + { + "name": "ByteIndexedBm" + }, + { + "name": "FourByteAbgr" + }, + { + "name": "FourByteAbgrPre" + }, + { + "name": "Index12Gray" + }, + { + "name": "Index8Gray" + }, + { + "name": "IntArgb" + }, + { + "name": "IntArgbBm" + }, + { + "name": "IntArgbPre" + }, + { + "name": "IntBgr" + }, + { + "name": "IntRgb" + }, + { + "name": "IntRgbx" + }, + { + "name": "OpaqueColor" + }, + { + "name": "ThreeByteBgr" + }, + { + "name": "Ushort4444Argb" + }, + { + "name": "Ushort555Rgb" + }, + { + "name": "Ushort555Rgbx" + }, + { + "name": "Ushort565Rgb" + }, + { + "name": "UshortGray" + }, + { + "name": "UshortIndexed" + } + ], + "name": "sun.java2d.loops.SurfaceType" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "long", + "sun.java2d.loops.SurfaceType", + "sun.java2d.loops.CompositeType", + "sun.java2d.loops.SurfaceType" + ] + } + ], + "name": "sun.java2d.loops.TransformHelper" + }, + { + "fields": [ + { + "name": "alphaMask" + }, + { + "name": "xorColor" + }, + { + "name": "xorPixel" + } + ], + "name": "sun.java2d.loops.XORComposite" + }, + { + "fields": [ + { + "name": "bands" + }, + { + "name": "endIndex" + }, + { + "name": "hix" + }, + { + "name": "hiy" + }, + { + "name": "lox" + }, + { + "name": "loy" + } + ], + "name": "sun.java2d.pipe.Region" + }, + { + "fields": [ + { + "name": "curIndex" + }, + { + "name": "numXbands" + }, + { + "name": "region" + } + ], + "name": "sun.java2d.pipe.RegionIterator" + }, + { + "fields": [ + { + "name": "pData" + } + ], + "name": "sun.java2d.pipe.ShapeSpanIterator" + }, + { + "fields": [ + { + "name": "picture" + }, + { + "name": "xid" + } + ], + "name": "sun.java2d.xr.XRSurfaceData" + } ] \ No newline at end of file diff --git a/extractous-core/tika-native/src/main/resources/META-INF/native-image/predefined-classes-config.json b/extractous-core/tika-native/src/main/resources/META-INF/native-image/predefined-classes-config.json index 8478950..af990ea 100644 --- a/extractous-core/tika-native/src/main/resources/META-INF/native-image/predefined-classes-config.json +++ b/extractous-core/tika-native/src/main/resources/META-INF/native-image/predefined-classes-config.json @@ -1,7 +1,6 @@ [ - { - "type":"agent-extracted", - "classes":[ - ] - } -] + { + "classes": [], + "type": "agent-extracted" + } +] \ No newline at end of file diff --git a/extractous-core/tika-native/src/main/resources/META-INF/native-image/proxy-config.json b/extractous-core/tika-native/src/main/resources/META-INF/native-image/proxy-config.json index cc2902c..39f0bf9 100644 --- a/extractous-core/tika-native/src/main/resources/META-INF/native-image/proxy-config.json +++ b/extractous-core/tika-native/src/main/resources/META-INF/native-image/proxy-config.json @@ -1,5 +1,5 @@ [ - { - "interfaces":[] - } + { + "interfaces": [] + } ] \ No newline at end of file diff --git a/extractous-core/tika-native/src/main/resources/META-INF/native-image/reflect-config.json b/extractous-core/tika-native/src/main/resources/META-INF/native-image/reflect-config.json index e0b8e50..2cfdea8 100644 --- a/extractous-core/tika-native/src/main/resources/META-INF/native-image/reflect-config.json +++ b/extractous-core/tika-native/src/main/resources/META-INF/native-image/reflect-config.json @@ -1,1656 +1,4502 @@ [ -{ - "name":"[B" -}, -{ - "name":"[Ljava.lang.Object;" -}, -{ - "name":"[Ljava.lang.String;" -}, -{ - "name":"[Lorg.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps;" -}, -{ - "name":"[Lorg.openxmlformats.schemas.drawingml.x2006.picture.CTPicture;" -}, -{ - "name":"[Lorg.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape;" -}, -{ - "name":"[Lsun.security.pkcs.SignerInfo;" -}, -{ - "name":"ai.yobix.TestFiles", - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true -}, -{ - "name":"ai.yobix.TestUtils", - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true -}, -{ - "name":"ai.yobix.TikaAllDocsTest", - "allDeclaredFields":true, - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true, - "queryAllDeclaredConstructors":true, - "methods":[{"name":"","parameterTypes":[] }, {"name":"test_parseAllTestDocs","parameterTypes":[] }] -}, -{ - "name":"ai.yobix.TikaDetectTest", - "allDeclaredFields":true, - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true, - "queryAllDeclaredConstructors":true, - "methods":[{"name":"","parameterTypes":[] }, {"name":"test_detectDocxFile","parameterTypes":[] }, {"name":"test_detectOdtFile","parameterTypes":[] }, {"name":"test_detectPdfFile","parameterTypes":[] }, {"name":"test_detectTxtFile","parameterTypes":[] }, {"name":"test_detectXlsFile","parameterTypes":[] }] -}, -{ - "name":"ai.yobix.TikaParseReaderTest", - "allDeclaredFields":true, - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true, - "queryAllDeclaredConstructors":true, - "methods":[{"name":"","parameterTypes":[] }, {"name":"testAppleFilingPdf","parameterTypes":[] }, {"name":"testGetPlainTextFromInvoice","parameterTypes":[] }, {"name":"testGetTextFromPdfFormatWithFonts","parameterTypes":[] }, {"name":"testGetTextFromXlsFile","parameterTypes":[] }, {"name":"testHandbook1pDocxFile","parameterTypes":[] }, {"name":"testInvalidPath","parameterTypes":[] }, {"name":"testNoNewRomanPdfFile","parameterTypes":[] }, {"name":"testParseBytes","parameterTypes":[] }, {"name":"testParseHttpUrl","parameterTypes":[] }, {"name":"testParseHttpsUrl","parameterTypes":[] }, {"name":"testParseUrl","parameterTypes":[] }, {"name":"testQuarkusOdtFile","parameterTypes":[] }, {"name":"testQuarkusPdfFile","parameterTypes":[] }, {"name":"testQuarkusTxtFile","parameterTypes":[] }, {"name":"testWordDocxFile","parameterTypes":[] }] -}, -{ - "name":"ai.yobix.TikaParseStringTest", - "allDeclaredFields":true, - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true, - "queryAllDeclaredConstructors":true, - "methods":[{"name":"","parameterTypes":[] }, {"name":"testAppleFilingPdf","parameterTypes":[] }, {"name":"testGetPlainTextFromInvoice","parameterTypes":[] }, {"name":"testGetTextFromPdfFormatWithFonts","parameterTypes":[] }, {"name":"testGetTextFromXlsFile","parameterTypes":[] }, {"name":"testHandbook1pDocxFile","parameterTypes":[] }, {"name":"testNoNewRomanPdfFile","parameterTypes":[] }, {"name":"testWordDocxFile","parameterTypes":[] }, {"name":"test_invalidPath","parameterTypes":[] }, {"name":"test_quarkusOdtFile","parameterTypes":[] }, {"name":"test_quarkusPdfFile","parameterTypes":[] }, {"name":"test_quarkusTxtFile","parameterTypes":[] }] -}, -{ - "name":"ai.yobix.TikaParseTest", - "allDeclaredFields":true, - "allDeclaredClasses":true, - "queryAllDeclaredMethods":true, - "queryAllPublicMethods":true, - "queryAllDeclaredConstructors":true, - "methods":[{"name":"","parameterTypes":[] }, {"name":"testAppleFilingPdf","parameterTypes":[] }, {"name":"testGetPlainTextFromInvoice","parameterTypes":[] }, {"name":"testGetTextFromPdfFormatWithFonts","parameterTypes":[] }, {"name":"testGetTextFromXlsFile","parameterTypes":[] }, {"name":"testHandbook1pDocxFile","parameterTypes":[] }, {"name":"testNoNewRomanPdfFile","parameterTypes":[] }, {"name":"testWordDocxFile","parameterTypes":[] }, {"name":"test_invalidPath","parameterTypes":[] }, {"name":"test_quarkusOdtFile","parameterTypes":[] }, {"name":"test_quarkusPdfFile","parameterTypes":[] }, {"name":"test_quarkusTxtFile","parameterTypes":[] }] -}, -{ - "name":"com.drew.metadata.exif.ExifIFD0Directory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.drew.metadata.exif.ExifSubIFDDirectory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.github.jaiimageio.impl.common.PackageUtil" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.bmp.BMPImageReaderSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.bmp.BMPImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.gif.GIFImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.pcx.PCXImageReaderSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.pcx.PCXImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.pnm.PNMImageReaderSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.pnm.PNMImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.raw.RawImageReaderSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.raw.RawImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.tiff.TIFFImageReaderSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.tiff.TIFFImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.wbmp.WBMPImageReaderSpi" -}, -{ - "name":"com.github.jaiimageio.impl.plugins.wbmp.WBMPImageWriterSpi" -}, -{ - "name":"com.github.jaiimageio.impl.stream.ChannelImageInputStreamSpi" -}, -{ - "name":"com.github.jaiimageio.impl.stream.ChannelImageOutputStreamSpi" -}, -{ - "name":"com.github.luben.zstd.ZstdInputStream" -}, -{ - "name":"com.ibm.icu.charset.CharsetICU" -}, -{ - "name":"com.sun.crypto.provider.AESCipher$General", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.ARCFOURCipher", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.ChaCha20Cipher$ChaCha20Poly1305", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.DESCipher", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.DESedeCipher", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.DHParameters", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.GaloisCounterMode$AESGCM", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.HmacCore$HmacSHA384", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"com.sun.crypto.provider.TlsMasterSecretGenerator", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"java.lang.Enum" -}, -{ - "name":"java.lang.String" -}, -{ - "name":"java.lang.Thread", - "fields":[{"name":"threadLocalRandomProbe"}] -}, -{ - "name":"java.lang.invoke.MethodHandle" -}, -{ - "name":"java.security.AlgorithmParametersSpi" -}, -{ - "name":"java.security.KeyStoreSpi" -}, -{ - "name":"java.security.MessageDigestSpi" -}, -{ - "name":"java.security.SecureRandomParameters" -}, -{ - "name":"java.security.interfaces.DSAPrivateKey" -}, -{ - "name":"java.security.interfaces.DSAPublicKey" -}, -{ - "name":"java.security.interfaces.ECPrivateKey" -}, -{ - "name":"java.security.interfaces.ECPublicKey" -}, -{ - "name":"java.security.interfaces.RSAPrivateKey" -}, -{ - "name":"java.security.interfaces.RSAPublicKey" -}, -{ - "name":"java.security.spec.DSAParameterSpec" -}, -{ - "name":"java.util.Date" -}, -{ - "name":"java.util.HashSet" -}, -{ - "name":"java.util.LinkedHashSet" -}, -{ - "name":"java.util.concurrent.ArrayBlockingQueue" -}, -{ - "name":"java.util.concurrent.ForkJoinTask", - "fields":[{"name":"aux"}, {"name":"status"}] -}, -{ - "name":"java.util.concurrent.atomic.AtomicBoolean", - "fields":[{"name":"value"}] -}, -{ - "name":"java.util.concurrent.atomic.AtomicReference", - "fields":[{"name":"value"}] -}, -{ - "name":"java.util.concurrent.atomic.Striped64", - "fields":[{"name":"base"}, {"name":"cellsBusy"}] -}, -{ - "name":"java.util.concurrent.locks.AbstractOwnableSynchronizer" -}, -{ - "name":"java.util.concurrent.locks.AbstractQueuedSynchronizer" -}, -{ - "name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject" -}, -{ - "name":"java.util.concurrent.locks.ReentrantLock" -}, -{ - "name":"java.util.concurrent.locks.ReentrantLock$NonfairSync" -}, -{ - "name":"java.util.concurrent.locks.ReentrantLock$Sync" -}, -{ - "name":"javax.imageio.spi.ImageReaderSpi" -}, -{ - "name":"javax.imageio.spi.ImageReaderWriterSpi", - "methods":[{"name":"getFileSuffixes","parameterTypes":[] }, {"name":"getFormatNames","parameterTypes":[] }, {"name":"getMIMETypes","parameterTypes":[] }] -}, -{ - "name":"javax.imageio.spi.ImageWriterSpi" -}, -{ - "name":"javax.security.auth.x500.X500Principal", - "fields":[{"name":"thisX500Name"}], - "methods":[{"name":"","parameterTypes":["sun.security.x509.X500Name"] }] -}, -{ - "name":"jdk.internal.misc.Unsafe" -}, -{ - "name":"org.apache.commons.logging.impl.Slf4jLogFactory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"org.apache.commons.logging.impl.WeakHashtable", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"org.apache.jempbox.xmp.XMPSchemaBasic", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.jempbox.xmp.XMPSchemaDublinCore", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.jempbox.xmp.XMPSchemaMediaManagement", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.jempbox.xmp.XMPSchemaPDF", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.jempbox.xmp.XMPSchemaPhotoshop", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.jempbox.xmp.XMPSchemaRightsManagement", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.logging.log4j.Logger" -}, -{ - "name":"org.apache.logging.log4j.internal.recycler.DummyRecyclerFactoryProvider" -}, -{ - "name":"org.apache.logging.log4j.internal.recycler.QueueingRecyclerFactoryProvider" -}, -{ - "name":"org.apache.logging.log4j.internal.recycler.ThreadLocalRecyclerFactoryProvider" -}, -{ - "name":"org.apache.logging.log4j.util.EnvironmentPropertySource" -}, -{ - "name":"org.apache.logging.log4j.util.LazyUtil$ReleaseAcquireLazy", - "fields":[{"name":"value"}] -}, -{ - "name":"org.apache.logging.log4j.util.SystemPropertiesPropertySource" -}, -{ - "name":"org.apache.logging.slf4j.SLF4JLoggerContextFactory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"org.apache.logging.slf4j.SLF4JProvider" -}, -{ - "name":"org.apache.pdfbox.jbig2.JBIG2ImageReaderSpi" -}, -{ - "name":"org.apache.pdfbox.pdmodel.encryption.StandardSecurityHandler", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationLink", - "methods":[{"name":"getAction","parameterTypes":[] }] -}, -{ - "name":"org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationMarkup", - "methods":[{"name":"getAction","parameterTypes":[] }] -}, -{ - "name":"org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationWidget", - "methods":[{"name":"getAction","parameterTypes":[] }] -}, -{ - "name":"org.apache.tika.detect.apple.BPListDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.apple.IWorkDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.gzip.GZipSpecializationDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.microsoft.POIFSContainerDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.microsoft.ooxml.OPCPackageDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.ole.MiscOLEDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.DefaultZipContainerDetector", - "methods":[{"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.FrictionlessPackageDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.IPADetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.JarDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.KMZDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.OpenDocumentDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.detect.zip.StarOfficeDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.metadata.Metadata", - "allPublicFields":true -}, -{ - "name":"org.apache.tika.metadata.TikaCoreProperties", - "allPublicFields":true -}, -{ - "name":"org.apache.tika.parser.apple.AppleSingleFileParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.apple.PListParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.audio.AudioParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.audio.MidiParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.crypto.Pkcs7Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.crypto.TSDParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.csv.TextAndCSVParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.dbf.DBFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.dgn.DGN8Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.dif.DIFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.dwg.DWGParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.epub.EpubParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.feed.FeedParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.font.AdobeFontMetricParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.font.TrueTypeParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.html.HtmlEncodingDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.html.HtmlParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.http.HttpParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.hwp.HwpV5Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.BPGParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.HeifParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.ICNSParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.ImageParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.JXLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.JpegParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.PSDParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.TiffParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.image.WebPParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.indesign.IDMLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.iptc.IptcAnpaParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.iwork.IWorkPackageParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.iwork.iwana.IWork13PackageParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.iwork.iwana.IWork18PackageParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.mail.RFC822Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.mbox.MboxParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.EMFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.JackcessParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.MSOwnerFileParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.OfficeParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.OldExcelParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.TNEFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.WMFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.activemime.ActiveMimeParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.chm.ChmParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.onenote.OneNoteParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.ooxml.OOXMLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.ooxml.xwpf.ml2006.Word2006MLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.pst.OutlookPSTParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.rtf.RTFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.xml.SpreadsheetMLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.microsoft.xml.WordMLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.mif.MIFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.mp3.Mp3Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.mp4.MP4Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.ocr.TesseractOCRConfig", - "allDeclaredFields":true -}, -{ - "name":"org.apache.tika.parser.ocr.TesseractOCRParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.odf.FlatOpenDocumentParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.odf.OpenDocumentParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.pdf.PDFParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.pdf.PDFParserConfig", - "allDeclaredFields":true -}, -{ - "name":"org.apache.tika.parser.pdf.xmpschemas.XMPSchemaPDFX", - "methods":[{"name":"","parameterTypes":["org.w3c.dom.Element","java.lang.String"] }] -}, -{ - "name":"org.apache.tika.parser.pkg.CompressorParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.pkg.PackageParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.pkg.RarParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.prt.PRTParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.tmx.TMXParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.txt.Icu4jEncodingDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.txt.UniversalEncodingDetector", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.video.FLVParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.wacz.WACZParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.warc.WARCParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.wordperfect.QuattroProParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.wordperfect.WordPerfectParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.xliff.XLIFF12Parser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.xliff.XLZParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.xml.DcXMLParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.tika.parser.xml.FictionBookParser", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["org.apache.tika.config.ServiceLoader"] }] -}, -{ - "name":"org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"org.apache.xerces.jaxp.DocumentBuilderFactoryImpl" -}, -{ - "name":"org.apache.xerces.jaxp.SAXParserFactoryImpl" -}, -{ - "name":"org.apache.xerces.parsers.XIncludeAwareParserConfiguration", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"org.apache.xerces.util.SecurityManager", - "methods":[{"name":"","parameterTypes":[] }, {"name":"setEntityExpansionLimit","parameterTypes":["int"] }] -}, -{ - "name":"org.apache.xmlbeans.metadata.system.sXMLCONFIG.TypeSystemHolder", - "fields":[{"name":"typeSystem"}] -}, -{ - "name":"org.apache.xmlbeans.metadata.system.sXMLLANG.TypeSystemHolder", - "fields":[{"name":"typeSystem"}] -}, -{ - "name":"org.apache.xmlbeans.metadata.system.sXMLSCHEMA.TypeSystemHolder", - "fields":[{"name":"typeSystem"}] -}, -{ - "name":"org.apache.xmlbeans.metadata.system.sXMLTOOLS.TypeSystemHolder", - "fields":[{"name":"typeSystem"}] -}, -{ - "name":"org.brotli.dec.BrotliInputStream" -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps" -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTBlipFillPropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTBlipImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGraphicalObjectDataImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGraphicalObjectImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGroupShapePropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTHyperlinkImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTNonVisualDrawingPropsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTNonVisualDrawingShapePropsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTOfficeStyleSheetImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTOuterShadowEffectImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTRegularTextRunImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTShapePropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableCellImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableRowImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableStyleImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableStyleListImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextBodyImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextCharacterPropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextFieldImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextLineBreakImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextParagraphImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextParagraphPropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.STDrawingElementIdImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.TblStyleLstDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.main.impl.ThemeDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.picture.CTPicture" -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.picture.impl.CTPictureImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.picture.impl.CTPictureNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTAnchorClientDataImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTDrawingImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTMarkerImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTPictureImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTShapeImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTShapeNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTTwoCellAnchorImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.drawingml.x2006.wordprocessingDrawing.impl.CTInlineImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl.CTPropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl.CTPropertyImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl.PropertiesDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.impl.CTPropertiesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.impl.PropertiesDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.relationships.impl.STRelationshipIdImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.impl.STOnOffImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.impl.STStringImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.impl.STXstringImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape" -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType$Enum", - "fields":[{"name":"table"}] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTApplicationNonVisualDrawingPropsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTCommentAuthorListImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTCommonSlideDataImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTConnectorImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTConnectorNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGraphicalObjectFrameImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGraphicalObjectFrameNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGroupShapeImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGroupShapeNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTNotesMasterImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTNotesSlideImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPictureImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPictureNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPlaceholderImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPresentationImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTShapeImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTShapeNonVisualImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideIdListEntryImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideIdListImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideLayoutImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideMasterIdListEntryImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideMasterIdListImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideMasterImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.CmAuthorLstDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.NotesDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.NotesMasterDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.PresentationDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.STPlaceholderTypeImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.SldDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.SldLayoutDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.presentationml.x2006.main.impl.SldMasterDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTBorderImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTBordersImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTCellStyleXfsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTCellXfsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTColorsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTDxfsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFillImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFillsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFontImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFontsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTIndexedColorsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTNumFmtImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTNumFmtsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTRgbColorImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTRstImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTStylesheetImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTTableStylesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTXfImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.STCellStyleXfIdImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.STNumFmtIdImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.STUnsignedIntHexImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.StyleSheetDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.CTNumLvl" -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.STFldCharType$Enum", - "fields":[{"name":"table"}] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.STHdrFtr$Enum", - "fields":[{"name":"table"}] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.STNumberFormat$Enum", - "fields":[{"name":"table"}] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.STUnderline$Enum", - "fields":[{"name":"table"}] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTAbstractNumImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBodyImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBookmarkImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDecimalNumberImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDocDefaultsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDocument1Impl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDrawingImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTEmptyImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTEndnotesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFldCharImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFootnotesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFtnEdnImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFtnEdnRefImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTHdrFtrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTHdrFtrRefImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTHyperlinkImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTLatentStylesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTLevelTextImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTLvlImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTMarkupRangeImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumFmtImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumPrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumberingImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTOnOffImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPPrDefaultImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPPrGeneralImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPPrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTProofErrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRPrDefaultImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRPrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRowImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTSectPrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTSettingsImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTStringImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTStyleImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTStylesImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTblImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTcImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTcPrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTextImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTrPrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTUnderlineImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.DocumentDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.EndnotesDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.FootnotesDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.FtrDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.HdrDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.NumberingDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STDecimalNumberImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STFldCharTypeImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STHdrFtrImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STNumberFormatImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STUnderlineImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.SettingsDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.StylesDocumentImpl", - "methods":[{"name":"","parameterTypes":["org.apache.xmlbeans.SchemaType"] }] -}, -{ - "name":"org.slf4j.helpers.Log4jLoggerFactory" -}, -{ - "name":"org.slf4j.nop.NOPServiceProvider" -}, -{ - "name":"schemaorg_apache_xmlbeans.system.sXMLCONFIG.TypeSystemHolder" -}, -{ - "name":"schemaorg_apache_xmlbeans.system.sXMLLANG.TypeSystemHolder" -}, -{ - "name":"schemaorg_apache_xmlbeans.system.sXMLSCHEMA.TypeSystemHolder" -}, -{ - "name":"schemaorg_apache_xmlbeans.system.sXMLTOOLS.TypeSystemHolder" -}, -{ - "name":"sun.java2d.cmm.kcms.KcmsServiceProvider" -}, -{ - "name":"sun.java2d.loops.OpaqueCopyAnyToArgb", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.OpaqueCopyArgbToAny", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetDrawLineANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetDrawPathANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetDrawPolygonsANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetDrawRectANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetFillPathANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetFillRectANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.loops.SetFillSpansANY", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.java2d.marlin.DMarlinRenderingEngine", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.pkcs12.PKCS12KeyStore", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.pkcs12.PKCS12KeyStore$DualFormatPKCS12", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.DSA$SHA224withDSA", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.DSA$SHA256withDSA", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.DSAKeyFactory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.DSAParameters", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.JavaKeyStore$DualFormatJKS", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.JavaKeyStore$JKS", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.MD5", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.NativePRNG", - "methods":[{"name":"","parameterTypes":[] }, {"name":"","parameterTypes":["java.security.SecureRandomParameters"] }] -}, -{ - "name":"sun.security.provider.SHA", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.SHA2$SHA224", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.SHA2$SHA256", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.SHA5$SHA384", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.SHA5$SHA512", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.X509Factory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.provider.certpath.PKIXCertPathValidator", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.rsa.PSSParameters", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.rsa.RSAKeyFactory$Legacy", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.rsa.RSAPSSSignature", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.rsa.RSASignature$SHA224withRSA", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.rsa.RSASignature$SHA256withRSA", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.rsa.RSASignature$SHA384withRSA", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.ssl.KeyManagerFactoryImpl$SunX509", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.ssl.SSLContextImpl$DefaultSSLContext", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.ssl.TrustManagerFactoryImpl$PKIXFactory", - "methods":[{"name":"","parameterTypes":[] }] -}, -{ - "name":"sun.security.util.ObjectIdentifier" -}, -{ - "name":"sun.security.x509.AuthorityInfoAccessExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.AuthorityKeyIdentifierExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.BasicConstraintsExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.CRLDistributionPointsExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.CertificateExtensions" -}, -{ - "name":"sun.security.x509.CertificatePoliciesExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.ExtendedKeyUsageExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.IssuerAlternativeNameExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.KeyUsageExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.NetscapeCertTypeExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.PrivateKeyUsageExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.SubjectAlternativeNameExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -}, -{ - "name":"sun.security.x509.SubjectKeyIdentifierExtension", - "methods":[{"name":"","parameterTypes":["java.lang.Boolean","java.lang.Object"] }] -} + { + "name": "[B" + }, + { + "name": "[Ljava.lang.Object;" + }, + { + "name": "[Ljava.lang.String;" + }, + { + "name": "[Lorg.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps;" + }, + { + "name": "[Lorg.openxmlformats.schemas.drawingml.x2006.picture.CTPicture;" + }, + { + "name": "[Lorg.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape;" + }, + { + "name": "[Lsun.security.pkcs.SignerInfo;" + }, + { + "allDeclaredClasses": true, + "name": "ai.yobix.TestFiles", + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "allDeclaredClasses": true, + "name": "ai.yobix.TestUtils", + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "allDeclaredClasses": true, + "allDeclaredFields": true, + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "test_parseAllTestDocs", + "parameterTypes": [] + } + ], + "name": "ai.yobix.TikaAllDocsTest", + "queryAllDeclaredConstructors": true, + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "allDeclaredClasses": true, + "allDeclaredFields": true, + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "test_detectDocxFile", + "parameterTypes": [] + }, + { + "name": "test_detectOdtFile", + "parameterTypes": [] + }, + { + "name": "test_detectPdfFile", + "parameterTypes": [] + }, + { + "name": "test_detectTxtFile", + "parameterTypes": [] + }, + { + "name": "test_detectXlsFile", + "parameterTypes": [] + } + ], + "name": "ai.yobix.TikaDetectTest", + "queryAllDeclaredConstructors": true, + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "allDeclaredClasses": true, + "allDeclaredFields": true, + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "testAppleFilingPdf", + "parameterTypes": [] + }, + { + "name": "testGetPlainTextFromInvoice", + "parameterTypes": [] + }, + { + "name": "testGetTextFromPdfFormatWithFonts", + "parameterTypes": [] + }, + { + "name": "testGetTextFromXlsFile", + "parameterTypes": [] + }, + { + "name": "testHandbook1pDocxFile", + "parameterTypes": [] + }, + { + "name": "testInvalidPath", + "parameterTypes": [] + }, + { + "name": "testNoNewRomanPdfFile", + "parameterTypes": [] + }, + { + "name": "testParseBytes", + "parameterTypes": [] + }, + { + "name": "testParseHttpUrl", + "parameterTypes": [] + }, + { + "name": "testParseHttpsUrl", + "parameterTypes": [] + }, + { + "name": "testParseUrl", + "parameterTypes": [] + }, + { + "name": "testQuarkusOdtFile", + "parameterTypes": [] + }, + { + "name": "testQuarkusPdfFile", + "parameterTypes": [] + }, + { + "name": "testQuarkusTxtFile", + "parameterTypes": [] + }, + { + "name": "testWordDocxFile", + "parameterTypes": [] + } + ], + "name": "ai.yobix.TikaParseReaderTest", + "queryAllDeclaredConstructors": true, + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "allDeclaredClasses": true, + "allDeclaredFields": true, + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "testAppleFilingPdf", + "parameterTypes": [] + }, + { + "name": "testGetPlainTextFromInvoice", + "parameterTypes": [] + }, + { + "name": "testGetTextFromPdfFormatWithFonts", + "parameterTypes": [] + }, + { + "name": "testGetTextFromXlsFile", + "parameterTypes": [] + }, + { + "name": "testHandbook1pDocxFile", + "parameterTypes": [] + }, + { + "name": "testImageFile", + "parameterTypes": [] + }, + { + "name": "testNoNewRomanPdfFile", + "parameterTypes": [] + }, + { + "name": "testWordDocxFile", + "parameterTypes": [] + }, + { + "name": "test_invalidPath", + "parameterTypes": [] + }, + { + "name": "test_quarkusOdtFile", + "parameterTypes": [] + }, + { + "name": "test_quarkusPdfFile", + "parameterTypes": [] + }, + { + "name": "test_quarkusTxtFile", + "parameterTypes": [] + } + ], + "name": "ai.yobix.TikaParseStringTest", + "queryAllDeclaredConstructors": true, + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "allDeclaredClasses": true, + "allDeclaredFields": true, + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "testAppleFilingPdf", + "parameterTypes": [] + }, + { + "name": "testGetPlainTextFromInvoice", + "parameterTypes": [] + }, + { + "name": "testGetTextFromPdfFormatWithFonts", + "parameterTypes": [] + }, + { + "name": "testGetTextFromXlsFile", + "parameterTypes": [] + }, + { + "name": "testHandbook1pDocxFile", + "parameterTypes": [] + }, + { + "name": "testNoNewRomanPdfFile", + "parameterTypes": [] + }, + { + "name": "testWordDocxFile", + "parameterTypes": [] + }, + { + "name": "test_invalidPath", + "parameterTypes": [] + }, + { + "name": "test_quarkusOdtFile", + "parameterTypes": [] + }, + { + "name": "test_quarkusPdfFile", + "parameterTypes": [] + }, + { + "name": "test_quarkusTxtFile", + "parameterTypes": [] + } + ], + "name": "ai.yobix.TikaParseTest", + "queryAllDeclaredConstructors": true, + "queryAllDeclaredMethods": true, + "queryAllPublicMethods": true + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.drew.metadata.exif.ExifIFD0Directory" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.drew.metadata.exif.ExifSubIFDDirectory" + }, + { + "name": "com.github.jaiimageio.impl.common.PackageUtil" + }, + { + "name": "com.github.jaiimageio.impl.plugins.bmp.BMPImageReaderSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.bmp.BMPImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.gif.GIFImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.pcx.PCXImageReaderSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.pcx.PCXImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.pnm.PNMImageReaderSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.pnm.PNMImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.raw.RawImageReaderSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.raw.RawImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.tiff.TIFFImageReaderSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.tiff.TIFFImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.wbmp.WBMPImageReaderSpi" + }, + { + "name": "com.github.jaiimageio.impl.plugins.wbmp.WBMPImageWriterSpi" + }, + { + "name": "com.github.jaiimageio.impl.stream.ChannelImageInputStreamSpi" + }, + { + "name": "com.github.jaiimageio.impl.stream.ChannelImageOutputStreamSpi" + }, + { + "name": "com.github.luben.zstd.ZstdInputStream" + }, + { + "name": "com.ibm.icu.charset.CharsetICU" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.AESCipher$General" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.ARCFOURCipher" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.ChaCha20Cipher$ChaCha20Poly1305" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.DESCipher" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.DESedeCipher" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.DHParameters" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.GaloisCounterMode$AESGCM" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.HmacCore$HmacSHA256" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.HmacCore$HmacSHA384" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "com.sun.crypto.provider.TlsMasterSecretGenerator" + }, + { + "name": "java.lang.Enum" + }, + { + "name": "java.lang.NullPointerException", + "queryAllDeclaredMethods": true + }, + { + "name": "java.lang.String" + }, + { + "fields": [ + { + "name": "threadLocalRandomProbe" + } + ], + "name": "java.lang.Thread" + }, + { + "name": "java.lang.invoke.MethodHandle" + }, + { + "name": "java.security.AlgorithmParametersSpi" + }, + { + "name": "java.security.KeyStoreSpi" + }, + { + "name": "java.security.MessageDigestSpi" + }, + { + "name": "java.security.SecureRandomParameters" + }, + { + "name": "java.security.interfaces.DSAPrivateKey" + }, + { + "name": "java.security.interfaces.DSAPublicKey" + }, + { + "name": "java.security.interfaces.ECPrivateKey" + }, + { + "name": "java.security.interfaces.ECPublicKey" + }, + { + "name": "java.security.interfaces.RSAPrivateKey" + }, + { + "name": "java.security.interfaces.RSAPublicKey" + }, + { + "name": "java.security.spec.DSAParameterSpec" + }, + { + "name": "java.util.Date" + }, + { + "name": "java.util.HashSet" + }, + { + "name": "java.util.LinkedHashSet" + }, + { + "name": "java.util.concurrent.ArrayBlockingQueue" + }, + { + "fields": [ + { + "name": "aux" + }, + { + "name": "status" + } + ], + "name": "java.util.concurrent.ForkJoinTask" + }, + { + "fields": [ + { + "name": "value" + } + ], + "name": "java.util.concurrent.atomic.AtomicBoolean" + }, + { + "fields": [ + { + "name": "value" + } + ], + "name": "java.util.concurrent.atomic.AtomicReference" + }, + { + "fields": [ + { + "name": "base" + }, + { + "name": "cellsBusy" + } + ], + "name": "java.util.concurrent.atomic.Striped64" + }, + { + "name": "java.util.concurrent.locks.AbstractOwnableSynchronizer" + }, + { + "name": "java.util.concurrent.locks.AbstractQueuedSynchronizer" + }, + { + "name": "java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject" + }, + { + "name": "java.util.concurrent.locks.ReentrantLock" + }, + { + "name": "java.util.concurrent.locks.ReentrantLock$NonfairSync" + }, + { + "name": "java.util.concurrent.locks.ReentrantLock$Sync" + }, + { + "name": "javax.imageio.spi.ImageReaderSpi" + }, + { + "methods": [ + { + "name": "getFileSuffixes", + "parameterTypes": [] + }, + { + "name": "getFormatNames", + "parameterTypes": [] + }, + { + "name": "getMIMETypes", + "parameterTypes": [] + } + ], + "name": "javax.imageio.spi.ImageReaderWriterSpi" + }, + { + "name": "javax.imageio.spi.ImageWriterSpi" + }, + { + "fields": [ + { + "name": "thisX500Name" + } + ], + "methods": [ + { + "name": "", + "parameterTypes": [ + "sun.security.x509.X500Name" + ] + } + ], + "name": "javax.security.auth.x500.X500Principal" + }, + { + "name": "jdk.internal.misc.Unsafe" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "org.apache.commons.logging.impl.Slf4jLogFactory" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "org.apache.commons.logging.impl.WeakHashtable" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.jempbox.xmp.XMPSchemaBasic" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.jempbox.xmp.XMPSchemaDublinCore" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.jempbox.xmp.XMPSchemaMediaManagement" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.jempbox.xmp.XMPSchemaPDF" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.jempbox.xmp.XMPSchemaPhotoshop" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.jempbox.xmp.XMPSchemaRightsManagement" + }, + { + "name": "org.apache.logging.log4j.Logger" + }, + { + "name": "org.apache.logging.log4j.internal.recycler.DummyRecyclerFactoryProvider" + }, + { + "name": "org.apache.logging.log4j.internal.recycler.QueueingRecyclerFactoryProvider" + }, + { + "name": "org.apache.logging.log4j.internal.recycler.ThreadLocalRecyclerFactoryProvider" + }, + { + "name": "org.apache.logging.log4j.util.EnvironmentPropertySource" + }, + { + "fields": [ + { + "name": "value" + } + ], + "name": "org.apache.logging.log4j.util.LazyUtil$ReleaseAcquireLazy" + }, + { + "name": "org.apache.logging.log4j.util.SystemPropertiesPropertySource" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "org.apache.logging.slf4j.SLF4JLoggerContextFactory" + }, + { + "name": "org.apache.logging.slf4j.SLF4JProvider" + }, + { + "name": "org.apache.pdfbox.jbig2.JBIG2ImageReaderSpi" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "org.apache.pdfbox.pdmodel.encryption.StandardSecurityHandler" + }, + { + "methods": [ + { + "name": "getAction", + "parameterTypes": [] + } + ], + "name": "org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationLink" + }, + { + "methods": [ + { + "name": "getAction", + "parameterTypes": [] + } + ], + "name": "org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationMarkup" + }, + { + "methods": [ + { + "name": "getAction", + "parameterTypes": [] + } + ], + "name": "org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationWidget" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.apple.BPListDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.apple.IWorkDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.gzip.GZipSpecializationDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.microsoft.POIFSContainerDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.microsoft.ooxml.OPCPackageDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.ole.MiscOLEDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.DefaultZipContainerDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.FrictionlessPackageDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.IPADetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.JarDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.KMZDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.OpenDocumentDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.detect.zip.StarOfficeDetector" + }, + { + "allPublicFields": true, + "name": "org.apache.tika.metadata.Metadata" + }, + { + "allPublicFields": true, + "name": "org.apache.tika.metadata.TikaCoreProperties" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.apple.AppleSingleFileParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.apple.PListParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.audio.AudioParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.audio.MidiParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.crypto.Pkcs7Parser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.crypto.TSDParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.csv.TextAndCSVParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.dbf.DBFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.dgn.DGN8Parser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.dif.DIFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.dwg.DWGParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.epub.EpubParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.feed.FeedParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.font.AdobeFontMetricParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.font.TrueTypeParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.html.HtmlEncodingDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.html.HtmlParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.http.HttpParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.hwp.HwpV5Parser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.BPGParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.HeifParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.ICNSParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.ImageParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.JXLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.JpegParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.PSDParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.TiffParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.image.WebPParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.indesign.IDMLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.iptc.IptcAnpaParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.iwork.IWorkPackageParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.iwork.iwana.IWork13PackageParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.iwork.iwana.IWork18PackageParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.mail.RFC822Parser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.mbox.MboxParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.EMFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.JackcessParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.MSOwnerFileParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.OfficeParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.OldExcelParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.TNEFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.WMFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.activemime.ActiveMimeParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.chm.ChmParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.onenote.OneNoteParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.ooxml.OOXMLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.ooxml.xwpf.ml2006.Word2006MLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.pst.OutlookPSTParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.rtf.RTFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.xml.SpreadsheetMLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.microsoft.xml.WordMLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.mif.MIFParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.mp3.Mp3Parser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.mp4.MP4Parser" + }, + { + "allDeclaredFields": true, + "name": "org.apache.tika.parser.ocr.TesseractOCRConfig" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.ocr.TesseractOCRParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.odf.FlatOpenDocumentParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.odf.OpenDocumentParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.pdf.PDFParser" + }, + { + "allDeclaredFields": true, + "name": "org.apache.tika.parser.pdf.PDFParserConfig" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.w3c.dom.Element", + "java.lang.String" + ] + } + ], + "name": "org.apache.tika.parser.pdf.xmpschemas.XMPSchemaPDFX" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.pkg.CompressorParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.pkg.PackageParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.pkg.RarParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.prt.PRTParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.tmx.TMXParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.txt.Icu4jEncodingDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.txt.UniversalEncodingDetector" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.video.FLVParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.wacz.WACZParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.warc.WARCParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.wordperfect.QuattroProParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.wordperfect.WordPerfectParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.xliff.XLIFF12Parser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.xliff.XLZParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.xml.DcXMLParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "org.apache.tika.config.ServiceLoader" + ] + } + ], + "name": "org.apache.tika.parser.xml.FictionBookParser" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl" + }, + { + "name": "org.apache.xerces.jaxp.DocumentBuilderFactoryImpl" + }, + { + "name": "org.apache.xerces.jaxp.SAXParserFactoryImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "org.apache.xerces.parsers.XIncludeAwareParserConfiguration" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "setEntityExpansionLimit", + "parameterTypes": [ + "int" + ] + } + ], + "name": "org.apache.xerces.util.SecurityManager" + }, + { + "fields": [ + { + "name": "typeSystem" + } + ], + "name": "org.apache.xmlbeans.metadata.system.sXMLCONFIG.TypeSystemHolder" + }, + { + "fields": [ + { + "name": "typeSystem" + } + ], + "name": "org.apache.xmlbeans.metadata.system.sXMLLANG.TypeSystemHolder" + }, + { + "fields": [ + { + "name": "typeSystem" + } + ], + "name": "org.apache.xmlbeans.metadata.system.sXMLSCHEMA.TypeSystemHolder" + }, + { + "fields": [ + { + "name": "typeSystem" + } + ], + "name": "org.apache.xmlbeans.metadata.system.sXMLTOOLS.TypeSystemHolder" + }, + { + "name": "org.brotli.dec.BrotliInputStream" + }, + { + "methods": [ + { + "name": "getActual", + "parameterTypes": [] + }, + { + "name": "getExpected", + "parameterTypes": [] + } + ], + "name": "org.opentest4j.AssertionFailedError", + "queryAllDeclaredMethods": true + }, + { + "methods": [ + { + "name": "getValue", + "parameterTypes": [] + } + ], + "name": "org.opentest4j.ValueWrapper" + }, + { + "name": "org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTBlipFillPropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTBlipImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGraphicalObjectDataImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGraphicalObjectImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGroupShapePropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTHyperlinkImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTNonVisualDrawingPropsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTNonVisualDrawingShapePropsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTOfficeStyleSheetImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTOuterShadowEffectImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTRegularTextRunImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTShapePropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableCellImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableRowImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableStyleImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTableStyleListImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextBodyImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextCharacterPropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextFieldImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextLineBreakImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextParagraphImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextParagraphPropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.STDrawingElementIdImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.TblStyleLstDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.main.impl.ThemeDocumentImpl" + }, + { + "name": "org.openxmlformats.schemas.drawingml.x2006.picture.CTPicture" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.picture.impl.CTPictureImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.picture.impl.CTPictureNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTAnchorClientDataImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTDrawingImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTMarkerImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTPictureImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTShapeImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTShapeNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.impl.CTTwoCellAnchorImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.drawingml.x2006.wordprocessingDrawing.impl.CTInlineImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl.CTPropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl.CTPropertyImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.customProperties.impl.PropertiesDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.impl.CTPropertiesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.extendedProperties.impl.PropertiesDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.relationships.impl.STRelationshipIdImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.impl.STOnOffImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.impl.STStringImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.impl.STXstringImpl" + }, + { + "name": "org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape" + }, + { + "fields": [ + { + "name": "table" + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType$Enum" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTApplicationNonVisualDrawingPropsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTCommentAuthorListImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTCommonSlideDataImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTConnectorImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTConnectorNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGraphicalObjectFrameImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGraphicalObjectFrameNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGroupShapeImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTGroupShapeNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTNotesMasterImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTNotesSlideImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPictureImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPictureNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPlaceholderImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTPresentationImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTShapeImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTShapeNonVisualImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideIdListEntryImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideIdListImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideLayoutImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideMasterIdListEntryImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideMasterIdListImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CTSlideMasterImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.CmAuthorLstDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.NotesDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.NotesMasterDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.PresentationDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.STPlaceholderTypeImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.SldDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.SldLayoutDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.presentationml.x2006.main.impl.SldMasterDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTBorderImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTBordersImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTCellStyleXfsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTCellXfsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTColorsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTDxfsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFillImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFillsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFontImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTFontsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTIndexedColorsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTNumFmtImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTNumFmtsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTRgbColorImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTRstImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTStylesheetImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTTableStylesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTXfImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.STCellStyleXfIdImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.STNumFmtIdImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.STUnsignedIntHexImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.StyleSheetDocumentImpl" + }, + { + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.CTNumLvl" + }, + { + "fields": [ + { + "name": "table" + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.STFldCharType$Enum" + }, + { + "fields": [ + { + "name": "table" + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.STHdrFtr$Enum" + }, + { + "fields": [ + { + "name": "table" + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.STNumberFormat$Enum" + }, + { + "fields": [ + { + "name": "table" + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.STUnderline$Enum" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTAbstractNumImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBodyImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBookmarkImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTBrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDecimalNumberImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDocDefaultsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDocument1Impl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTDrawingImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTEmptyImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTEndnotesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFldCharImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFootnotesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFtnEdnImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTFtnEdnRefImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTHdrFtrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTHdrFtrRefImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTHyperlinkImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTLatentStylesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTLevelTextImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTLvlImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTMarkupRangeImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumFmtImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumPrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTNumberingImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTOnOffImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPPrDefaultImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPPrGeneralImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTPPrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTProofErrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRPrDefaultImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRPrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTRowImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTSectPrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTSettingsImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTStringImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTStyleImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTStylesImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTblImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTcImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTcPrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTextImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTrPrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTUnderlineImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.DocumentDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.EndnotesDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.FootnotesDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.FtrDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.HdrDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.NumberingDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STDecimalNumberImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STFldCharTypeImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STHdrFtrImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STNumberFormatImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.STUnderlineImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.SettingsDocumentImpl" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "org.apache.xmlbeans.SchemaType" + ] + } + ], + "name": "org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.StylesDocumentImpl" + }, + { + "name": "org.slf4j.helpers.Log4jLoggerFactory" + }, + { + "name": "org.slf4j.nop.NOPServiceProvider" + }, + { + "name": "schemaorg_apache_xmlbeans.system.sXMLCONFIG.TypeSystemHolder" + }, + { + "name": "schemaorg_apache_xmlbeans.system.sXMLLANG.TypeSystemHolder" + }, + { + "name": "schemaorg_apache_xmlbeans.system.sXMLSCHEMA.TypeSystemHolder" + }, + { + "name": "schemaorg_apache_xmlbeans.system.sXMLTOOLS.TypeSystemHolder" + }, + { + "name": "sun.java2d.cmm.kcms.KcmsServiceProvider" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.OpaqueCopyAnyToArgb" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.OpaqueCopyArgbToAny" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetDrawLineANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetDrawPathANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetDrawPolygonsANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetDrawRectANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetFillPathANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetFillRectANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.loops.SetFillSpansANY" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.java2d.marlin.DMarlinRenderingEngine" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.pkcs12.PKCS12KeyStore" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.pkcs12.PKCS12KeyStore$DualFormatPKCS12" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.security.SecureRandomParameters" + ] + } + ], + "name": "sun.security.provider.DRBG" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.DSA$SHA224withDSA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.DSA$SHA256withDSA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.DSAKeyFactory" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.DSAParameters" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.JavaKeyStore$DualFormatJKS" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.JavaKeyStore$JKS" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.MD5" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + }, + { + "name": "", + "parameterTypes": [ + "java.security.SecureRandomParameters" + ] + } + ], + "name": "sun.security.provider.NativePRNG" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.SHA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.SHA2$SHA224" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.SHA2$SHA256" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.SHA5$SHA384" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.SHA5$SHA512" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.X509Factory" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.provider.certpath.PKIXCertPathValidator" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.rsa.PSSParameters" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.rsa.RSAKeyFactory$Legacy" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.rsa.RSAPSSSignature" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.rsa.RSASignature$SHA224withRSA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.rsa.RSASignature$SHA256withRSA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.rsa.RSASignature$SHA384withRSA" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.ssl.KeyManagerFactoryImpl$SunX509" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.ssl.SSLContextImpl$DefaultSSLContext" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [] + } + ], + "name": "sun.security.ssl.TrustManagerFactoryImpl$PKIXFactory" + }, + { + "name": "sun.security.util.ObjectIdentifier" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.AuthorityInfoAccessExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.AuthorityKeyIdentifierExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.BasicConstraintsExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.CRLDistributionPointsExtension" + }, + { + "name": "sun.security.x509.CertificateExtensions" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.CertificatePoliciesExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.ExtendedKeyUsageExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.IssuerAlternativeNameExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.KeyUsageExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.NetscapeCertTypeExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.PrivateKeyUsageExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.SubjectAlternativeNameExtension" + }, + { + "methods": [ + { + "name": "", + "parameterTypes": [ + "java.lang.Boolean", + "java.lang.Object" + ] + } + ], + "name": "sun.security.x509.SubjectKeyIdentifierExtension" + } ] \ No newline at end of file diff --git a/extractous-core/tika-native/src/main/resources/META-INF/native-image/resource-config.json b/extractous-core/tika-native/src/main/resources/META-INF/native-image/resource-config.json index bde5181..0c052c0 100644 --- a/extractous-core/tika-native/src/main/resources/META-INF/native-image/resource-config.json +++ b/extractous-core/tika-native/src/main/resources/META-INF/native-image/resource-config.json @@ -1,555 +1,853 @@ { - "resources":{ - "includes":[{ - "pattern":"\\Q2022_Q3_AAPL.pdf\\E" - }, { - "pattern":"\\QMETA-INF/log4j-provider.properties\\E" - }, { - "pattern":"\\QMETA-INF/services/java.lang.System$LoggerFinder\\E" - }, { - "pattern":"\\QMETA-INF/services/java.net.spi.InetAddressResolverProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/java.net.spi.URLStreamHandlerProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/java.nio.channels.spi.SelectorProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/java.nio.charset.spi.CharsetProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/java.time.zone.ZoneRulesProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/java.util.spi.ResourceBundleControlProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.imageio.spi.ImageInputStreamSpi\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.imageio.spi.ImageOutputStreamSpi\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.imageio.spi.ImageReaderSpi\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.imageio.spi.ImageTranscoderSpi\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.imageio.spi.ImageWriterSpi\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.xml.parsers.DocumentBuilderFactory\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.xml.parsers.SAXParserFactory\\E" - }, { - "pattern":"\\QMETA-INF/services/javax.xml.xpath.XPathFactory\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.commons.logging.LogFactory\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.logging.log4j.spi.Provider\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.logging.log4j.spi.recycler.RecyclerFactoryProvider\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.logging.log4j.util.PropertySource\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.tika.detect.Detector\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.tika.detect.EncodingDetector\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.tika.detect.zip.ZipContainerDetector\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.tika.parser.Parser\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.tika.renderer.Renderer\\E" - }, { - "pattern":"\\QMETA-INF/services/org.apache.xerces.xni.parser.XMLParserConfiguration\\E" - }, { - "pattern":"\\QMETA-INF/services/org.junit.platform.engine.TestEngine\\E" - }, { - "pattern":"\\QMETA-INF/services/org.junit.platform.launcher.LauncherDiscoveryListener\\E" - }, { - "pattern":"\\QMETA-INF/services/org.junit.platform.launcher.LauncherSessionListener\\E" - }, { - "pattern":"\\QMETA-INF/services/org.junit.platform.launcher.PostDiscoveryFilter\\E" - }, { - "pattern":"\\QMETA-INF/services/org.junit.platform.launcher.TestExecutionListener\\E" - }, { - "pattern":"\\QMETA-INF/services/org.slf4j.spi.SLF4JServiceProvider\\E" - }, { - "pattern":"\\Qamericanexpress.pdf\\E" - }, { - "pattern":"\\Qcommons-logging.properties\\E" - }, { - "pattern":"\\Qhandbook-1p.docx\\E" - }, { - "pattern":"\\Qinvoice.pdf\\E" - }, { - "pattern":"\\Qjunit-platform.properties\\E" - }, { - "pattern":"\\Qlog4j2.StatusLogger.json\\E" - }, { - "pattern":"\\Qlog4j2.StatusLogger.properties\\E" - }, { - "pattern":"\\Qlog4j2.component.json\\E" - }, { - "pattern":"\\Qlog4j2.component.properties\\E" - }, { - "pattern":"\\Qlog4j2.propertyMapping.json\\E" - }, { - "pattern":"\\Qlog4j2.system.properties\\E" - }, { - "pattern":"\\Qno-new-roman.pdf\\E" - }, { - "pattern":"\\Qorg/apache/fontbox/cmap/Adobe-Korea1-0\\E" - }, { - "pattern":"\\Qorg/apache/fontbox/cmap/Adobe-Korea1-2\\E" - }, { - "pattern":"\\Qorg/apache/fontbox/cmap/Adobe-Korea1-UCS2\\E" - }, { - "pattern":"\\Qorg/apache/fontbox/cmap/Identity-H\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Courier-Bold.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Courier-BoldOblique.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Courier-Oblique.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Courier.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Helvetica-Bold.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Helvetica-BoldOblique.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Helvetica-Oblique.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Helvetica.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Symbol.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Times-Bold.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Times-BoldItalic.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Times-Italic.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/Times-Roman.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/afm/ZapfDingbats.afm\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/glyphlist/additional.txt\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/glyphlist/glyphlist.txt\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/glyphlist/zapfdingbats.txt\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/text/BidiMirroring.txt\\E" - }, { - "pattern":"\\Qorg/apache/pdfbox/resources/ttf/LiberationSans-Regular.ttf\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cmauthorlst86abdoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctabstractnum588etype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctanchorclientdata02betype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctapplicationnonvisualdrawingprops2fb6type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctblip034ctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctblipfillproperties0382type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctbody0f06type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctbookmarkd672type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctborderf935type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctborders0d66type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctbr7dd8type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcellstylexfsa81ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcellxfs1322type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcolors6579type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcommentauthorlisteb07type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcommonslidedata8c7ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctconnector3522type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctconnectornonvisual0f45type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdecimalnumbera518type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdocdefaults2ea8type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdocument64adtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdrawing2748type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdrawing8d34type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdxfsb26atype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctempty3fa5type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctendnotescee2type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfill550ctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfills2c6ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfldchare83etype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfont14d8type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfonts6623type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfootnotes691ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctftnedncad9type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctftnednref89eetype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobject1ce3type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobjectdata66adtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobjectframebfeatype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobjectframenonvisual257dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgroupshape5b43type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgroupshapenonvisual3e44type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgroupshapeproperties8690type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthdrftr26datype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthdrftrref224dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthyperlink38actype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthyperlink4457type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctindexedcolorsa0a0type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctinline5726type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctlatentstyles2e3atype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctleveltext0621type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctlvlf630type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctmarkeree8etype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctmarkuprangeba3dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnonvisualdrawingprops8fb0type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnonvisualdrawingshapepropsf17btype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnotesmaster69ectype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnotesslideab75type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumberingfdf9type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnume94ctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumfmt00e1type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumfmt3870type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumfmtsb58btype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumlvl416ctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumpr16aatype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctofficestylesheetce25type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctonoff04c2type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctoutershadoweffect7b5dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpa1e2type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicture1d48type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicture4f11type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicturee028type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicturenonvisual05adtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicturenonvisualb236type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctplaceholder9efctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctppr01c0type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpprdefaultf839type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpprgenerald6f2type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpresentation56cbtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctprooferr1e07type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctproperties2c18type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctproperties3f10type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctproperty5ffatype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctr8120type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctregulartextrun7e3dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrgbcolor95dftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrow3b78type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrpr097etype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrprdefault5ebbtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrsta472type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctsectpr1123type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctsettingsd6a5type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapecfcetype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapee40btype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapenonvisualb619type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapenonvisuale220type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapeproperties30e5type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslided7betype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslideidlist70a5type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslideidlistentry427dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidelayouteb34type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidemasterd8fctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidemasteridlist0b63type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidemasteridlistentryae7ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstring9c37type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstyle41c1type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstyles8506type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstylesheet4257type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttable5f3ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablecell3ac1type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablerow4ac7type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablestyled59etype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablestylelist4bdctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablestyles872ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttblc014type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttc4019type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttcpree37type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttext7f5btype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextbodya3catype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextcharacterproperties76c0type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextfield187etype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextlinebreak932ftype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextparagraphcaf2type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextparagraphpropertiesdd05type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttrpr2848type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttwocellanchor1e8dtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctunderline8406type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctxf97f7type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/document2bd9doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/endnotes960edoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/footnotes8773doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ftre182doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/hdra530doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/index.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/notes4a02doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/notesmaster8840doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/numbering1c4ddoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/pic8010doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/picelement.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/presentation02f7doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/properties288cdoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/propertiesee84doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/settings9dd1doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sld1b98doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sldlayout638edoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sldmaster5156doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stborderd7ectype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stcellstylexfid70c7type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stdecimalnumber8d28type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stdrawingelementid75a4type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stfldchartype1eb4type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sthdrftr30catype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stnumberformat0fb8type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stnumfmtid76fbtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stonoff18ddbtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stonoff9300type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stplaceholdertypeca72type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/strelationshipid1e94type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ststring76cbtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stunderlinef416type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stunsignedinthex27datype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stverticaljc3629type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stxstringf179type.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/styles2732doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stylesheet5d8bdoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/tbleb1bdoctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/tblelement.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/tblstylelst4997doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/poi/schemas/ooxml/system/ooxml/themefd26doctype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/tika/mime/custom-mimetypes.xml\\E" - }, { - "pattern":"\\Qorg/apache/tika/mime/tika-mimetypes.xml\\E" - }, { - "pattern":"\\Qorg/apache/tika/parser/html/StandardCharsets_unsupported_by_IANA.txt\\E" - }, { - "pattern":"\\Qorg/apache/xerces/impl/msg/SAXMessages.properties\\E" - }, { - "pattern":"\\Qorg/apache/xerces/impl/msg/SAXMessages_en.properties\\E" - }, { - "pattern":"\\Qorg/apache/xerces/impl/msg/SAXMessages_en_US.properties\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/impl/regex/message.properties\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/impl/regex/message_en.properties\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/impl/regex/message_en_US.properties\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLCONFIG/index.xsb\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/index.xsb\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/space9344attrtypetype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/spaceattribute.xsb\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/spaceb986attrtype.xsb\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLSCHEMA/index.xsb\\E" - }, { - "pattern":"\\Qorg/apache/xmlbeans/metadata/system/sXMLTOOLS/index.xsb\\E" - }, { - "pattern":"\\Qorg/slf4j/impl/StaticLoggerBinder.class\\E" - }, { - "pattern":"\\Qquarkus.odt\\E" - }, { - "pattern":"\\Qquarkus.pdf\\E" - }, { - "pattern":"\\Qquarkus.txt\\E" - }, { - "pattern":"\\QtestEXCEL_embeded.xls\\E" - }, { - "pattern":"\\Qword.docx\\E" - }, { - "pattern":"java.base:\\Qjdk/internal/icu/impl/data/icudt72b/nfkc.nrm\\E" - }, { - "pattern":"java.base:\\Qjdk/internal/icu/impl/data/icudt72b/ubidi.icu\\E" - }, { - "pattern":"java.base:\\Qjdk/internal/icu/impl/data/icudt72b/uprops.icu\\E" - }, { - "pattern":"java.base:\\Qjdk/internal/icu/impl/data/icudt74b/nfkc.nrm\\E" - }, { - "pattern":"java.base:\\Qjdk/internal/icu/impl/data/icudt74b/ubidi.icu\\E" - }, { - "pattern":"java.base:\\Qsun/net/idn/uidna.spp\\E" - }, { - "pattern":"java.desktop:\\Qsun/awt/resources/awt_en.properties\\E" - }, { - "pattern":"java.desktop:\\Qsun/awt/resources/awt_en_US.properties\\E" - }, { - "pattern":"java.desktop:\\Qsun/java2d/cmm/profiles/sRGB.pf\\E" - }, { - "pattern":"java.xml:\\Qjdk/xml/internal/jdkcatalog/JDKCatalog.xml\\E" - }]}, - "bundles":[{ - "name":"org.apache.xerces.impl.msg.SAXMessages", - "locales":["en", "en-US", "und"] - }, { - "name":"org.apache.xmlbeans.impl.regex.message", - "locales":["en-US", "und"] - }, { - "name":"sun.awt.resources.awt", - "locales":["en-US"], - "classNames":["sun.awt.resources.awt"] - }, { - "name":"sun.text.resources.cldr.FormatData", - "locales":["en", "en-US", "und"] - }, { - "name":"sun.util.resources.cldr.CalendarData", - "locales":["und"] - }] + "bundles": [ + { + "locales": [ + "en", + "en-US", + "und" + ], + "name": "org.apache.xerces.impl.msg.SAXMessages" + }, + { + "locales": [ + "en-US", + "und" + ], + "name": "org.apache.xmlbeans.impl.regex.message" + }, + { + "classNames": [ + "sun.awt.resources.awt" + ], + "locales": [ + "en-US" + ], + "name": "sun.awt.resources.awt" + }, + { + "locales": [ + "en", + "en-US", + "und" + ], + "name": "sun.text.resources.cldr.FormatData" + }, + { + "locales": [ + "und" + ], + "name": "sun.util.resources.cldr.CalendarData" + } + ], + "resources": { + "includes": [ + { + "pattern": "\\Q2022_Q3_AAPL.pdf\\E" + }, + { + "pattern": "\\QMETA-INF/log4j-provider.properties\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.lang.System$LoggerFinder\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.net.spi.InetAddressResolverProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.net.spi.URLStreamHandlerProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.nio.channels.spi.SelectorProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.nio.charset.spi.CharsetProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.time.zone.ZoneRulesProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/java.util.spi.ResourceBundleControlProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.imageio.spi.ImageInputStreamSpi\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.imageio.spi.ImageOutputStreamSpi\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.imageio.spi.ImageReaderSpi\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.imageio.spi.ImageTranscoderSpi\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.imageio.spi.ImageWriterSpi\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.xml.parsers.DocumentBuilderFactory\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.xml.parsers.SAXParserFactory\\E" + }, + { + "pattern": "\\QMETA-INF/services/javax.xml.xpath.XPathFactory\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.commons.logging.LogFactory\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.logging.log4j.spi.Provider\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.logging.log4j.spi.recycler.RecyclerFactoryProvider\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.logging.log4j.util.PropertySource\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.tika.detect.Detector\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.tika.detect.EncodingDetector\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.tika.detect.zip.ZipContainerDetector\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.tika.parser.Parser\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.tika.renderer.Renderer\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.apache.xerces.xni.parser.XMLParserConfiguration\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.junit.platform.engine.TestEngine\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.junit.platform.launcher.LauncherDiscoveryListener\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.junit.platform.launcher.LauncherSessionListener\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.junit.platform.launcher.PostDiscoveryFilter\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.junit.platform.launcher.TestExecutionListener\\E" + }, + { + "pattern": "\\QMETA-INF/services/org.slf4j.spi.SLF4JServiceProvider\\E" + }, + { + "pattern": "\\Qamericanexpress.pdf\\E" + }, + { + "pattern": "\\Qcommons-logging.properties\\E" + }, + { + "pattern": "\\Qhandbook-1p.docx\\E" + }, + { + "pattern": "\\Qinvoice.pdf\\E" + }, + { + "pattern": "\\Qjunit-platform.properties\\E" + }, + { + "pattern": "\\Qlog4j2.StatusLogger.json\\E" + }, + { + "pattern": "\\Qlog4j2.StatusLogger.properties\\E" + }, + { + "pattern": "\\Qlog4j2.component.json\\E" + }, + { + "pattern": "\\Qlog4j2.component.properties\\E" + }, + { + "pattern": "\\Qlog4j2.propertyMapping.json\\E" + }, + { + "pattern": "\\Qlog4j2.system.properties\\E" + }, + { + "pattern": "\\Qno-new-roman.pdf\\E" + }, + { + "pattern": "\\Qorg/apache/fontbox/cmap/Adobe-Korea1-0\\E" + }, + { + "pattern": "\\Qorg/apache/fontbox/cmap/Adobe-Korea1-2\\E" + }, + { + "pattern": "\\Qorg/apache/fontbox/cmap/Adobe-Korea1-UCS2\\E" + }, + { + "pattern": "\\Qorg/apache/fontbox/cmap/Identity-H\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Courier-Bold.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Courier-BoldOblique.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Courier-Oblique.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Courier.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Helvetica-Bold.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Helvetica-BoldOblique.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Helvetica-Oblique.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Helvetica.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Symbol.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Times-Bold.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Times-BoldItalic.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Times-Italic.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/Times-Roman.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/afm/ZapfDingbats.afm\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/glyphlist/additional.txt\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/glyphlist/glyphlist.txt\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/glyphlist/zapfdingbats.txt\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/text/BidiMirroring.txt\\E" + }, + { + "pattern": "\\Qorg/apache/pdfbox/resources/ttf/LiberationSans-Regular.ttf\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cmauthorlst86abdoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctabstractnum588etype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctanchorclientdata02betype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctapplicationnonvisualdrawingprops2fb6type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctblip034ctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctblipfillproperties0382type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctbody0f06type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctbookmarkd672type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctborderf935type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctborders0d66type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctbr7dd8type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcellstylexfsa81ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcellxfs1322type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcolors6579type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcommentauthorlisteb07type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctcommonslidedata8c7ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctconnector3522type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctconnectornonvisual0f45type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdecimalnumbera518type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdocdefaults2ea8type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdocument64adtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdrawing2748type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdrawing8d34type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctdxfsb26atype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctempty3fa5type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctendnotescee2type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfill550ctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfills2c6ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfldchare83etype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfont14d8type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfonts6623type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctfootnotes691ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctftnedncad9type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctftnednref89eetype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobject1ce3type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobjectdata66adtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobjectframebfeatype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgraphicalobjectframenonvisual257dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgroupshape5b43type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgroupshapenonvisual3e44type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctgroupshapeproperties8690type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthdrftr26datype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthdrftrref224dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthyperlink38actype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cthyperlink4457type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctindexedcolorsa0a0type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctinline5726type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctlatentstyles2e3atype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctleveltext0621type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctlvlf630type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctmarkeree8etype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctmarkuprangeba3dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnonvisualdrawingprops8fb0type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnonvisualdrawingshapepropsf17btype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnotesmaster69ectype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnotesslideab75type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumberingfdf9type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnume94ctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumfmt00e1type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumfmt3870type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumfmtsb58btype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumlvl416ctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctnumpr16aatype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctofficestylesheetce25type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctonoff04c2type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctoutershadoweffect7b5dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpa1e2type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicture1d48type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicture4f11type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicturee028type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicturenonvisual05adtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpicturenonvisualb236type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctplaceholder9efctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctppr01c0type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpprdefaultf839type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpprgenerald6f2type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctpresentation56cbtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctprooferr1e07type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctproperties2c18type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctproperties3f10type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctproperty5ffatype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctr8120type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctregulartextrun7e3dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrgbcolor95dftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrow3b78type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrpr097etype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrprdefault5ebbtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctrsta472type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctsectpr1123type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctsettingsd6a5type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapecfcetype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapee40btype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapenonvisualb619type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapenonvisuale220type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctshapeproperties30e5type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslided7betype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslideidlist70a5type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslideidlistentry427dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidelayouteb34type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidemasterd8fctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidemasteridlist0b63type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctslidemasteridlistentryae7ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstring9c37type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstyle41c1type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstyles8506type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctstylesheet4257type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttable5f3ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablecell3ac1type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablerow4ac7type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablestyled59etype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablestylelist4bdctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttablestyles872ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttblc014type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttc4019type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttcpree37type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttext7f5btype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextbodya3catype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextcharacterproperties76c0type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextfield187etype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextlinebreak932ftype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextparagraphcaf2type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttextparagraphpropertiesdd05type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttrpr2848type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/cttwocellanchor1e8dtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctunderline8406type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ctxf97f7type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/document2bd9doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/endnotes960edoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/footnotes8773doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ftre182doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/hdra530doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/index.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/notes4a02doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/notesmaster8840doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/numbering1c4ddoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/pic8010doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/picelement.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/presentation02f7doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/properties288cdoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/propertiesee84doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/settings9dd1doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sld1b98doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sldlayout638edoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sldmaster5156doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stborderd7ectype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stcellstylexfid70c7type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stdecimalnumber8d28type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stdrawingelementid75a4type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stfldchartype1eb4type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/sthdrftr30catype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stnumberformat0fb8type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stnumfmtid76fbtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stonoff18ddbtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stonoff9300type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stplaceholdertypeca72type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/strelationshipid1e94type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/ststring76cbtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stunderlinef416type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stunsignedinthex27datype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stverticaljc3629type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stxstringf179type.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/styles2732doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/stylesheet5d8bdoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/tbleb1bdoctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/tblelement.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/tblstylelst4997doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/poi/schemas/ooxml/system/ooxml/themefd26doctype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/tika/mime/custom-mimetypes.xml\\E" + }, + { + "pattern": "\\Qorg/apache/tika/mime/tika-mimetypes.xml\\E" + }, + { + "pattern": "\\Qorg/apache/tika/parser/html/StandardCharsets_unsupported_by_IANA.txt\\E" + }, + { + "pattern": "\\Qorg/apache/xerces/impl/msg/SAXMessages.properties\\E" + }, + { + "pattern": "\\Qorg/apache/xerces/impl/msg/SAXMessages_en.properties\\E" + }, + { + "pattern": "\\Qorg/apache/xerces/impl/msg/SAXMessages_en_US.properties\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/impl/regex/message.properties\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/impl/regex/message_en.properties\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/impl/regex/message_en_US.properties\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLCONFIG/index.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/index.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/space9344attrtypetype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/spaceattribute.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLLANG/spaceb986attrtype.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLSCHEMA/index.xsb\\E" + }, + { + "pattern": "\\Qorg/apache/xmlbeans/metadata/system/sXMLTOOLS/index.xsb\\E" + }, + { + "pattern": "\\Qorg/slf4j/impl/StaticLoggerBinder.class\\E" + }, + { + "pattern": "\\Qquarkus.odt\\E" + }, + { + "pattern": "\\Qquarkus.pdf\\E" + }, + { + "pattern": "\\Qquarkus.txt\\E" + }, + { + "pattern": "\\Qtable-multi-row-column-cells.png\\E" + }, + { + "pattern": "\\QtestEXCEL_embeded.xls\\E" + }, + { + "pattern": "\\Qword.docx\\E" + }, + { + "pattern": "java.base:\\Qjdk/internal/icu/impl/data/icudt72b/nfkc.nrm\\E" + }, + { + "pattern": "java.base:\\Qjdk/internal/icu/impl/data/icudt72b/ubidi.icu\\E" + }, + { + "pattern": "java.base:\\Qjdk/internal/icu/impl/data/icudt72b/uprops.icu\\E" + }, + { + "pattern": "java.base:\\Qjdk/internal/icu/impl/data/icudt74b/nfkc.nrm\\E" + }, + { + "pattern": "java.base:\\Qjdk/internal/icu/impl/data/icudt74b/ubidi.icu\\E" + }, + { + "pattern": "java.base:\\Qjdk/internal/icu/impl/data/icudt74b/uprops.icu\\E" + }, + { + "pattern": "java.base:\\Qsun/net/idn/uidna.spp\\E" + }, + { + "pattern": "java.desktop:\\Qsun/awt/resources/awt_en.properties\\E" + }, + { + "pattern": "java.desktop:\\Qsun/awt/resources/awt_en_US.properties\\E" + }, + { + "pattern": "java.desktop:\\Qsun/java2d/cmm/profiles/sRGB.pf\\E" + }, + { + "pattern": "java.xml:\\Qjdk/xml/internal/jdkcatalog/JDKCatalog.xml\\E" + } + ] + } } \ No newline at end of file diff --git a/extractous-core/tika-native/src/main/resources/META-INF/native-image/serialization-config.json b/extractous-core/tika-native/src/main/resources/META-INF/native-image/serialization-config.json index 3f06d9a..69a1360 100644 --- a/extractous-core/tika-native/src/main/resources/META-INF/native-image/serialization-config.json +++ b/extractous-core/tika-native/src/main/resources/META-INF/native-image/serialization-config.json @@ -1,41 +1,81 @@ { - "types":[ - { - "name":"java.lang.Enum" - }, - { - "name":"java.lang.Object[]" - }, - { - "name":"java.util.HashSet" - }, - { - "name":"java.util.LinkedHashSet" - }, - { - "name":"java.util.concurrent.ArrayBlockingQueue" - }, - { - "name":"java.util.concurrent.locks.AbstractOwnableSynchronizer" - }, - { - "name":"java.util.concurrent.locks.AbstractQueuedSynchronizer" - }, - { - "name":"java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject" - }, - { - "name":"java.util.concurrent.locks.ReentrantLock" - }, - { - "name":"java.util.concurrent.locks.ReentrantLock$NonfairSync" - }, - { - "name":"java.util.concurrent.locks.ReentrantLock$Sync" - } - ], - "lambdaCapturingTypes":[ - ], - "proxies":[ - ] + "lambdaCapturingTypes": [], + "proxies": [], + "types": [ + { + "name": "byte[]" + }, + { + "name": "java.lang.AssertionError" + }, + { + "name": "java.lang.Enum" + }, + { + "name": "java.lang.Error" + }, + { + "name": "java.lang.Exception" + }, + { + "name": "java.lang.NullPointerException" + }, + { + "name": "java.lang.Object[]" + }, + { + "name": "java.lang.RuntimeException" + }, + { + "name": "java.lang.StackTraceElement" + }, + { + "name": "java.lang.StackTraceElement[]" + }, + { + "name": "java.lang.String" + }, + { + "name": "java.lang.Throwable" + }, + { + "name": "java.util.ArrayList" + }, + { + "name": "java.util.Collections$EmptyList" + }, + { + "name": "java.util.HashSet" + }, + { + "name": "java.util.LinkedHashSet" + }, + { + "name": "java.util.concurrent.ArrayBlockingQueue" + }, + { + "name": "java.util.concurrent.locks.AbstractOwnableSynchronizer" + }, + { + "name": "java.util.concurrent.locks.AbstractQueuedSynchronizer" + }, + { + "name": "java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject" + }, + { + "name": "java.util.concurrent.locks.ReentrantLock" + }, + { + "name": "java.util.concurrent.locks.ReentrantLock$NonfairSync" + }, + { + "name": "java.util.concurrent.locks.ReentrantLock$Sync" + }, + { + "name": "org.opentest4j.AssertionFailedError" + }, + { + "name": "org.opentest4j.ValueWrapper" + } + ] } \ No newline at end of file