From 8d0a7854118a35d3b3d5587d81691b87597b70e6 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Tue, 23 Jun 2026 09:38:40 +0200 Subject: [PATCH 01/22] [STX-57] simplified native build, removed native-image metadata generation using native-agent --- .../scripts/merge-native-image-metadata.sh | 41 - .../scripts/prepare-native-image-metadata.sh | 22 - CONTRIBUTING.md | 19 +- pom.xml | 200 +- .../streamx/cli/ReflectionConfiguration.java | 29 + .../publish/events/TemplateLoader.java | 35 +- .../META-INF/native-image/.gitignore | 2 - .../reachability-metadata-macos.json | 19002 ---------------- src/main/resources/application.properties | 14 +- .../streamx/cli/test/BuildExecutableOnce.java | 1 + 10 files changed, 107 insertions(+), 19258 deletions(-) delete mode 100755 .github/scripts/merge-native-image-metadata.sh delete mode 100755 .github/scripts/prepare-native-image-metadata.sh create mode 100644 src/main/java/com/streamx/cli/ReflectionConfiguration.java delete mode 100644 src/main/resources/META-INF/native-image/.gitignore delete mode 100644 src/main/resources/META-INF/native-image/reachability-metadata-macos.json diff --git a/.github/scripts/merge-native-image-metadata.sh b/.github/scripts/merge-native-image-metadata.sh deleted file mode 100755 index a31b6c21..00000000 --- a/.github/scripts/merge-native-image-metadata.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env bash -set -e - -OUTPUT_DIR="$1" -if [ -z "$OUTPUT_DIR" ]; then - echo "Usage: $0 " - exit 1 -fi - -INPUT_ARGS="" - -# Include committed platform-specific metadata files -for f in "$OUTPUT_DIR"/reachability-metadata-*.json; do - [ -f "$f" ] || continue - dir=$(mktemp -d) - cp "$f" "$dir/reachability-metadata.json" - INPUT_ARGS="$INPUT_ARGS --input-dir=$dir" -done - -# Include per-fork metadata from the tracing agent -FORK_DIRS=$(find "$OUTPUT_DIR" -maxdepth 1 -type d -name 'fork-*' 2>/dev/null | sort) -for dir in $FORK_DIRS; do - INPUT_ARGS="$INPUT_ARGS --input-dir=$dir" -done - -if [ -z "$INPUT_ARGS" ]; then - exit 0 -fi - -echo "[native-image-configure] Merging native-image metadata into $OUTPUT_DIR" -"${JAVA_HOME}/bin/native-image-configure" generate $INPUT_ARGS --output-dir="$OUTPUT_DIR" - -for dir in $FORK_DIRS; do - rm -rf "$dir" -done - -# On macOS, update the committed platform-specific metadata -if [ "$(uname)" = "Darwin" ]; then - cp "$OUTPUT_DIR/reachability-metadata.json" "$OUTPUT_DIR/reachability-metadata-macos.json" - echo "[native-image-configure] Updated reachability-metadata-macos.json" -fi diff --git a/.github/scripts/prepare-native-image-metadata.sh b/.github/scripts/prepare-native-image-metadata.sh deleted file mode 100755 index 143b6d8b..00000000 --- a/.github/scripts/prepare-native-image-metadata.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash -set -e - -DIR="$1" -if [ -z "$DIR" ]; then - echo "Usage: $0 " - exit 1 -fi - -MERGED="$DIR/reachability-metadata.json" - -# If the merged metadata already exists (e.g., from a prior non-native verify run), nothing to do -if [ -f "$MERGED" ]; then - echo "[prepare-native-image-metadata] reachability-metadata.json already exists, skipping" - exit 0 -fi - -# On macOS, bootstrap from the committed platform-specific metadata -if [ "$(uname)" = "Darwin" ] && [ -f "$DIR/reachability-metadata-macos.json" ]; then - cp "$DIR/reachability-metadata-macos.json" "$MERGED" - echo "[prepare-native-image-metadata] Copied reachability-metadata-macos.json -> reachability-metadata.json" -fi diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9f90a361..5ecb829d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,23 +9,8 @@ ## Build -- Ensure that you have Java 25 GraalVM installed. -- First you need to run `./mvnw clean verify` to build the project with. - It's needed to generate metadata for building native-image in the next step. - -- Then you can run `./mvnw verify -Dnative` **without the clean goal** to build the native executable. - -## Native image reachability metadata - -The native image build requires GraalVM reachability metadata (`reachability-metadata.json`) to know which classes need reflection, resources, etc. - -- **macOS metadata** is committed as `src/main/resources/META-INF/native-image/reachability-metadata-macos.json`. To update it, run the metadata generation step on a Mac: - ``` - ./mvnw verify -T 2 -Dsurefire.forkCount=8 -Dit.forkCount=4 - ``` - The `reachability-metadata-macos.json` file is updated automatically. Commit the result. -- **Linux metadata** is generated automatically on CI during the build. -- The merge script (`.github/scripts/merge-native-image-metadata.sh`) combines all `reachability-metadata-*.json` files with any agent-traced fork metadata into the final `reachability-metadata.json` used by the native image build. +- Ensure that you have [Mandrel 23](https://github.com/graalvm/mandrel/releases/tag/mandrel-23.1.11.0-Final) installed. +- Then you can run `./mvnw clean install -Dnative` to build the native executable. ## Development diff --git a/pom.xml b/pom.xml index 711a143a..4e965556 100644 --- a/pom.xml +++ b/pom.xml @@ -21,17 +21,12 @@ 3.2.5 3.13.0 3.6.0 - 25.0.2 - 2.0.37 + 2.1.1-SNAPSHOT 4.0.1 false - 1 + 2 1 - - - -agentlib:native-image-agent=config-merge-dir=${project.basedir}/src/main/resources/META-INF/native-image/fork-${surefire.forkNumber} - @@ -47,11 +42,6 @@ - - io.quarkus - quarkus-picocli - - io.quarkus quarkus-arc @@ -60,58 +50,22 @@ io.quarkus quarkus-scheduler - compile - - - - info.picocli - picocli-shell-jline3 - 4.7.5 io.smallrye.config smallrye-config - 3.15.1 - compile - - - - org.jetbrains - annotations - 26.0.2-1 - provided - - - - org.jboss.logging - jboss-logging-annotations - provided - - - - org.jboss.logging - jboss-logging-processor - provided - true - - - - org.slf4j - jcl-over-slf4j - 2.0.17 + io.quarkus quarkus-jackson - compile com.fasterxml.jackson.core jackson-databind - 2.20.1 @@ -127,16 +81,33 @@ com.fasterxml.jackson.dataformat jackson-dataformat-yaml - 2.20.1 + + + + + io.quarkus + quarkus-picocli + + + + info.picocli + picocli-shell-jline3 + 4.7.5 + + + + org.fusesource.jansi + jansi + 2.4.1 - org.apache.httpcomponents - httpclient - 4.5.14 - compile + com.github.albfernandez + juniversalchardet + 2.5.0 + com.streamx streamx-runner @@ -155,6 +126,7 @@ ${streamx.version} + io.cloudevents cloudevents-core @@ -167,43 +139,43 @@ ${cloudevents.version} - + - org.graalvm.sdk - graal-sdk - ${graalvm.version} - provided + io.quarkus + quarkus-jsonp + - org.graalvm.nativeimage - svm - ${graalvm.version} + org.jboss.logging + jboss-logging-annotations provided - org.fusesource.jansi - jansi - 2.4.1 + org.jboss.logging + jboss-logging-processor + provided + true - com.github.albfernandez - juniversalchardet - 2.5.0 + org.slf4j + jcl-over-slf4j + 2.0.17 + - org.brotli - dec - 0.1.2 + org.jetbrains + annotations + 26.0.2-1 + provided - com.github.java-json-tools - json-patch - 1.13 + jakarta.ws.rs + jakarta.ws.rs-api @@ -406,8 +378,6 @@ -Dsurefire.forkNumber=${surefire.forkNumber} --add-opens java.base/java.lang=ALL-UNNAMED - --enable-native-access=ALL-UNNAMED - ${native.agent.argLine} @@ -432,21 +402,9 @@ -Dsurefire.forkNumber=${surefire.forkNumber} --add-opens java.base/java.lang=ALL-UNNAMED - ${native.agent.argLine} - - org.graalvm.buildtools - native-maven-plugin - 0.11.4 - true - - - true - - - maven-jar-plugin @@ -499,37 +457,6 @@ true - - native-image-agent - - - ${java.home}/bin/native-image - - - - - - org.codehaus.mojo - exec-maven-plugin - - - merge-native-image-metadata - - exec - - post-integration-test - - ${project.basedir}/.github/scripts/merge-native-image-metadata.sh - - ${project.basedir}/src/main/resources/META-INF/native-image - - - - - - - - native @@ -538,50 +465,19 @@ - native - true - true - - - + true - - maven-surefire-plugin - - - true - - - maven-failsafe-plugin + ${project.build.directory}/${project.build.finalName}-runner true - - org.codehaus.mojo - exec-maven-plugin - - - prepare-native-image-metadata - - exec - - initialize - - ${project.basedir}/.github/scripts/prepare-native-image-metadata.sh - - ${project.basedir}/src/main/resources/META-INF/native-image - - - - - diff --git a/src/main/java/com/streamx/cli/ReflectionConfiguration.java b/src/main/java/com/streamx/cli/ReflectionConfiguration.java new file mode 100644 index 00000000..d179cb48 --- /dev/null +++ b/src/main/java/com/streamx/cli/ReflectionConfiguration.java @@ -0,0 +1,29 @@ +package com.streamx.cli; + +import com.streamx.cli.commands.publish.EventTemplatePlaceholders; +import com.streamx.cli.commands.publish.event.EventCommandResult; +import com.streamx.cli.commands.publish.event.EventTemplateCatalog; +import com.streamx.cli.commands.publish.events.EventsCommandResult; +import com.streamx.cli.commands.publish.stream.StreamCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.copy.CopyCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.create.CreateCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.delete.DeleteCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.edit.EditCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.list.ListCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.rename.RenameCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.resetdefaulttemplates.ResetDefaultTemplatesCommandResult; +import com.streamx.cli.commands.settings.eventtemplates.validate.ValidateCommandResult; +import com.streamx.runner.StreamxRunner; +import io.quarkus.runtime.annotations.RegisterForReflection; +import org.apache.commons.logging.impl.LogFactoryImpl; +import org.apache.commons.logging.impl.SimpleLog; + +@RegisterForReflection(targets = {StreamxRunner.class, SimpleLog.class, LogFactoryImpl.class, + Main.class, EventTemplatePlaceholders.class, EventTemplateCatalog.class, + EventTemplateCatalog.TemplateLocation[].class, RenameCommandResult.class, + ResetDefaultTemplatesCommandResult.class, EventCommandResult.class, EventsCommandResult.class, + StreamCommandResult.class, CopyCommandResult.class, CreateCommandResult.class, + DeleteCommandResult.class, EditCommandResult.class, ListCommandResult.class, + ValidateCommandResult.class}, registerFullHierarchy = true) +public class ReflectionConfiguration { +} diff --git a/src/main/java/com/streamx/cli/commands/publish/events/TemplateLoader.java b/src/main/java/com/streamx/cli/commands/publish/events/TemplateLoader.java index e3a6c8c9..e7999a37 100644 --- a/src/main/java/com/streamx/cli/commands/publish/events/TemplateLoader.java +++ b/src/main/java/com/streamx/cli/commands/publish/events/TemplateLoader.java @@ -4,10 +4,14 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.fge.jsonpatch.JsonPatch; -import com.github.fge.jsonpatch.JsonPatchException; import com.streamx.cli.framework.CliException; +import jakarta.json.Json; +import jakarta.json.JsonArray; +import jakarta.json.JsonPatch; +import jakarta.json.JsonReader; +import jakarta.json.JsonStructure; import java.io.IOException; +import java.io.StringReader; import java.nio.file.Files; import java.nio.file.Path; import java.util.function.Supplier; @@ -26,7 +30,7 @@ static JsonNode load(Path templateFile, Path contextPath) { } static JsonNode applyPatch(Path rootPath, JsonNode template, String patchName, - Supplier confirmContinue) { + Supplier confirmContinue) { String patchFileName = "." + patchName + EVENTTEMPLATE_FILE; Path patchFile = rootPath.resolve(patchFileName); @@ -34,17 +38,22 @@ static JsonNode applyPatch(Path rootPath, JsonNode template, String patchName, return Boolean.TRUE.equals(confirmContinue.get()) ? template : null; } - JsonNode patchNode; try { - patchNode = mapper.readTree(patchFile.toFile()); - } catch (IOException e) { - throw new CliException(msg.eventTemplateCorrupted(rootPath.toString()), e); - } - - try { - JsonPatch patch = JsonPatch.fromJson(patchNode); - return patch.apply(template); - } catch (JsonPatchException | IOException e) { + JsonArray patchArray; + try (JsonReader patchReader = + Json.createReader(Files.newBufferedReader(patchFile))) { + patchArray = patchReader.readArray(); + } + JsonPatch patch = Json.createPatch(patchArray); + JsonStructure target; + try (JsonReader targetReader = Json.createReader( + new StringReader(mapper.writeValueAsString(template)))) { + target = targetReader.read(); + } + JsonStructure result = patch.apply(target); + return mapper.readTree(result.toString()); + + } catch (Exception e) { throw new CliException(msg.patchIsInvalid(patchName), e); } } diff --git a/src/main/resources/META-INF/native-image/.gitignore b/src/main/resources/META-INF/native-image/.gitignore deleted file mode 100644 index 99a0c0f9..00000000 --- a/src/main/resources/META-INF/native-image/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/reachability-metadata.json -/.lock \ No newline at end of file diff --git a/src/main/resources/META-INF/native-image/reachability-metadata-macos.json b/src/main/resources/META-INF/native-image/reachability-metadata-macos.json deleted file mode 100644 index c600580f..00000000 --- a/src/main/resources/META-INF/native-image/reachability-metadata-macos.json +++ /dev/null @@ -1,19002 +0,0 @@ -{ - "reflection": [ - { - "type": "apple.security.AppleProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.fasterxml.jackson.core.ObjectCodec" - }, - { - "type": "com.fasterxml.jackson.core.TreeCodec" - }, - { - "type": "com.fasterxml.jackson.core.Versioned" - }, - { - "type": "com.fasterxml.jackson.databind.JsonNode" - }, - { - "type": "com.fasterxml.jackson.databind.JsonSerializable" - }, - { - "type": "com.fasterxml.jackson.databind.ObjectMapper" - }, - { - "type": "com.fasterxml.jackson.databind.deser.BeanDeserializerModifier[]" - }, - { - "type": "com.fasterxml.jackson.databind.deser.Deserializers[]" - }, - { - "type": "com.fasterxml.jackson.databind.deser.KeyDeserializers[]" - }, - { - "type": "com.fasterxml.jackson.databind.deser.ValueInstantiators[]" - }, - { - "type": "com.fasterxml.jackson.databind.ext.Java7SupportImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.fasterxml.jackson.databind.node.NullNode" - }, - { - "type": "com.fasterxml.jackson.databind.ser.BeanSerializerModifier[]" - }, - { - "type": "com.fasterxml.jackson.databind.ser.Serializers[]" - }, - { - "type": "com.github.dockerjava.api.command.AsyncDockerCmd" - }, - { - "type": "com.github.dockerjava.api.command.ConnectToNetworkCmd" - }, - { - "type": "com.github.dockerjava.api.command.CreateContainerCmd" - }, - { - "type": "com.github.dockerjava.api.command.CreateContainerResponse", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setId", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setWarnings", - "parameterTypes": [ - "java.lang.String[]" - ] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.CreateNetworkCmd" - }, - { - "type": "com.github.dockerjava.api.command.CreateNetworkResponse", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setId", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.CreateVolumeCmd" - }, - { - "type": "com.github.dockerjava.api.command.CreateVolumeResponse", - "fields": [ - { - "name": "driver" - }, - { - "name": "labels" - }, - { - "name": "mountpoint" - }, - { - "name": "name" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.DisconnectFromNetworkCmd" - }, - { - "type": "com.github.dockerjava.api.command.DockerCmd" - }, - { - "type": "com.github.dockerjava.api.command.ExecCreateCmd" - }, - { - "type": "com.github.dockerjava.api.command.ExecCreateCmdResponse", - "fields": [ - { - "name": "id" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.ExecStartCmd" - }, - { - "type": "com.github.dockerjava.api.command.GraphData", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.GraphDriver", - "fields": [ - { - "name": "data" - }, - { - "name": "name" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.HealthState" - }, - { - "type": "com.github.dockerjava.api.command.HealthStateLog" - }, - { - "type": "com.github.dockerjava.api.command.InspectContainerResponse", - "fields": [ - { - "name": "args" - }, - { - "name": "config" - }, - { - "name": "created" - }, - { - "name": "driver" - }, - { - "name": "execIds" - }, - { - "name": "graphDriver" - }, - { - "name": "hostConfig" - }, - { - "name": "hostnamePath" - }, - { - "name": "hostsPath" - }, - { - "name": "id" - }, - { - "name": "imageId" - }, - { - "name": "logPath" - }, - { - "name": "mountLabel" - }, - { - "name": "mounts" - }, - { - "name": "name" - }, - { - "name": "networkSettings" - }, - { - "name": "path" - }, - { - "name": "platform" - }, - { - "name": "processLabel" - }, - { - "name": "resolvConfPath" - }, - { - "name": "restartCount" - }, - { - "name": "state" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.InspectContainerResponse$ContainerState", - "fields": [ - { - "name": "dead" - }, - { - "name": "error" - }, - { - "name": "exitCode" - }, - { - "name": "finishedAt" - }, - { - "name": "oomKilled" - }, - { - "name": "paused" - }, - { - "name": "pid" - }, - { - "name": "restarting" - }, - { - "name": "running" - }, - { - "name": "startedAt" - }, - { - "name": "status" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.github.dockerjava.api.command.InspectContainerResponse" - ] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.InspectContainerResponse$Mount", - "fields": [ - { - "name": "destination" - }, - { - "name": "driver" - }, - { - "name": "mode" - }, - { - "name": "name" - }, - { - "name": "rw" - }, - { - "name": "source" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.InspectContainerResponse$Node" - }, - { - "type": "com.github.dockerjava.api.command.InspectExecResponse", - "fields": [ - { - "name": "canRemove" - }, - { - "name": "containerID" - }, - { - "name": "detachKeys" - }, - { - "name": "exitCode" - }, - { - "name": "id" - }, - { - "name": "openStderr" - }, - { - "name": "openStdin" - }, - { - "name": "openStdout" - }, - { - "name": "pid" - }, - { - "name": "processConfig" - }, - { - "name": "running" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.InspectExecResponse$Container" - }, - { - "type": "com.github.dockerjava.api.command.InspectExecResponse$ProcessConfig", - "fields": [ - { - "name": "arguments" - }, - { - "name": "entryPoint" - }, - { - "name": "privileged" - }, - { - "name": "tty" - }, - { - "name": "user" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.github.dockerjava.api.command.InspectExecResponse" - ] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.InspectImageResponse", - "fields": [ - { - "name": "arch" - }, - { - "name": "comment" - }, - { - "name": "config" - }, - { - "name": "created" - }, - { - "name": "graphDriver" - }, - { - "name": "id" - }, - { - "name": "os" - }, - { - "name": "repoDigests" - }, - { - "name": "repoTags" - }, - { - "name": "rootFS" - }, - { - "name": "size" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.RootFS", - "fields": [ - { - "name": "layers" - }, - { - "name": "type" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.command.SyncDockerCmd" - }, - { - "type": "com.github.dockerjava.api.model.AccessMode" - }, - { - "type": "com.github.dockerjava.api.model.AuthConfig", - "fields": [ - { - "name": "auth" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getAuth", - "parameterTypes": [] - }, - { - "name": "getEmail", - "parameterTypes": [] - }, - { - "name": "getIdentitytoken", - "parameterTypes": [] - }, - { - "name": "getPassword", - "parameterTypes": [] - }, - { - "name": "getRegistryAddress", - "parameterTypes": [] - }, - { - "name": "getRegistrytoken", - "parameterTypes": [] - }, - { - "name": "getStackOrchestrator", - "parameterTypes": [] - }, - { - "name": "getUsername", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.Bind" - }, - { - "type": "com.github.dockerjava.api.model.BindOptions" - }, - { - "type": "com.github.dockerjava.api.model.BindPropagation" - }, - { - "type": "com.github.dockerjava.api.model.Bind[]" - }, - { - "type": "com.github.dockerjava.api.model.Binds", - "methods": [ - { - "name": "fromPrimitive", - "parameterTypes": [ - "java.lang.String[]" - ] - }, - { - "name": "toPrimitive", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.BlkioRateDevice" - }, - { - "type": "com.github.dockerjava.api.model.BlkioWeightDevice" - }, - { - "type": "com.github.dockerjava.api.model.Capability" - }, - { - "type": "com.github.dockerjava.api.model.Capability[]" - }, - { - "type": "com.github.dockerjava.api.model.Container", - "fields": [ - { - "name": "command" - }, - { - "name": "created" - }, - { - "name": "hostConfig" - }, - { - "name": "id" - }, - { - "name": "image" - }, - { - "name": "imageId" - }, - { - "name": "labels" - }, - { - "name": "mounts" - }, - { - "name": "names" - }, - { - "name": "networkSettings" - }, - { - "name": "ports" - }, - { - "name": "state" - }, - { - "name": "status" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerConfig", - "fields": [ - { - "name": "attachStderr" - }, - { - "name": "attachStdin" - }, - { - "name": "attachStdout" - }, - { - "name": "cmd" - }, - { - "name": "domainName" - }, - { - "name": "entrypoint" - }, - { - "name": "env" - }, - { - "name": "exposedPorts" - }, - { - "name": "hostName" - }, - { - "name": "image" - }, - { - "name": "labels" - }, - { - "name": "stdInOnce" - }, - { - "name": "stdinOpen" - }, - { - "name": "tty" - }, - { - "name": "user" - }, - { - "name": "volumes" - }, - { - "name": "workingDir" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerHostConfig", - "fields": [ - { - "name": "networkMode" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerMount", - "fields": [ - { - "name": "destination" - }, - { - "name": "driver" - }, - { - "name": "mode" - }, - { - "name": "name" - }, - { - "name": "propagation" - }, - { - "name": "rw" - }, - { - "name": "source" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerNetwork", - "fields": [ - { - "name": "aliases" - }, - { - "name": "endpointId" - }, - { - "name": "gateway" - }, - { - "name": "globalIPv6Address" - }, - { - "name": "globalIPv6PrefixLen" - }, - { - "name": "ipAddress" - }, - { - "name": "ipPrefixLen" - }, - { - "name": "ipV6Gateway" - }, - { - "name": "ipamConfig" - }, - { - "name": "links" - }, - { - "name": "macAddress" - }, - { - "name": "networkID" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getAliases", - "parameterTypes": [] - }, - { - "name": "getEndpointId", - "parameterTypes": [] - }, - { - "name": "getGateway", - "parameterTypes": [] - }, - { - "name": "getGlobalIPv6Address", - "parameterTypes": [] - }, - { - "name": "getGlobalIPv6PrefixLen", - "parameterTypes": [] - }, - { - "name": "getIpAddress", - "parameterTypes": [] - }, - { - "name": "getIpPrefixLen", - "parameterTypes": [] - }, - { - "name": "getIpV6Gateway", - "parameterTypes": [] - }, - { - "name": "getIpamConfig", - "parameterTypes": [] - }, - { - "name": "getMacAddress", - "parameterTypes": [] - }, - { - "name": "getNetworkID", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerNetwork$Ipam" - }, - { - "type": "com.github.dockerjava.api.model.ContainerNetworkSettings", - "fields": [ - { - "name": "networks" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerPort", - "fields": [ - { - "name": "ip" - }, - { - "name": "privatePort" - }, - { - "name": "publicPort" - }, - { - "name": "type" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ContainerPort[]" - }, - { - "type": "com.github.dockerjava.api.model.Device" - }, - { - "type": "com.github.dockerjava.api.model.DeviceRequest" - }, - { - "type": "com.github.dockerjava.api.model.Device[]" - }, - { - "type": "com.github.dockerjava.api.model.DockerObject", - "methods": [ - { - "name": "getRawValues", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.Driver" - }, - { - "type": "com.github.dockerjava.api.model.ExposedPort" - }, - { - "type": "com.github.dockerjava.api.model.ExposedPort[]" - }, - { - "type": "com.github.dockerjava.api.model.ExposedPorts", - "methods": [ - { - "name": "fromPrimitive", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "toPrimitive", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.HealthCheck" - }, - { - "type": "com.github.dockerjava.api.model.HostConfig", - "fields": [ - { - "name": "autoRemove" - }, - { - "name": "binds" - }, - { - "name": "blkioDeviceReadBps" - }, - { - "name": "blkioDeviceReadIOps" - }, - { - "name": "blkioDeviceWriteBps" - }, - { - "name": "blkioDeviceWriteIOps" - }, - { - "name": "blkioWeight" - }, - { - "name": "blkioWeightDevice" - }, - { - "name": "capAdd" - }, - { - "name": "capDrop" - }, - { - "name": "cgroup" - }, - { - "name": "cgroupParent" - }, - { - "name": "cgroupnsMode" - }, - { - "name": "consoleSize" - }, - { - "name": "containerIDFile" - }, - { - "name": "cpuCount" - }, - { - "name": "cpuPercent" - }, - { - "name": "cpuPeriod" - }, - { - "name": "cpuQuota" - }, - { - "name": "cpuRealtimePeriod" - }, - { - "name": "cpuRealtimeRuntime" - }, - { - "name": "cpuShares" - }, - { - "name": "cpusetCpus" - }, - { - "name": "cpusetMems" - }, - { - "name": "deviceCgroupRules" - }, - { - "name": "deviceRequests" - }, - { - "name": "devices" - }, - { - "name": "dns" - }, - { - "name": "dnsOptions" - }, - { - "name": "dnsSearch" - }, - { - "name": "extraHosts" - }, - { - "name": "groupAdd" - }, - { - "name": "ioMaximumBandwidth" - }, - { - "name": "ioMaximumIOps" - }, - { - "name": "ipcMode" - }, - { - "name": "isolation" - }, - { - "name": "links" - }, - { - "name": "logConfig" - }, - { - "name": "memory" - }, - { - "name": "memoryReservation" - }, - { - "name": "memorySwap" - }, - { - "name": "memorySwappiness" - }, - { - "name": "nanoCPUs" - }, - { - "name": "networkMode" - }, - { - "name": "oomKillDisable" - }, - { - "name": "oomScoreAdj" - }, - { - "name": "pidMode" - }, - { - "name": "pidsLimit" - }, - { - "name": "portBindings" - }, - { - "name": "privileged" - }, - { - "name": "publishAllPorts" - }, - { - "name": "readonlyRootfs" - }, - { - "name": "restartPolicy" - }, - { - "name": "runtime" - }, - { - "name": "securityOpts" - }, - { - "name": "shmSize" - }, - { - "name": "tmpFs" - }, - { - "name": "ulimits" - }, - { - "name": "usernsMode" - }, - { - "name": "utSMode" - }, - { - "name": "volumeDriver" - }, - { - "name": "volumesFrom" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getAutoRemove", - "parameterTypes": [] - }, - { - "name": "getBlkioDeviceReadBps", - "parameterTypes": [] - }, - { - "name": "getBlkioDeviceReadIOps", - "parameterTypes": [] - }, - { - "name": "getBlkioDeviceWriteBps", - "parameterTypes": [] - }, - { - "name": "getBlkioDeviceWriteIOps", - "parameterTypes": [] - }, - { - "name": "getBlkioWeight", - "parameterTypes": [] - }, - { - "name": "getBlkioWeightDevice", - "parameterTypes": [] - }, - { - "name": "getCapAdd", - "parameterTypes": [] - }, - { - "name": "getCapDrop", - "parameterTypes": [] - }, - { - "name": "getCgroup", - "parameterTypes": [] - }, - { - "name": "getCgroupParent", - "parameterTypes": [] - }, - { - "name": "getCgroupnsMode", - "parameterTypes": [] - }, - { - "name": "getConsoleSize", - "parameterTypes": [] - }, - { - "name": "getContainerIDFile", - "parameterTypes": [] - }, - { - "name": "getCpuCount", - "parameterTypes": [] - }, - { - "name": "getCpuPercent", - "parameterTypes": [] - }, - { - "name": "getCpuPeriod", - "parameterTypes": [] - }, - { - "name": "getCpuQuota", - "parameterTypes": [] - }, - { - "name": "getCpuRealtimePeriod", - "parameterTypes": [] - }, - { - "name": "getCpuRealtimeRuntime", - "parameterTypes": [] - }, - { - "name": "getCpuShares", - "parameterTypes": [] - }, - { - "name": "getCpusetCpus", - "parameterTypes": [] - }, - { - "name": "getCpusetMems", - "parameterTypes": [] - }, - { - "name": "getDeviceCgroupRules", - "parameterTypes": [] - }, - { - "name": "getDeviceRequests", - "parameterTypes": [] - }, - { - "name": "getDevices", - "parameterTypes": [] - }, - { - "name": "getDiskQuota", - "parameterTypes": [] - }, - { - "name": "getDns", - "parameterTypes": [] - }, - { - "name": "getDnsOptions", - "parameterTypes": [] - }, - { - "name": "getDnsSearch", - "parameterTypes": [] - }, - { - "name": "getExtraHosts", - "parameterTypes": [] - }, - { - "name": "getGroupAdd", - "parameterTypes": [] - }, - { - "name": "getInit", - "parameterTypes": [] - }, - { - "name": "getIoMaximumBandwidth", - "parameterTypes": [] - }, - { - "name": "getIoMaximumIOps", - "parameterTypes": [] - }, - { - "name": "getIpcMode", - "parameterTypes": [] - }, - { - "name": "getIsolation", - "parameterTypes": [] - }, - { - "name": "getKernelMemory", - "parameterTypes": [] - }, - { - "name": "getLxcConf", - "parameterTypes": [] - }, - { - "name": "getMemory", - "parameterTypes": [] - }, - { - "name": "getMemoryReservation", - "parameterTypes": [] - }, - { - "name": "getMemorySwap", - "parameterTypes": [] - }, - { - "name": "getMemorySwappiness", - "parameterTypes": [] - }, - { - "name": "getMounts", - "parameterTypes": [] - }, - { - "name": "getNanoCPUs", - "parameterTypes": [] - }, - { - "name": "getNetworkMode", - "parameterTypes": [] - }, - { - "name": "getOomKillDisable", - "parameterTypes": [] - }, - { - "name": "getOomScoreAdj", - "parameterTypes": [] - }, - { - "name": "getPidMode", - "parameterTypes": [] - }, - { - "name": "getPidsLimit", - "parameterTypes": [] - }, - { - "name": "getPortBindings", - "parameterTypes": [] - }, - { - "name": "getPrivileged", - "parameterTypes": [] - }, - { - "name": "getPublishAllPorts", - "parameterTypes": [] - }, - { - "name": "getReadonlyRootfs", - "parameterTypes": [] - }, - { - "name": "getRestartPolicy", - "parameterTypes": [] - }, - { - "name": "getRuntime", - "parameterTypes": [] - }, - { - "name": "getSecurityOpts", - "parameterTypes": [] - }, - { - "name": "getShmSize", - "parameterTypes": [] - }, - { - "name": "getStorageOpt", - "parameterTypes": [] - }, - { - "name": "getSysctls", - "parameterTypes": [] - }, - { - "name": "getTmpFs", - "parameterTypes": [] - }, - { - "name": "getUlimits", - "parameterTypes": [] - }, - { - "name": "getUsernsMode", - "parameterTypes": [] - }, - { - "name": "getUtSMode", - "parameterTypes": [] - }, - { - "name": "getVolumeDriver", - "parameterTypes": [] - }, - { - "name": "getVolumesFrom", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ImageOptions" - }, - { - "type": "com.github.dockerjava.api.model.InternetProtocol" - }, - { - "type": "com.github.dockerjava.api.model.Isolation", - "methods": [ - { - "name": "fromValue", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "getValue", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.Link" - }, - { - "type": "com.github.dockerjava.api.model.Link[]" - }, - { - "type": "com.github.dockerjava.api.model.Links" - }, - { - "type": "com.github.dockerjava.api.model.LogConfig", - "fields": [ - { - "name": "config" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setType", - "parameterTypes": [ - "com.github.dockerjava.api.model.LogConfig$LoggingType" - ] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.LogConfig$LoggingType", - "methods": [ - { - "name": "fromValue", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "getType", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.LxcConf" - }, - { - "type": "com.github.dockerjava.api.model.LxcConf[]" - }, - { - "type": "com.github.dockerjava.api.model.Mount" - }, - { - "type": "com.github.dockerjava.api.model.MountType" - }, - { - "type": "com.github.dockerjava.api.model.Network", - "fields": [ - { - "name": "attachable" - }, - { - "name": "created" - }, - { - "name": "driver" - }, - { - "name": "enableIPv6" - }, - { - "name": "id" - }, - { - "name": "internal" - }, - { - "name": "ipam" - }, - { - "name": "labels" - }, - { - "name": "name" - }, - { - "name": "options" - }, - { - "name": "scope" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.Network$ContainerNetworkConfig" - }, - { - "type": "com.github.dockerjava.api.model.Network$Ipam", - "fields": [ - { - "name": "config" - }, - { - "name": "driver" - }, - { - "name": "options" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.Network$Ipam$Config", - "fields": [ - { - "name": "gateway" - }, - { - "name": "subnet" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.NetworkSettings", - "fields": [ - { - "name": "networks" - }, - { - "name": "ports" - }, - { - "name": "sandboxId" - }, - { - "name": "sandboxKey" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.PortBinding[]" - }, - { - "type": "com.github.dockerjava.api.model.Ports", - "methods": [ - { - "name": "fromPrimitive", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "toPrimitive", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.Ports$Binding" - }, - { - "type": "com.github.dockerjava.api.model.Ports$Binding[]" - }, - { - "type": "com.github.dockerjava.api.model.PropagationMode" - }, - { - "type": "com.github.dockerjava.api.model.PullResponseItem", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ResponseItem", - "fields": [ - { - "name": "id" - }, - { - "name": "status" - } - ] - }, - { - "type": "com.github.dockerjava.api.model.ResponseItem$AuxDetail" - }, - { - "type": "com.github.dockerjava.api.model.ResponseItem$ErrorDetail" - }, - { - "type": "com.github.dockerjava.api.model.ResponseItem$ProgressDetail" - }, - { - "type": "com.github.dockerjava.api.model.RestartPolicy", - "fields": [ - { - "name": "maximumRetryCount" - }, - { - "name": "name" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.SELContext" - }, - { - "type": "com.github.dockerjava.api.model.TmpfsOptions" - }, - { - "type": "com.github.dockerjava.api.model.Ulimit" - }, - { - "type": "com.github.dockerjava.api.model.Ulimit[]" - }, - { - "type": "com.github.dockerjava.api.model.Volume", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.VolumeBind" - }, - { - "type": "com.github.dockerjava.api.model.VolumeBind[]" - }, - { - "type": "com.github.dockerjava.api.model.VolumeBinds" - }, - { - "type": "com.github.dockerjava.api.model.VolumeOptions" - }, - { - "type": "com.github.dockerjava.api.model.VolumeRW" - }, - { - "type": "com.github.dockerjava.api.model.VolumeRW[]" - }, - { - "type": "com.github.dockerjava.api.model.Volume[]" - }, - { - "type": "com.github.dockerjava.api.model.Volumes", - "methods": [ - { - "name": "toPrimitive", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.api.model.VolumesFrom" - }, - { - "type": "com.github.dockerjava.api.model.VolumesFrom[]" - }, - { - "type": "com.github.dockerjava.api.model.VolumesRW" - }, - { - "type": "com.github.dockerjava.core.DockerConfigFile", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setAuths", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setCurrentContext", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "com.github.dockerjava.core.DockerContextMetaFile", - "fields": [ - { - "name": "endpoints" - }, - { - "name": "name" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.DockerContextMetaFile$Endpoints", - "fields": [ - { - "name": "docker" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.DockerContextMetaFile$Endpoints$Docker", - "fields": [ - { - "name": "host" - }, - { - "name": "skipTLSVerify" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.AbstrAsyncDockerCmd" - }, - { - "type": "com.github.dockerjava.core.command.AbstrDockerCmd" - }, - { - "type": "com.github.dockerjava.core.command.ConnectToNetworkCmdImpl", - "fields": [ - { - "name": "endpointConfig" - } - ], - "methods": [ - { - "name": "getContainerConfig", - "parameterTypes": [] - }, - { - "name": "getContainerId", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.CreateContainerCmdImpl", - "fields": [ - { - "name": "argsEscaped" - }, - { - "name": "attachStderr" - }, - { - "name": "attachStdin" - }, - { - "name": "attachStdout" - }, - { - "name": "cmd" - }, - { - "name": "domainName" - }, - { - "name": "entrypoint" - }, - { - "name": "env" - }, - { - "name": "exposedPorts" - }, - { - "name": "healthcheck" - }, - { - "name": "hostConfig" - }, - { - "name": "hostName" - }, - { - "name": "image" - }, - { - "name": "labels" - }, - { - "name": "macAddress" - }, - { - "name": "networkDisabled" - }, - { - "name": "networkingConfig" - }, - { - "name": "onBuild" - }, - { - "name": "portSpecs" - }, - { - "name": "shell" - }, - { - "name": "stdInOnce" - }, - { - "name": "stdinOpen" - }, - { - "name": "stopSignal" - }, - { - "name": "stopTimeout" - }, - { - "name": "tty" - }, - { - "name": "user" - }, - { - "name": "volumes" - }, - { - "name": "workingDir" - } - ] - }, - { - "type": "com.github.dockerjava.core.command.CreateContainerCmdImpl$NetworkingConfig", - "methods": [ - { - "name": "getEndpointsConfig", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.CreateNetworkCmdImpl", - "fields": [ - { - "name": "enableIpv6" - } - ], - "methods": [ - { - "name": "getAttachable", - "parameterTypes": [] - }, - { - "name": "getCheckDuplicate", - "parameterTypes": [] - }, - { - "name": "getDriver", - "parameterTypes": [] - }, - { - "name": "getEnableIPv6", - "parameterTypes": [] - }, - { - "name": "getInternal", - "parameterTypes": [] - }, - { - "name": "getIpam", - "parameterTypes": [] - }, - { - "name": "getLabels", - "parameterTypes": [] - }, - { - "name": "getName", - "parameterTypes": [] - }, - { - "name": "getOptions", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.CreateVolumeCmdImpl", - "methods": [ - { - "name": "getDriver", - "parameterTypes": [] - }, - { - "name": "getDriverOpts", - "parameterTypes": [] - }, - { - "name": "getLabels", - "parameterTypes": [] - }, - { - "name": "getName", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.DisconnectFromNetworkCmdImpl", - "methods": [ - { - "name": "getContainerId", - "parameterTypes": [] - }, - { - "name": "getForce", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.ExecCreateCmdImpl", - "fields": [ - { - "name": "attachStderr" - }, - { - "name": "attachStdin" - }, - { - "name": "attachStdout" - }, - { - "name": "cmd" - }, - { - "name": "tty" - } - ], - "methods": [ - { - "name": "getContainerId", - "parameterTypes": [] - }, - { - "name": "getEnv", - "parameterTypes": [] - }, - { - "name": "getPrivileged", - "parameterTypes": [] - }, - { - "name": "getUser", - "parameterTypes": [] - }, - { - "name": "getWorkingDir", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.dockerjava.core.command.ExecStartCmdImpl", - "fields": [ - { - "name": "detach" - }, - { - "name": "tty" - } - ] - }, - { - "type": "com.github.fge.jackson.jsonpointer.JsonPointer", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "com.github.fge.jackson.jsonpointer.JsonPointerMessages", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.fge.jackson.jsonpointer.TreePointer" - }, - { - "type": "com.github.fge.jsonpatch.JsonPatch", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "com.github.fge.jsonpatch.JsonPatchMessages", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.github.fge.jsonpatch.JsonPatchOperation" - }, - { - "type": "com.github.fge.jsonpatch.Patch" - }, - { - "type": "com.github.fge.jsonpatch.PathValueOperation" - }, - { - "type": "com.github.fge.jsonpatch.ReplaceOperation", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.github.fge.jackson.jsonpointer.JsonPointer", - "com.fasterxml.jackson.databind.JsonNode" - ] - } - ] - }, - { - "type": "com.jcraft.jzlib.JZlib" - }, - { - "type": "com.oracle.svm.core.jdk.resources.NativeImageResourceFileSystemProvider" - }, - { - "type": "com.streamx.cli.Main" - }, - { - "type": "com.streamx.cli.commands.StreamxCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.StreamxCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "allCommandsAndSubcommandsShouldExtendAbstractCommand", - "parameterTypes": [] - }, - { - "name": "shouldPrintHelpInformation", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.BashCompletionCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompleteNonDefaultTemplateIdsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompleteRegisteredTemplateIdsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompleteSettingsKeysCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompleteSettingsSetKeysCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompleteTemplateIdsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompletionCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.CompletionCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldEmitDynamicTemplateIdCompletionForPublishEvent", - "parameterTypes": [] - }, - { - "name": "shouldGenerateBashCompletionScript", - "parameterTypes": [] - }, - { - "name": "shouldGenerateZshCompletionScript", - "parameterTypes": [] - }, - { - "name": "shouldHideInternalCompleteTemplateIdsCommandFromZshSubcommands", - "parameterTypes": [] - }, - { - "name": "shouldListAllTemplateIdsViaInternalHelper", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.completion.ZshCompletionCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.local.LocalCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.local.run.RunCommand", - "fields": [ - { - "name": "meshPath" - } - ] - }, - { - "type": "com.streamx.cli.commands.local.run.RunCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldBridgeRunnerSettingToSystemPropertyForLocalRun", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenRequiredPortIsAlreadyAllocated", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenSystemPropertyIsUndefined", - "parameterTypes": [] - }, - { - "name": "shouldStartMeshSecondTimeAfterPreviousStopped", - "parameterTypes": [] - }, - { - "name": "shouldSucceedWhenInterpolationValuesAreDefined", - "parameterTypes": [] - }, - { - "name": "shouldWarnWhenEnvVariableIsUndefined", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.EventTemplatePlaceholders$Placeholder", - "methods": [ - { - "name": "description", - "parameterTypes": [] - }, - { - "name": "name", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.PublishCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.PublishCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldPrintHelpInformation", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.DefaultEventTemplatesIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldNotOverwriteUserModificationsOnSubsequentRuns", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPopulateAllDefaultTemplatesOnFirstRun", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPreferSettingsOverPopulatedTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRestoreDeletedDefaultTemplateOnNextRun", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldUseUserCreatedTemplateFromStreamxHome", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "startMesh", - "parameterTypes": [] - }, - { - "name": "stopMesh", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommand", - "fields": [ - { - "name": "eventPayloadPath" - }, - { - "name": "eventSubject" - }, - { - "name": "ingestionOptions" - }, - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "resetBaseline", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenEventPayloadPathMissing", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenTemplateIdMissing", - "parameterTypes": [] - }, - { - "name": "shouldPublishEventWithKnownEventTypes", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "startMesh", - "parameterTypes": [] - }, - { - "name": "stopMesh", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandIT$InvalidPayload", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.event.EventCommandIT" - ] - }, - { - "name": "shouldFailWhenPayloadFileNotFound", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenPayloadFileNotReadable", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenPayloadIsDirectory", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandIT$InvalidTemplate", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.event.EventCommandIT" - ] - }, - { - "name": "shouldFailWhenTemplateTypeNotFound", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandIT$OutputFormat", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.event.EventCommandIT" - ] - }, - { - "name": "shouldFormatOutputAsJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFormatOutputAsYaml", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandIT$PlaceholderSubstitution", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.event.EventCommandIT" - ] - }, - { - "name": "shouldFallbackToPayloadPathWhenSubjectNotProvided", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldHandleArraysWithPlaceholders", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldHandleNestedObjectsWithPlaceholders", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPreserveNonPlaceholderValues", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldSubstituteAllPlaceholders", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldSubstituteJsonPayloadPlaceholder", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandIT$VerboseOutput", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.event.EventCommandIT" - ] - }, - { - "name": "shouldPrintVerboseOutputWhenFlagProvided", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventCommandResult", - "methods": [ - { - "name": "error", - "parameterTypes": [] - }, - { - "name": "event", - "parameterTypes": [] - }, - { - "name": "subject", - "parameterTypes": [] - }, - { - "name": "template", - "parameterTypes": [] - }, - { - "name": "templatePath", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventTemplateCatalog$TemplateLocation", - "methods": [ - { - "name": "id", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - }, - { - "name": "source", - "parameterTypes": [] - }, - { - "name": "type", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventTemplateCatalog$TemplateLocation[]" - }, - { - "type": "com.streamx.cli.commands.publish.event.EventTemplateCatalogTest", - "fields": [ - { - "name": "home" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "blankIdReturnsEmptyOptional", - "parameterTypes": [] - }, - { - "name": "clearStreamxHome", - "parameterTypes": [] - }, - { - "name": "emptyHomeReturnsEmptyList", - "parameterTypes": [] - }, - { - "name": "findsDefaultTemplateInDefaultsFolder", - "parameterTypes": [] - }, - { - "name": "findsUserTemplateInUserFolder", - "parameterTypes": [] - }, - { - "name": "listAllSortsByIdAndDeduplicates", - "parameterTypes": [] - }, - { - "name": "listSettingsRegistrationsSkipsBlankAndNonPrefixedKeys", - "parameterTypes": [] - }, - { - "name": "redirectStreamxHome", - "parameterTypes": [] - }, - { - "name": "resolveRelativeToHomeAbsolutizesAgainstStreamxHome", - "parameterTypes": [] - }, - { - "name": "resolveRelativeToHomeKeepsAbsolutePathsUntouched", - "parameterTypes": [] - }, - { - "name": "settingsRegistrationOverridesUserAndDefaults", - "parameterTypes": [] - }, - { - "name": "templateIdsMirrorsListAllInOrder", - "parameterTypes": [] - }, - { - "name": "userFolderOverridesDefaultsFolder", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.event.EventTemplateLoaderIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenAbsolutePathDoesNotExist", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenAbsolutePathIsDirectory", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenRelativePathDoesNotExist", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenRelativePathResolvesToDirectory", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPreferSettingsTemplateWithAbsolutePathOverDefault", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPreferSettingsTemplateWithRelativePathOverDefault", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResolveDefaultTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResolveTemplateFromAbsolutePath", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResolveTemplateFromRelativeFilename", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResolveTemplateFromRelativeSubdirectoryPath", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "startMesh", - "parameterTypes": [] - }, - { - "name": "stopMesh", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommand", - "fields": [ - { - "name": "batchSize" - }, - { - "name": "continueOnError" - }, - { - "name": "debug" - }, - { - "name": "dryRun" - }, - { - "name": "ingestionOptions" - }, - { - "name": "patchName" - }, - { - "name": "path" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "resetBaseline", - "parameterTypes": [] - }, - { - "name": "resolveStructure", - "parameterTypes": [] - }, - { - "name": "shouldPrintHelpInformation", - "parameterTypes": [] - }, - { - "name": "stopMesh", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$BasicPublishing", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldNotPublishTemplateOrPatchFilesAsPayloads", - "parameterTypes": [] - }, - { - "name": "shouldOverrideTemplateInSubDirectory", - "parameterTypes": [] - }, - { - "name": "shouldProcessDeeplyNestedDirectories", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublishAllPayloadFiles", - "parameterTypes": [] - }, - { - "name": "shouldResolvePayloadPathPlaceholder", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResolveRelativePathPlaceholder", - "parameterTypes": [] - }, - { - "name": "shouldResolveRelativePathWithLevelIncludingParentDirectories", - "parameterTypes": [] - }, - { - "name": "shouldResolveRelativePathWithLevelZeroSameAsWithoutLevel", - "parameterTypes": [] - }, - { - "name": "shouldResolveRelativePathWithoutLevelSameAsLevelZero", - "parameterTypes": [] - }, - { - "name": "shouldResolveRelativePathWithoutLevelSameAsLevelZeroWithNestedTemplate", - "parameterTypes": [] - }, - { - "name": "shouldTraverseTreeAndPublishFromSubdirsWithTemplateWhenRootHasNoTemplate", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$BatchPublishing", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldContinueAfterFailedBatchWhenContinueOnErrorSet", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailOnFirstFailedBatchWithoutContinueOnError", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublishInBatches", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$Debug", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldApplyPatchPublishAndWriteArtefacts", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldProduceSameArtefactStructureAsDryRun", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublishEventsAndWriteArtefacts", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublishInBatchesAndWriteArtefacts", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$DryRun", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldAppendJsonSuffixToPayloadFilesOfAnyExtension", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldLinkPayloadToCoLocatedTemplateJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldMirrorDirectoryStructure", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPreferDryRunOverDebugWhenBothSpecified", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPrintOutputDirectoryPathAndNotPublish", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResolvePlaceholdersInRenderedEvent", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWritePatchPathAndPatchedTemplateInTemplateJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWritePayloadJsonWithCorrectFields", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWriteSeparateTemplateJsonForSubDirectoryWithOwnTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWriteTemplateJsonWithCorrectFields", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$ErrorHandling", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldContinueOnFailedEventsWhenContinueOnErrorSet", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailOnFirstFailedEvent", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$LargeScale", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldContinueAndPublishValidEventsWhenSomeBatchesFail", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailFastOnCorruptedSubDirectoryTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailFastOnInvalidPatchWithLargePayload", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublish5000FilesAcrossNestedDirectories", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublish5000FilesWithPatchApplied", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPublish5000FilesWithPayloadPathTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$OutputFormat", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldFormatOutputAsJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFormatOutputAsJsonWithErrors", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFormatOutputAsYaml", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFormatOutputAsYamlWithErrors", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$PatchSupport", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldAbortWhenMissingPatchAndUserDeclines", - "parameterTypes": [] - }, - { - "name": "shouldApplyPatchWhenFileIsPresent", - "parameterTypes": [] - }, - { - "name": "shouldContinueWithoutPatchWhenUserConfirms", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenPatchIsInvalid", - "parameterTypes": [] - }, - { - "name": "shouldNotApplyPatchToSubDirectoryWithOwnTemplateOrItsDescendants", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandIT$Validation", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.events.EventsCommandIT" - ] - }, - { - "name": "shouldAbortWhenPatchSpecifiedButNoRootTemplateAndUserDeclines", - "parameterTypes": [] - }, - { - "name": "shouldContinueWhenPatchSpecifiedButNoRootTemplateAndUserConfirms", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenRootTemplateIsCorrupted", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldSucceedWithZeroEventsWhenNoTemplateFoundAnywhere", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandResult", - "methods": [ - { - "name": "batchErrors", - "parameterTypes": [] - }, - { - "name": "batchFailureCount", - "parameterTypes": [] - }, - { - "name": "batchSuccessCount", - "parameterTypes": [] - }, - { - "name": "eventErrors", - "parameterTypes": [] - }, - { - "name": "failureCount", - "parameterTypes": [] - }, - { - "name": "successCount", - "parameterTypes": [] - }, - { - "name": "unknownCount", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandResult$BatchError" - }, - { - "type": "com.streamx.cli.commands.publish.events.EventsCommandResult$EventError", - "methods": [ - { - "name": "appliedPatch", - "parameterTypes": [] - }, - { - "name": "batchNumber", - "parameterTypes": [] - }, - { - "name": "errorMessage", - "parameterTypes": [] - }, - { - "name": "eventNumber", - "parameterTypes": [] - }, - { - "name": "subject", - "parameterTypes": [] - }, - { - "name": "templatePath", - "parameterTypes": [] - }, - { - "name": "type", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommand", - "fields": [ - { - "name": "batchSize" - }, - { - "name": "continueOnError" - }, - { - "name": "ingestionOptions" - }, - { - "name": "source" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "resetBaseline", - "parameterTypes": [] - }, - { - "name": "shouldFailOnInvalidJson", - "parameterTypes": [] - }, - { - "name": "shouldFormatOutputAsValidJsonIfErrorOccurredOrVerboseFlagIsSet", - "parameterTypes": [] - }, - { - "name": "shouldPrintHelpInformation", - "parameterTypes": [] - }, - { - "name": "shouldStreamEventsFromFilePath", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldStreamEventsFromFileUri", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldStreamEventsFromHttpUri", - "parameterTypes": [] - }, - { - "name": "shouldStreamManyEventsFromStdin", - "parameterTypes": [] - }, - { - "name": "shouldStreamSingleEventFromStdin", - "parameterTypes": [] - }, - { - "name": "startMesh", - "parameterTypes": [] - }, - { - "name": "stopMesh", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandIT$BatchStreaming", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.stream.StreamCommandIT" - ] - }, - { - "name": "shouldContinueOnFailedBatchIfContinueOnErrorFlagProvided", - "parameterTypes": [] - }, - { - "name": "shouldFailOnFirstFailedBatch", - "parameterTypes": [] - }, - { - "name": "shouldStreamEventsInBatches", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandIT$ContinueOnError", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.stream.StreamCommandIT" - ] - }, - { - "name": "shouldContinueOnFailedBatchIfContinueOnErrorFlagProvided", - "parameterTypes": [] - }, - { - "name": "shouldContinueOnInvalidEventsIfContinueOnErrorFlagProvided", - "parameterTypes": [] - }, - { - "name": "shouldFailOnFirstFailedBatch", - "parameterTypes": [] - }, - { - "name": "shouldFailOnFirstInvalidEvent", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandIT$InvalidSource", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.stream.StreamCommandIT" - ] - }, - { - "name": "shouldFailWhenFileNotFound", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenFileUriNotFound", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenHttpUriNotReachable", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenHttpUriReturns404", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenHttpUriReturns500", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenSourceFileNotReadable", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenSourceIsDirectory", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandIT$OutputFormat", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.commands.publish.stream.StreamCommandIT" - ] - }, - { - "name": "shouldFormatOutputAsJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFormatOutputAsYaml", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandIngestionConfigIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "resetBaseline", - "parameterTypes": [] - }, - { - "name": "shouldFailIfInvalidIngestionUrlProvided", - "parameterTypes": [] - }, - { - "name": "shouldFailInNoAuthTokenProvided", - "parameterTypes": [] - }, - { - "name": "shouldSucceedIfAuthTokenProvided", - "parameterTypes": [] - }, - { - "name": "shouldSucceedIfValidIngestionUrlProvided", - "parameterTypes": [] - }, - { - "name": "startMesh", - "parameterTypes": [] - }, - { - "name": "stopMesh", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandResult", - "methods": [ - { - "name": "batchErrors", - "parameterTypes": [] - }, - { - "name": "batchFailureCount", - "parameterTypes": [] - }, - { - "name": "batchSuccessCount", - "parameterTypes": [] - }, - { - "name": "eventErrors", - "parameterTypes": [] - }, - { - "name": "failureCount", - "parameterTypes": [] - }, - { - "name": "successCount", - "parameterTypes": [] - }, - { - "name": "unknownCount", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandResult$BatchError", - "methods": [ - { - "name": "batchNumber", - "parameterTypes": [] - }, - { - "name": "errorMessage", - "parameterTypes": [] - }, - { - "name": "eventCount", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.publish.stream.StreamCommandResult$EventError", - "methods": [ - { - "name": "batchNumber", - "parameterTypes": [] - }, - { - "name": "errorMessage", - "parameterTypes": [] - }, - { - "name": "eventNumber", - "parameterTypes": [] - }, - { - "name": "subject", - "parameterTypes": [] - }, - { - "name": "type", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.SettingsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.SettingsKeyCompletionCandidates", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.SettingsSetKeyCompletionCandidates", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.EventTemplatesCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.NonDefaultTemplateIdCompletionCandidates", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.RegisteredTemplateIdCompletionCandidates", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.TemplateIdCompletionCandidates", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.copy.CopyCommand", - "fields": [ - { - "name": "destId" - }, - { - "name": "sourceId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.copy.CopyCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldCopyDefaultTemplateToUserFolder", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldCopyUserTemplateUnderNewId", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldCopyViaInteractivePrompts", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailForUnknownSource", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRefuseToOverwriteExistingId", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithJsonOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.copy.CopyCommandResult", - "methods": [ - { - "name": "destId", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - }, - { - "name": "sourceId", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.create.CreateCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.create.CreateCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldCreateTemplateFromWizard", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenInputExhaustedDuringConflictLoop", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenNameBlank", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailWhenTypeBlank", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRepromptOnConflictWithDefaultTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRepromptOnIdConflictAndContinueWithFreshId", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithJsonOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.create.CreateCommandResult", - "methods": [ - { - "name": "id", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - }, - { - "name": "type", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.delete.DeleteCommand", - "fields": [ - { - "name": "templateId" - }, - { - "name": "yes" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.delete.DeleteCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldCancelOnNo", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldDeleteUserTemplateAfterConfirmation", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldDeleteUserTemplateWithYesFlag", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailForUnknownTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRefuseDeleteOfDefaultTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRefuseDeleteOfRegisteredTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithJsonOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.delete.DeleteCommandResult", - "methods": [ - { - "name": "id", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.edit.EditCommand", - "fields": [ - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.edit.EditCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "clearEditor", - "parameterTypes": [] - }, - { - "name": "setNoOpEditor", - "parameterTypes": [] - }, - { - "name": "shouldCopyDefaultIntoUserFolderOnFirstEdit", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldEditUserTemplateInPlace", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldEditViaPrompt", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailForUnknownName", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithJsonOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.edit.EditCommandResult", - "methods": [ - { - "name": "editor", - "parameterTypes": [] - }, - { - "name": "id", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.get.GetCommand", - "fields": [ - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.get.GetCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldFailForUnknownName", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldGetTemplateAsJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldGetTemplateAsTextByName", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldGetTemplateAsYaml", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldGetTemplateViaPrompt", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.list.ListCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.list.ListCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldListBuiltinTemplatesAsJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPrioritizeSettingsOverUserAndDefaults", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPrioritizeUserOverDefaults", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRenderTextOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRenderYamlOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldShowUserTemplateFromEventTemplatesFolder", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.list.ListCommandResult", - "methods": [ - { - "name": "streamxHome", - "parameterTypes": [] - }, - { - "name": "templates", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.placeholders.PlaceholdersCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.placeholders.PlaceholdersCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldWorkWithJsonOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithTextOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithYamlOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.register.RegisterCommand", - "fields": [ - { - "name": "path" - }, - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.register.RegisterCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldFailWhenArgsMissing", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWriteSettingsEntry", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.rename.RenameCommand", - "fields": [ - { - "name": "newId" - }, - { - "name": "oldId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.rename.RenameCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldRefuseToRenameDefault", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRefuseToRenameWhenNewIdAlreadyExists", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRenameSettingsRegisteredTemplate", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRenameUserTemplateFile", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldWorkWithJsonOutput", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.rename.RenameCommandResult", - "methods": [ - { - "name": "newId", - "parameterTypes": [] - }, - { - "name": "oldId", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - }, - { - "name": "source", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.resetdefaulttemplates.ResetDefaultTemplatesCommand", - "fields": [ - { - "name": "yes" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.resetdefaulttemplates.ResetDefaultTemplatesCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldCancelOnEmptyAnswer", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldCancelWhenUserDoesNotConfirm", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldNotTouchUserEventTemplatesFolder", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldOutputJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldOutputYaml", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRecreateMissingDefaultsDir", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResetWhenConfirmedWithYes", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldResetWithoutPromptWhenYesFlagSet", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.resetdefaulttemplates.ResetDefaultTemplatesCommandResult", - "methods": [ - { - "name": "path", - "parameterTypes": [] - }, - { - "name": "templates", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.unregister.UnregisterCommand", - "fields": [ - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.unregister.UnregisterCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldNotTouchDefaultsFolder", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRefuseUnknownName", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRefuseWhenNoRegistrationsExist", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRemoveSettingsEntryByName", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldRemoveSettingsEntryViaPrompt", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.validate.ValidateCommand", - "fields": [ - { - "name": "all" - }, - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.validate.ValidateCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldFailOnInvalidJson", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldFailOnMissingRequiredField", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldReportMixedResultsWithAllFlag", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldValidateAllWithFlag", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldValidateBundledDefault", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.validate.ValidateCommandResult", - "methods": [ - { - "name": "invalidCount", - "parameterTypes": [] - }, - { - "name": "results", - "parameterTypes": [] - }, - { - "name": "validCount", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.validate.ValidateCommandResult$TemplateValidation", - "methods": [ - { - "name": "error", - "parameterTypes": [] - }, - { - "name": "id", - "parameterTypes": [] - }, - { - "name": "path", - "parameterTypes": [] - }, - { - "name": "valid", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.which.WhichCommand", - "fields": [ - { - "name": "templateId" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.eventtemplates.which.WhichCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldFailForUnknown", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldOutputJsonWithFullLocation", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldPrintAbsolutePathOfDefault", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.get.GetCommand", - "fields": [ - { - "name": "key" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.get.GetCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldDisplayPropertyIfExists", - "parameterTypes": [] - }, - { - "name": "shouldFailIfNoPropertyFound", - "parameterTypes": [] - }, - { - "name": "writeConfig", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.list.ListCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.list.ListCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "clearConfig", - "parameterTypes": [] - }, - { - "name": "shouldFormatEmptyOutputAsJson", - "parameterTypes": [] - }, - { - "name": "shouldFormatEmptyOutputAsText", - "parameterTypes": [] - }, - { - "name": "shouldFormatEmptyOutputAsYaml", - "parameterTypes": [] - }, - { - "name": "shouldFormatOutputAsJson", - "parameterTypes": [] - }, - { - "name": "shouldFormatOutputAsText", - "parameterTypes": [] - }, - { - "name": "shouldFormatOutputAsYaml", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.set.SetCommand", - "fields": [ - { - "name": "key" - }, - { - "name": "value" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.set.SetCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "clearConfig", - "parameterTypes": [] - }, - { - "name": "shouldSetNewProperty", - "parameterTypes": [] - }, - { - "name": "shouldUpdateExistingProperty", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.unset.UnsetCommand", - "fields": [ - { - "name": "key" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.commands.settings.unset.UnsetCommandIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "clearConfig", - "parameterTypes": [] - }, - { - "name": "shouldNotAffectOtherProperties", - "parameterTypes": [] - }, - { - "name": "shouldSucceedWhenUnsettingNonExistentProperty", - "parameterTypes": [] - }, - { - "name": "shouldUnsetExistingProperty", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.config.StreamxHome", - "methods": [ - { - "name": "createConfigIfNotExists", - "parameterTypes": [] - }, - { - "name": "getConfigPath", - "parameterTypes": [] - }, - { - "name": "getConfigUrl", - "parameterTypes": [] - }, - { - "name": "getStreamxHome", - "parameterTypes": [] - }, - { - "name": "getStreamxHomeEnv", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.config.StreamxHomeIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldReadFromCustomHome", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldUseShortAlias", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldUseStreamxHomeCliArgOverDefault", - "parameterTypes": [ - "java.nio.file.Path" - ] - }, - { - "name": "shouldUseStreamxHomeCliArgOverEnv", - "parameterTypes": [ - "java.nio.file.Path" - ] - } - ] - }, - { - "type": "com.streamx.cli.config.StreamxHomeTest", - "fields": [ - { - "name": "tempDir" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "cleanup", - "parameterTypes": [] - }, - { - "name": "shouldApplySettingsToSystemProperties", - "parameterTypes": [] - }, - { - "name": "shouldClearStaleAppliedKeysOnReapply", - "parameterTypes": [] - }, - { - "name": "shouldCreateConfigDirectoryWhenItDoesNotExist", - "parameterTypes": [] - }, - { - "name": "shouldFallbackToDefaultWhenNeitherEnvOrSystemPropertyIsSet", - "parameterTypes": [] - }, - { - "name": "shouldNoOpWhenConfigFileMissing", - "parameterTypes": [] - }, - { - "name": "shouldNotOverrideExplicitlySetSystemProperty", - "parameterTypes": [] - }, - { - "name": "shouldUseStreamxHomeEnvVariable", - "parameterTypes": [] - }, - { - "name": "shouldUseStreamxHomeSystemProperty", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.AbstractCommand", - "fields": [ - { - "name": "helpOptions" - }, - { - "name": "output" - }, - { - "name": "spec" - }, - { - "name": "verbose" - } - ], - "methods": [ - { - "name": "setSpec", - "parameterTypes": [ - "picocli.CommandLine$Model$CommandSpec" - ] - } - ] - }, - { - "type": "com.streamx.cli.framework.AbstractCommandGroup" - }, - { - "type": "com.streamx.cli.framework.AbstractCommandOutputOptionTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldFormatResultAsJson", - "parameterTypes": [] - }, - { - "name": "shouldFormatResultAsJsonIfNoCustomFormatterProvided", - "parameterTypes": [] - }, - { - "name": "shouldFormatResultAsYaml", - "parameterTypes": [] - }, - { - "name": "shouldFormatResultWithCustomFormatter", - "parameterTypes": [] - }, - { - "name": "shouldHandleVoidResult", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.AbstractCommandTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldBeAbleToPromptForInput", - "parameterTypes": [] - }, - { - "name": "shouldExecuteSuccessfully", - "parameterTypes": [] - }, - { - "name": "shouldHandleExceptionGracefully", - "parameterTypes": [] - }, - { - "name": "shouldHideOptionsBasedOnHandler", - "parameterTypes": [] - }, - { - "name": "shouldOverrideExitCode", - "parameterTypes": [] - }, - { - "name": "shouldOverrideExitCodeEvenWhenErrorPresent", - "parameterTypes": [] - }, - { - "name": "shouldPrintErrorWhenResultHasError", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.AbstractCommandVerboseOptionTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldNotPrintStackTraceByDefault", - "parameterTypes": [] - }, - { - "name": "shouldPrintStackTraceIfProvided", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.AbstractSilentCommand" - }, - { - "type": "com.streamx.cli.framework.AbstractSilentCommandTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldNotHaveOutputOption", - "parameterTypes": [] - }, - { - "name": "shouldReturnEmptyOutput", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.CommandResultTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldHandleNullResultGracefully", - "parameterTypes": [] - }, - { - "name": "shouldReturnPrettyPrintedJsonWhenJsonFormatProvided", - "parameterTypes": [] - }, - { - "name": "shouldReturnYamlWhenYamlFormatProvided", - "parameterTypes": [] - }, - { - "name": "shouldThrowCliExceptionForUnserializableObject", - "parameterTypes": [] - }, - { - "name": "shouldUseTextFormatterWhenTextFormatProvided", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.CommonOptions", - "fields": [ - { - "name": "help" - }, - { - "name": "streamxHome" - }, - { - "name": "version" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.testing.AbstractCommandBaseTest", - "methods": [ - { - "name": "redirectStreams", - "parameterTypes": [] - }, - { - "name": "restoreStreams", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.framework.testing.AbstractSilentTestCommand" - }, - { - "type": "com.streamx.cli.framework.testing.AbstractTestCommand" - }, - { - "type": "com.streamx.cli.framework.testing.TestObject", - "unsafeAllocated": true, - "fields": [ - { - "name": "booleanValue" - }, - { - "name": "floatValue" - }, - { - "name": "longValue" - }, - { - "name": "nestedObject" - }, - { - "name": "nestedObjects" - }, - { - "name": "stringValue" - }, - { - "name": "voidValue" - } - ] - }, - { - "type": "com.streamx.cli.framework.testing.UnserializableObject", - "fields": [ - { - "name": "self" - } - ] - }, - { - "type": "com.streamx.cli.i18n.MessageProvider_$bundle", - "fields": [ - { - "name": "INSTANCE" - } - ] - }, - { - "type": "com.streamx.cli.i18n.MessageProvider_$bundle_en" - }, - { - "type": "com.streamx.cli.i18n.MessageProvider_$bundle_en_US" - }, - { - "type": "com.streamx.cli.ingestion.CloudEventsSerdeTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldDeserializeCloudEventWithData", - "parameterTypes": [] - }, - { - "name": "shouldDeserializeValidCloudEvent", - "parameterTypes": [] - }, - { - "name": "shouldThrowCliExceptionForEmptyObject", - "parameterTypes": [] - }, - { - "name": "shouldThrowCliExceptionWhenRequiredFieldsAreMissing", - "parameterTypes": [] - }, - { - "name": "shouldThrowCliExceptionWithMessageOnInvalidStructure", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest$ParseInputStream", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest" - ] - }, - { - "name": "shouldHandleEmptyInput", - "parameterTypes": [] - }, - { - "name": "shouldParseMultipleObjects", - "parameterTypes": [] - }, - { - "name": "shouldParseSingleObject", - "parameterTypes": [] - }, - { - "name": "shouldProcessStreamLazily", - "parameterTypes": [] - }, - { - "name": "shouldThrowOnInvalidJson", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest$ParseString", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest" - ] - }, - { - "name": "shouldHandleEmptyInput", - "parameterTypes": [] - }, - { - "name": "shouldParseMultipleObjects", - "parameterTypes": [] - }, - { - "name": "shouldParseMultipleObjectsNoWhitespace", - "parameterTypes": [] - }, - { - "name": "shouldParseNestedObjects", - "parameterTypes": [] - }, - { - "name": "shouldParseSingleObject", - "parameterTypes": [] - }, - { - "name": "shouldThrowOnInvalidJsonInput", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest$RoundTrip", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest" - ] - }, - { - "name": "shouldRoundTripThroughStreamMethods", - "parameterTypes": [] - }, - { - "name": "shouldRoundTripThroughStringMethods", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest$SerializeOutputStream", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest" - ] - }, - { - "name": "shouldHandleEmptyStream", - "parameterTypes": [] - }, - { - "name": "shouldSerializeMultipleObjects", - "parameterTypes": [] - }, - { - "name": "shouldSerializeSingleObject", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest$SerializeString", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.ConcatenatedJsonSerdeTest" - ] - }, - { - "name": "shouldHandleEmptyList", - "parameterTypes": [] - }, - { - "name": "shouldSerializeMultipleObjects", - "parameterTypes": [] - }, - { - "name": "shouldSerializeNestedObjects", - "parameterTypes": [] - }, - { - "name": "shouldSerializeSingleObject", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientConfig" - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientPicocliOptions", - "fields": [ - { - "name": "authToken" - }, - { - "name": "insecure" - }, - { - "name": "url" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "clearConfig", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT$CliFlagOverrideTests", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT" - ] - }, - { - "name": "shouldOverrideAllConfigValuesWithCliFlags", - "parameterTypes": [] - }, - { - "name": "shouldOverrideConfigAuthTokenWithCliFlag", - "parameterTypes": [] - }, - { - "name": "shouldOverrideConfigInsecureWithCliFlag", - "parameterTypes": [] - }, - { - "name": "shouldOverrideConfigUrlWithCliFlag", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT$ConfigFallbackTests", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT" - ] - }, - { - "name": "shouldFallBackToAllConfigValues", - "parameterTypes": [] - }, - { - "name": "shouldUseAuthTokenFromConfig", - "parameterTypes": [] - }, - { - "name": "shouldUseIngestionUrlFromConfig", - "parameterTypes": [] - }, - { - "name": "shouldUseInsecureFromConfig", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT$VerboseOutputTests", - "methods": [ - { - "name": "", - "parameterTypes": [ - "com.streamx.cli.ingestion.IngestionClientPicocliOptionsIT" - ] - }, - { - "name": "shouldContainAllConfigKeys", - "parameterTypes": [] - }, - { - "name": "shouldMaskAuthTokenInOutput", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.interpolation.Interpolating" - }, - { - "type": "com.streamx.cli.interpolation.InterpolatingMapperTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "cleanup", - "parameterTypes": [] - }, - { - "name": "testArrayInterpolation", - "parameterTypes": [] - }, - { - "name": "testInterpolateFieldWithDefault", - "parameterTypes": [] - }, - { - "name": "testInterpolateStringFields", - "parameterTypes": [] - }, - { - "name": "testMixedTypesInterpolation", - "parameterTypes": [] - }, - { - "name": "testNestedInterpolation", - "parameterTypes": [] - }, - { - "name": "testNotInterpolatingFieldWithoutPlaceholder", - "parameterTypes": [] - }, - { - "name": "testNotInterpolatingNullField", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.interpolation.InterpolatingMapperTest$MixedTypesTestClass", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setBool", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setInteger", - "parameterTypes": [ - "java.lang.Integer" - ] - }, - { - "name": "setLongField", - "parameterTypes": [ - "java.lang.Long" - ] - }, - { - "name": "setString", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setUrl", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "com.streamx.cli.interpolation.InterpolatingMapperTest$NestedTestClass", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setNested", - "parameterTypes": [ - "com.streamx.cli.interpolation.InterpolatingMapperTest$TestClass" - ] - } - ] - }, - { - "type": "com.streamx.cli.interpolation.InterpolatingMapperTest$TestClass", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setField", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "com.streamx.cli.interpolation.InterpolationSupport" - }, - { - "type": "com.streamx.cli.interpolation.InterpolationSupportTest", - "fields": [ - { - "name": "interpolationSupport" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "cleanup", - "parameterTypes": [] - }, - { - "name": "testExpandWithEmptyString", - "parameterTypes": [] - }, - { - "name": "testExpandWithEscapedPropertySyntax", - "parameterTypes": [] - }, - { - "name": "testExpandWithMissingEnvVariable", - "parameterTypes": [] - }, - { - "name": "testExpandWithMissingProperty", - "parameterTypes": [] - }, - { - "name": "testExpandWithMultipleProperties", - "parameterTypes": [] - }, - { - "name": "testExpandWithMultipleSources", - "parameterTypes": [] - }, - { - "name": "testExpandWithNestedProperties", - "parameterTypes": [] - }, - { - "name": "testExpandWithNoInterpolation", - "parameterTypes": [] - }, - { - "name": "testExpandWithNullInput", - "parameterTypes": [] - }, - { - "name": "testExpandWithPartialProperty", - "parameterTypes": [] - }, - { - "name": "testExpandWithValidProperty", - "parameterTypes": [] - }, - { - "name": "testExpandWithWhitespaceAroundProperty", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.interpolation.ObjectMapperProducer" - }, - { - "type": "com.streamx.cli.mesh.ContainerWatcher" - }, - { - "type": "com.streamx.cli.mesh.MeshDefinitionResolver" - }, - { - "type": "com.streamx.cli.mesh.MeshDefinitionResolverInterpolationTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "clearSystemProperties", - "parameterTypes": [] - }, - { - "name": "shouldFailWithUndefinedProperty", - "parameterTypes": [] - }, - { - "name": "shouldKeepPlaceholderForUndefinedEnvVariable", - "parameterTypes": [] - }, - { - "name": "shouldResolveWithMandatoryAndOptionalPropertiesDefined", - "parameterTypes": [] - }, - { - "name": "shouldResolveWithMandatoryPropertyDefinedAndOptionalPropertyUndefined", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.mesh.MeshDefinitionResolverTest", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "shouldResolveGivenMeshDefinition", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.mesh.MeshManager" - }, - { - "type": "com.streamx.cli.mesh.MeshWatcher" - }, - { - "type": "com.streamx.cli.nativeimage.DockerNamedVolumeMountMetadataIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "cleanup", - "parameterTypes": [] - }, - { - "name": "shouldExposeNameFieldOnInspectedNamedVolumeMount", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.nativeimage.DockerPortConflictMetadataIT", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "cleanup", - "parameterTypes": [] - }, - { - "name": "shouldThrowWhenStartingSecondContainerWithSameHostPort", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.test.CliBaseIT", - "fields": [ - { - "name": "streamxHome" - } - ], - "methods": [ - { - "name": "cleanupProcess", - "parameterTypes": [] - }, - { - "name": "configureIngestionUrlIfMeshActive", - "parameterTypes": [] - }, - { - "name": "ensureBuilt", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.test.MeshStopper" - }, - { - "type": "com.streamx.cli.test.annotation.DisabledIfDockerUnavailable" - }, - { - "type": "com.streamx.cli.test.annotation.DockerAvailableCondition", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.util.BannerPrinter" - }, - { - "type": "com.streamx.cli.util.ExecutionExceptionHandler" - }, - { - "type": "com.streamx.cli.util.VersionProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.cli.util.path.CurrentDirectoryProvider" - }, - { - "type": "com.streamx.cli.util.path.SystemCurrentDirectoryProvider" - }, - { - "type": "com.streamx.mesh.deserializer.StrictStringDeserializer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.AbstractContainer", - "methods": [ - { - "name": "getEnvironmentFrom", - "parameterTypes": [] - }, - { - "name": "getVolumesFrom", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.AbstractFromSource" - }, - { - "type": "com.streamx.mesh.model.AbstractService", - "fields": [ - { - "name": "containers" - }, - { - "name": "descriptor" - } - ], - "methods": [ - { - "name": "getContainers", - "parameterTypes": [] - }, - { - "name": "getDescriptor", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.AutoRef" - }, - { - "type": "com.streamx.mesh.model.AutoRefUsing", - "methods": [ - { - "name": "jsonValue", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.Channel" - }, - { - "type": "com.streamx.mesh.model.ChannelDescriptor" - }, - { - "type": "com.streamx.mesh.model.ContainerCommonConfig", - "fields": [ - { - "name": "environment" - }, - { - "name": "servicePorts" - } - ], - "methods": [ - { - "name": "getEnvironment", - "parameterTypes": [] - }, - { - "name": "getServicePorts", - "parameterTypes": [] - }, - { - "name": "getVolumes", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.ContainerDescriptor", - "fields": [ - { - "name": "image" - }, - { - "name": "incoming" - }, - { - "name": "outgoing" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getAutoRef", - "parameterTypes": [] - }, - { - "name": "getChannelsPort", - "parameterTypes": [] - }, - { - "name": "getImage", - "parameterTypes": [] - }, - { - "name": "getIncoming", - "parameterTypes": [] - }, - { - "name": "getOutgoing", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.EnvironmentFrom" - }, - { - "type": "com.streamx.mesh.model.IncomingChannel", - "fields": [ - { - "name": "ref" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getRef", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.IncomingChannelCommonConfig", - "methods": [ - { - "name": "getConsumes", - "parameterTypes": [] - }, - { - "name": "getEnforceMonotonicEventTime", - "parameterTypes": [] - }, - { - "name": "getInitState", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.IncomingChannelDescriptor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getBinding", - "parameterTypes": [] - }, - { - "name": "getMaxInflightMessages", - "parameterTypes": [] - }, - { - "name": "getShared", - "parameterTypes": [] - }, - { - "name": "getSync", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.IngestionService", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.IngestionServiceContainer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.InitStateMode", - "methods": [ - { - "name": "jsonValue", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.MeshDefaults" - }, - { - "type": "com.streamx.mesh.model.MeshDefaults$ServiceDefaults" - }, - { - "type": "com.streamx.mesh.model.Networking" - }, - { - "type": "com.streamx.mesh.model.OutgoingChannel", - "fields": [ - { - "name": "ref" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getRef", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.OutgoingChannelCommonConfig", - "fields": [ - { - "name": "produces" - } - ], - "methods": [ - { - "name": "getProduces", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.OutgoingChannelDescriptor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getBinding", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.Service", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.ServiceCommonConfig", - "methods": [ - { - "name": "getVolumes", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.ServiceContainer", - "fields": [ - { - "name": "incoming" - }, - { - "name": "outgoing" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getIncoming", - "parameterTypes": [] - }, - { - "name": "getOutgoing", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.ServiceDescriptor", - "fields": [ - { - "name": "containers" - }, - { - "name": "type" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getContainers", - "parameterTypes": [] - }, - { - "name": "getType", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.ServiceMesh", - "fields": [ - { - "name": "descriptors" - }, - { - "name": "edge" - }, - { - "name": "ingestion" - }, - { - "name": "processing" - }, - { - "name": "sources" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getDefault", - "parameterTypes": [] - }, - { - "name": "getDescriptors", - "parameterTypes": [] - }, - { - "name": "getEdge", - "parameterTypes": [] - }, - { - "name": "getIngestion", - "parameterTypes": [] - }, - { - "name": "getNetworking", - "parameterTypes": [] - }, - { - "name": "getProcessing", - "parameterTypes": [] - }, - { - "name": "getSources", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.Source", - "fields": [ - { - "name": "outgoing" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "getOutgoing", - "parameterTypes": [] - } - ] - }, - { - "type": "com.streamx.mesh.model.Volume" - }, - { - "type": "com.streamx.mesh.model.VolumesFrom" - }, - { - "type": "com.streamx.mesh.model.validation.Validatable" - }, - { - "type": "com.streamx.runner.StreamxRunner" - }, - { - "type": "com.streamx.runner.docker.RyukResourcesCleaner" - }, - { - "type": "com.streamx.runner.event.ContainerFailed" - }, - { - "type": "com.streamx.runner.event.ContainerStarted" - }, - { - "type": "com.streamx.runner.event.ContainerStopped" - }, - { - "type": "com.streamx.runner.event.MeshReloadUpdate" - }, - { - "type": "com.streamx.runner.event.MeshStarted" - }, - { - "type": "com.streamx.runner.event.StreamxStarted" - }, - { - "type": "com.streamx.runner.main.Main" - }, - { - "type": "com.streamx.runner.main.Main$StreamxApp" - }, - { - "type": "com.streamx.runner.mesh.BaseLifecycleManager" - }, - { - "type": "com.streamx.runner.mesh.ContainerController" - }, - { - "type": "com.streamx.runner.mesh.ContainersLifecycleManager" - }, - { - "type": "com.streamx.runner.mesh.MeshContextMerger" - }, - { - "type": "com.streamx.runner.mesh.MeshLifecycleManager" - }, - { - "type": "com.streamx.runner.validation.DockerContainerValidator" - }, - { - "type": "com.streamx.runner.validation.StreamxRunnerValidator" - }, - { - "type": "com.sun.crypto.provider.AESCipher$General", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.ARCFOURCipher", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.ChaCha20Cipher$ChaCha20Poly1305", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.DESCipher", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.DESedeCipher", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.DHParameters", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.GaloisCounterMode$AESGCM", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.KeyWrapCipher$AES_KW_NoPadding", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.RSACipher", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.crypto.provider.TlsMasterSecretGenerator", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "com.sun.tools.attach.VirtualMachine" - }, - { - "type": "double" - }, - { - "type": "groovy.lang.Closure" - }, - { - "type": "int[]" - }, - { - "type": "io.cloudevents.jackson.JsonFormat" - }, - { - "type": "io.fabric8.kubernetes.api.builder.Editable" - }, - { - "type": "io.fabric8.kubernetes.api.model.KubernetesResource" - }, - { - "type": "io.fabric8.kubernetes.api.model.LabelSelector" - }, - { - "type": "io.fabric8.kubernetes.api.model.LabelSelectorRequirement" - }, - { - "type": "io.fabric8.kubernetes.api.model.Quantity$Deserializer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.AllowedRoutes" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.BackendObjectReference" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.CookieConfig" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.Fraction" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.FrontendTLSValidation" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayAddress" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayBackendTLS" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayInfrastructure" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewaySpec" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.GatewayTLSConfig" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPBackendRef" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPHeader" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPHeaderFilter" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPHeaderMatch" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPPathMatch" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPPathModifier" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPQueryParamMatch" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRequestMirrorFilter" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRequestRedirectFilter" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRouteFilter" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRouteMatch" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRouteRetry" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRouteRule" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRouteSpec" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPRouteTimeouts" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.HTTPURLRewriteFilter" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.Listener" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.LocalObjectReference" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.LocalParametersReference" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.ObjectReference" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.ParentReference" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.RouteGroupKind" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.RouteNamespaces" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.SecretObjectReference" - }, - { - "type": "io.fabric8.kubernetes.api.model.gatewayapi.v1.SessionPersistence" - }, - { - "type": "io.netty.channel.EventLoopGroup" - }, - { - "type": "io.netty.util.concurrent.DefaultPromise" - }, - { - "type": "io.netty.util.concurrent.SingleThreadEventExecutor" - }, - { - "type": "io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueColdProducerFields", - "fields": [ - { - "name": "producerLimit" - } - ] - }, - { - "type": "io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueConsumerFields", - "fields": [ - { - "name": "consumerIndex" - } - ] - }, - { - "type": "io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueProducerFields", - "fields": [ - { - "name": "producerIndex" - } - ] - }, - { - "type": "io.quarkus.arc.All" - }, - { - "type": "io.quarkus.arc.ArcContainer" - }, - { - "type": "io.quarkus.arc.AsyncObserverExceptionHandler" - }, - { - "type": "io.quarkus.arc.InjectableBean$Kind" - }, - { - "type": "io.quarkus.arc.deployment.ArcConfig" - }, - { - "type": "io.quarkus.arc.deployment.ArcConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ArcContextPropagationConfig" - }, - { - "type": "io.quarkus.arc.deployment.ArcContextPropagationConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ArcDevModeConfig" - }, - { - "type": "io.quarkus.arc.deployment.ArcDevModeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ArcProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "buildCompatibleExtensions", - "parameterTypes": [] - }, - { - "name": "exposeCustomScopeNames", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "feature", - "parameterTypes": [] - }, - { - "name": "generateResources", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.LiveReloadBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.concurrent.ExecutorService" - ] - }, - { - "name": "initialize", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.builditem.ApplicationIndexBuildItem", - "io.quarkus.arc.deployment.BuildCompatibleExtensionsBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.Optional", - "io.quarkus.deployment.Capabilities", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "initializeContainer", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.runtime.ArcRecorder", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "java.util.Optional", - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - }, - { - "name": "launchMode", - "parameterTypes": [] - }, - { - "name": "loggerProducer", - "parameterTypes": [] - }, - { - "name": "marker", - "parameterTypes": [] - }, - { - "name": "notifyBeanContainerListeners", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcContainerBuildItem", - "java.util.List", - "io.quarkus.arc.runtime.ArcRecorder" - ] - }, - { - "name": "quarkusApplication", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem" - ] - }, - { - "name": "quarkusMain", - "parameterTypes": [] - }, - { - "name": "registerBeans", - "parameterTypes": [ - "io.quarkus.arc.deployment.ContextRegistrationPhaseBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerContextPropagation", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerPreShutdownListener", - "parameterTypes": [ - "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerSyntheticObservers", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupExecutor", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ExecutorBuildItem", - "io.quarkus.arc.runtime.ArcRecorder" - ] - }, - { - "name": "signalBeanContainerReady", - "parameterTypes": [ - "io.quarkus.arc.runtime.appcds.JvmStartupOptimizerArchiveRecorder", - "io.quarkus.arc.deployment.PreBeanContainerBuildItem", - "java.util.Optional", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unremovableAsyncObserverExceptionHandlers", - "parameterTypes": [] - }, - { - "name": "validate", - "parameterTypes": [ - "io.quarkus.arc.deployment.ObserverRegistrationPhaseBuildItem", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "validateAsyncObserverExceptionHandlers", - "parameterTypes": [ - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ArcTestConfig" - }, - { - "type": "io.quarkus.arc.deployment.ArcTestConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ArcTestSteps", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "addInterceptorBinding", - "parameterTypes": [] - }, - { - "name": "additionalBeans", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "appClassPredicate", - "parameterTypes": [] - }, - { - "name": "initTestApplicationClassPredicateBean", - "parameterTypes": [ - "io.quarkus.arc.runtime.ArcRecorder", - "io.quarkus.arc.deployment.BeanContainerBuildItem", - "io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem", - "io.quarkus.arc.deployment.CompletedApplicationClassPredicateBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.AutoAddScopeProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "annotationTransformer", - "parameterTypes": [ - "java.util.List", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.AutoInjectFieldProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "annotationTransformer", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "autoInjectQualifiers", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.AutoProducerMethodsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "annotationTransformer", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.BeanArchiveProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.LiveReloadBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.arc.deployment.BuildCompatibleExtensionsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.BuildTimeEnabledProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "buildExclusions", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "conditionTransformer", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "findEnablementStereotypes", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem" - ] - }, - { - "name": "ifBuildProfile", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.arc.deployment.BuildTimeEnabledStereotypesBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "ifBuildProperty", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.arc.deployment.BuildTimeEnabledStereotypesBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unlessBuildProfile", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.arc.deployment.BuildTimeEnabledStereotypesBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unlessBuildProperty", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.arc.deployment.BuildTimeEnabledStereotypesBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.CommandLineArgumentsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "commandLineArgs", - "parameterTypes": [ - "io.quarkus.deployment.builditem.RawCommandLineArgumentsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ConfigBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "additionalBeans", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "configPropertyInjectionPoints", - "parameterTypes": [ - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "generateConfigProperties", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerConfigClasses", - "parameterTypes": [ - "io.quarkus.deployment.recording.RecorderContext", - "io.quarkus.arc.runtime.ConfigRecorder", - "java.util.List", - "java.util.List" - ] - }, - { - "name": "registerConfigMappingsBean", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerConfigPropertiesBean", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerCustomConfigBeanTypes", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "validateConfigMappingsInjectionPoints", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "validateConfigPropertiesInjectionPoints", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "validateRuntimeConfigProperty", - "parameterTypes": [ - "io.quarkus.arc.runtime.ConfigRecorder", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "validateStaticInitConfigProperty", - "parameterTypes": [ - "io.quarkus.arc.runtime.ConfigRecorder", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "vetoMPConfigProperties", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ConfigStaticInitBuildSteps", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "registerBeans", - "parameterTypes": [] - }, - { - "name": "transformConfigProducer", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ExecutorServiceProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "executorServiceBean", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ExecutorBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.HotDeploymentConfigBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "configFile", - "parameterTypes": [] - }, - { - "name": "startup", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.LifecycleEventsBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "startupEvent", - "parameterTypes": [ - "io.quarkus.arc.runtime.ArcRecorder", - "java.util.List", - "io.quarkus.arc.deployment.BeanContainerBuildItem", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.arc.deployment.ArcConfig" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.LoggingBeanSupportProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "discoveredComponents", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.LookupConditionsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "suppressConditionsGenerators", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ObserverValidationProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "validateApplicationObserver", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ReflectiveBeanClassesProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "implicitReflectiveBeanClasses", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.ShutdownBuildSteps", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "registerShutdownObservers", - "parameterTypes": [ - "io.quarkus.arc.deployment.ObserverRegistrationPhaseBuildItem", - "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "shutdownAddScope", - "parameterTypes": [ - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig" - ] - }, - { - "name": "unremovableBeans", - "parameterTypes": [ - "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.SplitPackageProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "splitPackageDetection", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.arc.deployment.ArcConfig", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.StartupBuildSteps", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "addScope", - "parameterTypes": [ - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem" - ] - }, - { - "name": "registerStartupObservers", - "parameterTypes": [ - "io.quarkus.arc.deployment.ObserverRegistrationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unremovableBeans", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.SyntheticBeansProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "initRegular", - "parameterTypes": [ - "java.util.List", - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "initRuntime", - "parameterTypes": [ - "io.quarkus.arc.runtime.ArcRecorder", - "java.util.List", - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "initStatic", - "parameterTypes": [ - "io.quarkus.arc.runtime.ArcRecorder", - "java.util.List", - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.TestsAsBeansProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "testAnnotations", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "testClassBeans", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "vetoTestClassesNotMatchingTestProfile", - "parameterTypes": [ - "java.util.Optional", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "java.util.List" - ] - }, - { - "name": "vetoTestProfileBeans", - "parameterTypes": [ - "java.util.Optional", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.UnremovableAnnotationsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "unremovableBeans", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.WrongAnnotationUsageProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "detect", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.deployment.builditem.ApplicationIndexBuildItem", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "io.quarkus.arc.deployment.TransformedAnnotationsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.InterceptorResolverBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.devui.ArcDevModeApiProcessor", - "methods": [ - { - "name": "collectBeanInfo", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "io.quarkus.arc.deployment.CompletedApplicationClassPredicateBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.devui.ArcDevUIProcessor", - "methods": [ - { - "name": "createJsonRPCService", - "parameterTypes": [] - }, - { - "name": "pages", - "parameterTypes": [ - "io.quarkus.arc.deployment.devui.ArcBeanInfoBuildItem", - "io.quarkus.arc.deployment.ArcConfig" - ] - }, - { - "name": "registerMonitoringComponents", - "parameterTypes": [ - "io.quarkus.arc.deployment.ArcConfig", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.devui.JsonRpcMethodsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "jsonRpcMethods", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.init.InitializationTaskProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "startApplicationInitializer", - "parameterTypes": [ - "io.quarkus.runtime.init.InitializationTaskRecorder", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "callInitializer", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanContainerBuildItem", - "java.util.List", - "io.quarkus.arc.runtime.InterceptedStaticMethodsRecorder" - ] - }, - { - "name": "collectInterceptedStaticMethods", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.arc.deployment.InterceptorResolverBuildItem", - "io.quarkus.arc.deployment.TransformedAnnotationsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "processInterceptedStaticMethods", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "java.util.List", - "io.quarkus.arc.deployment.CompletedApplicationClassPredicateBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.arc.generator.Default_jakarta_enterprise_context_ApplicationScoped_ContextInstances" - }, - { - "type": "io.quarkus.arc.impl.AbstractInstanceHandle" - }, - { - "type": "io.quarkus.arc.impl.AnnotationLiterals" - }, - { - "type": "io.quarkus.arc.impl.CurrentManagedContext$CurrentContextState", - "fields": [ - { - "name": "state" - } - ] - }, - { - "type": "io.quarkus.arc.impl.DefaultAsyncObserverExceptionHandler" - }, - { - "type": "io.quarkus.arc.impl.InjectableRequestContextController" - }, - { - "type": "io.quarkus.arc.impl.Qualifiers" - }, - { - "type": "io.quarkus.arc.impl.UncaughtExceptions" - }, - { - "type": "io.quarkus.arc.runtime.ArcRecorder" - }, - { - "type": "io.quarkus.arc.runtime.ArcTestRequestScopeProvider" - }, - { - "type": "io.quarkus.arc.runtime.BeanContainer" - }, - { - "type": "io.quarkus.arc.runtime.ConfigRecorder" - }, - { - "type": "io.quarkus.arc.runtime.ConfigStaticInitValues" - }, - { - "type": "io.quarkus.arc.runtime.InterceptedStaticMethodsRecorder" - }, - { - "type": "io.quarkus.arc.runtime.LaunchModeProducer" - }, - { - "type": "io.quarkus.arc.runtime.LoggerProducer" - }, - { - "type": "io.quarkus.arc.runtime.appcds.JvmStartupOptimizerArchiveRecorder" - }, - { - "type": "io.quarkus.arc.runtime.context.ArcContextProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.arc.runtime.test.PreloadedTestApplicationClassPredicate" - }, - { - "type": "io.quarkus.arc.setup.Default_ComponentsProvider" - }, - { - "type": "io.quarkus.arc.setup.com_streamx_cli_interpolation_InterpolationSupportTest_ComponentsProvider" - }, - { - "type": "io.quarkus.banner.BannerConfig" - }, - { - "type": "io.quarkus.banner.BannerConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.bootstrap.classloading.QuarkusClassLoader", - "methods": [ - { - "name": "visibleDefineClass", - "parameterTypes": [ - "java.lang.String", - "byte[]", - "int", - "int" - ] - } - ] - }, - { - "type": "io.quarkus.bootstrap.logging.EmptyLogContextConfigurator" - }, - { - "type": "io.quarkus.bootstrap.logging.InitialConfigurator" - }, - { - "type": "io.quarkus.bootstrap.model.CapabilityContract", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.DefaultApplicationModel", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.ExtensionDevModeConfig", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.JvmOptionsBuilder$JvmOptionsImpl", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.PlatformImportsImpl", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.PlatformImportsImpl$PlatformImport", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.PlatformInfo", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.PlatformReleaseInfo", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.model.PlatformStreamInfo", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.resolver.maven.options.BootstrapMavenOptionsParser", - "methods": [ - { - "name": "parse", - "parameterTypes": [ - "java.lang.String[]" - ] - } - ] - }, - { - "type": "io.quarkus.bootstrap.runner.Timing", - "methods": [ - { - "name": "staticInitStarted", - "parameterTypes": [ - "boolean" - ] - } - ] - }, - { - "type": "io.quarkus.bootstrap.workspace.DefaultArtifactSources", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.workspace.DefaultSourceDir", - "serializable": true - }, - { - "type": "io.quarkus.bootstrap.workspace.DefaultWorkspaceModule", - "serializable": true - }, - { - "type": "io.quarkus.deployment.BootstrapConfig" - }, - { - "type": "io.quarkus.deployment.BootstrapConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.CollectionClassProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setupCollectionClasses", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.ConfigBuildTimeConfig" - }, - { - "type": "io.quarkus.deployment.ConfigBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.ConstructorPropertiesProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.DebugConfig" - }, - { - "type": "io.quarkus.deployment.DebugConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.DockerStatusProcessor", - "methods": [ - { - "name": "IsDockerWorking", - "parameterTypes": [ - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.ExtensionLoaderConfig" - }, - { - "type": "io.quarkus.deployment.ExtensionLoaderConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.ForkJoinPoolProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setProperty", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.InetAddressProcessor", - "methods": [ - { - "name": "registerInetAddressServiceProvider", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.IsDevelopment", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.runtime.LaunchMode" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.IsLocalDevelopment", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.runtime.LaunchMode", - "io.quarkus.dev.spi.DevModeType" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.IsProduction", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.runtime.LaunchMode" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.IsTest", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.runtime.LaunchMode" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.JBossThreadsProcessor", - "methods": [ - { - "name": "build", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.JniProcessor", - "fields": [ - { - "name": "jni" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setupJni", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.JniProcessor$JniConfig" - }, - { - "type": "io.quarkus.deployment.JniProcessor$JniConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.PlatformConfig" - }, - { - "type": "io.quarkus.deployment.PlatformConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.PodmanStatusProcessor", - "methods": [ - { - "name": "isPodmanWorking", - "parameterTypes": [ - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.SecureRandomProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "registerReflectiveMethods", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.SnapStartConfig" - }, - { - "type": "io.quarkus.deployment.SnapStartConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.SnapStartProcessor", - "methods": [ - { - "name": "generateClassListFromApplication", - "parameterTypes": [ - "io.quarkus.deployment.SnapStartConfig", - "java.util.Optional", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.TransformedClassesBuildItem", - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "java.util.List" - ] - }, - { - "name": "processSnapStart", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.runtime.SnapStartRecorder", - "io.quarkus.deployment.SnapStartConfig", - "java.util.Optional" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.SslProcessor", - "fields": [ - { - "name": "ssl" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "runtime", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupNativeSsl", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.SslProcessor$SslConfig" - }, - { - "type": "io.quarkus.deployment.SslProcessor$SslConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.cmd.DeployCommandProcessor", - "methods": [ - { - "name": "commandDeclaration", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "commandExecution", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.cmd.DeployConfig" - }, - { - "type": "io.quarkus.deployment.cmd.DeployConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.cmd.RunCommandProcessor", - "methods": [ - { - "name": "commands", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "defaultJavaCommand", - "parameterTypes": [ - "io.quarkus.deployment.pkg.PackageConfig", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.configuration.BuildTimeConfigBuilderCustomizer" - }, - { - "type": "io.quarkus.deployment.configuration.ClassLoadingConfig" - }, - { - "type": "io.quarkus.deployment.configuration.ClassLoadingConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.configuration.tracker.ConfigTrackingConfig" - }, - { - "type": "io.quarkus.deployment.configuration.tracker.ConfigTrackingConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.console.ConsoleConfig" - }, - { - "type": "io.quarkus.deployment.console.ConsoleConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.console.ConsoleProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "helpCommand", - "parameterTypes": [] - }, - { - "name": "installCliCommands", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "missingDevUIMessageHandler", - "parameterTypes": [ - "io.quarkus.deployment.Capabilities" - ] - }, - { - "name": "quitCommand", - "parameterTypes": [] - }, - { - "name": "setupConsole", - "parameterTypes": [ - "io.quarkus.deployment.dev.testing.TestConfig", - "io.quarkus.deployment.console.ConsoleConfig", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupExceptionHandler", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.ide.EffectiveIdeBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.console.ConsoleProcessor$HelpCommand" - }, - { - "type": "io.quarkus.deployment.console.ConsoleProcessor$QuitCommand" - }, - { - "type": "io.quarkus.deployment.console.QuarkusCommand" - }, - { - "type": "io.quarkus.deployment.dev.ConfigureDisableInstrumentationBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "configure", - "parameterTypes": [ - "java.util.List", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.HotDeploymentWatchedFileBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setupWatchedFileHotDeployment", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.devservices.ComposeBuildTimeConfig" - }, - { - "type": "io.quarkus.deployment.dev.devservices.ComposeBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.devservices.ComposeDevServicesBuildTimeConfig" - }, - { - "type": "io.quarkus.deployment.dev.devservices.ComposeDevServicesBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.devservices.DevServicesConfig" - }, - { - "type": "io.quarkus.deployment.dev.devservices.DevServicesConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.io.NioThreadPoolDevModeProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setupTCCL", - "parameterTypes": [ - "io.quarkus.runtime.dev.io.NioThreadPoolRecorder", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig" - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$Container" - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$Container$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$Profile" - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$Profile$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$RestAssured" - }, - { - "type": "io.quarkus.deployment.dev.testing.TestConfig$RestAssured$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "handle", - "parameterTypes": [] - }, - { - "name": "instrumentTestClasses", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "searchForTags", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - }, - { - "name": "sharedStateListener", - "parameterTypes": [] - }, - { - "name": "startTesting", - "parameterTypes": [ - "io.quarkus.deployment.dev.testing.TestConfig", - "io.quarkus.deployment.builditem.LiveReloadBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "java.util.List" - ] - }, - { - "name": "testConsoleCommand", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$ExcludePatternCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$ExcludeTagsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$IncludePatternCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$IncludeTagsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$PatternCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$TagCompleter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$TagsCommand", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$TestCommand" - }, - { - "type": "io.quarkus.deployment.dev.testing.TestTracingProcessor$TestSelectionCommand" - }, - { - "type": "io.quarkus.deployment.execannotations.ExecutionModelAnnotationsConfig" - }, - { - "type": "io.quarkus.deployment.execannotations.ExecutionModelAnnotationsConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.execannotations.ExecutionModelAnnotationsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "check", - "parameterTypes": [ - "io.quarkus.deployment.execannotations.ExecutionModelAnnotationsConfig", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "java.util.List" - ] - }, - { - "name": "devuiJsonRpcServices", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.ide.IdeConfig" - }, - { - "type": "io.quarkus.deployment.ide.IdeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.ide.IdeProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "detectIdeFiles", - "parameterTypes": [ - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem" - ] - }, - { - "name": "detectRunningIdeProcesses", - "parameterTypes": [ - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - }, - { - "name": "effectiveIde", - "parameterTypes": [ - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.ide.IdeConfig", - "io.quarkus.deployment.ide.IdeFileBuildItem", - "io.quarkus.deployment.ide.IdeRunningProcessBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.index.ApplicationArchiveBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "addConfiguredIndexedDependencies", - "parameterTypes": [ - "io.quarkus.deployment.index.ApplicationArchiveBuildStep$IndexDependencyConfiguration", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.QuarkusBuildCloseablesBuildItem", - "io.quarkus.deployment.builditem.ArchiveRootBuildItem", - "io.quarkus.deployment.builditem.ApplicationIndexBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.LiveReloadBuildItem", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.configuration.ClassLoadingConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.index.ApplicationArchiveBuildStep$IndexDependencyConfiguration" - }, - { - "type": "io.quarkus.deployment.index.ApplicationArchiveBuildStep$IndexDependencyConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.index.ApplicationArchiveBuildStep$IndexDependencyConfiguration$IndexDependencyConfig" - }, - { - "type": "io.quarkus.deployment.index.IndexDependencyConfig" - }, - { - "type": "io.quarkus.deployment.logging.LoggingResourceProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "closeBuildTimeLogging", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "logConsoleCommand", - "parameterTypes": [] - }, - { - "name": "miscSetup", - "parameterTypes": [ - "java.util.function.Consumer", - "java.util.function.Consumer", - "java.util.function.Consumer" - ] - }, - { - "name": "registerMetrics", - "parameterTypes": [ - "io.quarkus.runtime.logging.LogMetricsHandlerRecorder", - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.Optional" - ] - }, - { - "name": "setMinLevelForInitialConfigurator", - "parameterTypes": [ - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setProperty", - "parameterTypes": [] - }, - { - "name": "setUpDarkeningDefault", - "parameterTypes": [ - "java.util.function.Consumer" - ] - }, - { - "name": "setUpDefaultLevels", - "parameterTypes": [ - "java.util.List", - "java.util.function.Consumer", - "java.util.function.Consumer" - ] - }, - { - "name": "setUpDefaultLogCleanupFilters", - "parameterTypes": [ - "java.util.List", - "java.util.function.Consumer" - ] - }, - { - "name": "setUpMinLevelLogging", - "parameterTypes": [ - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.deployment.builditem.LogCategoryMinLevelDefaultsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupLogFilters", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupLoggingRuntimeInit", - "parameterTypes": [ - "io.quarkus.deployment.recording.RecorderContext", - "io.quarkus.runtime.logging.LoggingSetupRecorder", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.builditem.LogCategoryMinLevelDefaultsBuildItem", - "java.util.Optional", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.Optional", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupLoggingStaticInit", - "parameterTypes": [ - "io.quarkus.runtime.logging.LoggingSetupRecorder", - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - }, - { - "name": "setupStackTraceFormatter", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.deployment.ide.EffectiveIdeBuildItem", - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem", - "java.util.List", - "io.quarkus.deployment.builditem.CuratedApplicationShutdownBuildItem", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.logging.LoggingResourceProcessor$LevelCompleter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.logging.LoggingResourceProcessor$LogCommand" - }, - { - "type": "io.quarkus.deployment.logging.LoggingResourceProcessor$LoggerCompleter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.logging.LoggingResourceProcessor$SetLogLevelCommand" - }, - { - "type": "io.quarkus.deployment.logging.LoggingWithPanacheProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "process", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.naming.NamingConfig" - }, - { - "type": "io.quarkus.deployment.naming.NamingConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig" - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$BuilderImageConfig" - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$BuilderImageConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$Compression" - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$Compression$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$Debug" - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$Debug$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$ResourcesConfig" - }, - { - "type": "io.quarkus.deployment.pkg.NativeConfig$ResourcesConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig" - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$DecompilerConfig" - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$DecompilerConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$JarConfig" - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$JarConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$JarConfig$AppcdsConfig" - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$JarConfig$AppcdsConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$JarConfig$ManifestConfig" - }, - { - "type": "io.quarkus.deployment.pkg.PackageConfig$JarConfig$ManifestConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.FileSystemResourcesBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "normalMode", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "notNormalMode", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.JarResultBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "buildNativeImageJar", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.builditem.TransformedClassesBuildItem", - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.deployment.builditem.ApplicationInfoBuildItem", - "io.quarkus.deployment.pkg.PackageConfig", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.MainClassBuildItem", - "io.quarkus.deployment.configuration.ClassLoadingConfig", - "java.util.concurrent.ExecutorService" - ] - }, - { - "name": "buildRunnerJar", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.builditem.TransformedClassesBuildItem", - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.deployment.builditem.ApplicationInfoBuildItem", - "io.quarkus.deployment.pkg.PackageConfig", - "io.quarkus.deployment.configuration.ClassLoadingConfig", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.QuarkusBuildCloseablesBuildItem", - "java.util.List", - "io.quarkus.deployment.builditem.MainClassBuildItem", - "java.util.Optional", - "java.util.concurrent.ExecutorService" - ] - }, - { - "name": "jarOutput", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.JarBuildItem" - ] - }, - { - "name": "outputTarget", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem", - "io.quarkus.deployment.pkg.PackageConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.JarResultBuildStep$JarRequired", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.deployment.pkg.PackageConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.JvmStartupOptimizerArchiveBuildStep", - "methods": [ - { - "name": "build", - "parameterTypes": [ - "java.util.Optional", - "io.quarkus.deployment.pkg.builditem.JarBuildItem", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.pkg.PackageConfig", - "io.quarkus.deployment.pkg.builditem.CompiledJavaVersionBuildItem", - "java.util.Optional", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "requested", - "parameterTypes": [ - "io.quarkus.deployment.pkg.PackageConfig", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.JvmStartupOptimizerArchiveBuildStep$AppCDSRequired", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.deployment.pkg.PackageConfig", - "io.quarkus.runtime.LaunchMode" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.NativeBuild", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.NativeImageBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.runtime.LocalesBuildTimeConfig", - "io.quarkus.deployment.pkg.builditem.NativeImageSourceJarBuildItem", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.pkg.PackageConfig", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.nativeimage.NativeImageAllowIncompleteClasspathAggregateBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.Optional", - "java.util.Optional", - "java.util.List", - "java.util.Optional", - "java.util.List", - "io.quarkus.deployment.pkg.builditem.NativeImageRunnerBuildItem" - ] - }, - { - "name": "dummyNativeImageBuildRunner", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig" - ] - }, - { - "name": "ignoreBuildPropertyChanges", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "nativeImageFeatures", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "nativeSourcesResult", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.runtime.LocalesBuildTimeConfig", - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem", - "io.quarkus.deployment.pkg.builditem.NativeImageSourceJarBuildItem", - "io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem", - "io.quarkus.deployment.pkg.PackageConfig", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.nativeimage.NativeImageAllowIncompleteClasspathAggregateBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.pkg.builditem.NativeImageRunnerBuildItem", - "java.util.List", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem" - ] - }, - { - "name": "resolveNativeImageBuildRunner", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig" - ] - }, - { - "name": "result", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.NativeImageBuildItem", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.NativeOrNativeSourcesBuild", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.NativeSourcesBuild", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.pkg.steps.UpxCompressionBuildStep", - "methods": [ - { - "name": "compress", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.deployment.pkg.builditem.NativeImageRunnerBuildItem", - "io.quarkus.deployment.pkg.builditem.NativeImageBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.AnnotationProxyBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationIndexBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy1", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy10", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy11", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.virtual.threads.VirtualThreadsConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy12", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy13", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.logging.LogBuildTimeConfig", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy14", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy15", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy16", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy17", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy18", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy19", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy2", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy20", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy21", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy22", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy25", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy27", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy3", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy31", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy32", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy34", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy35", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy4", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.virtual.threads.VirtualThreadsConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy41", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy42", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy43", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy44", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy5", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy50", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy51", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.scheduler.runtime.SchedulerConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy52", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.scheduler.runtime.SchedulerConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy6", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.virtual.threads.VirtualThreadsConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy67", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy68", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy69", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy7", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.virtual.threads.VirtualThreadsConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy70", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy71", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy75", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy76", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy77", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy8", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$RecordingProxyProxy9", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - }, - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler", - "io.quarkus.runtime.RuntimeValue", - "io.quarkus.runtime.RuntimeValue" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy12", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy13", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy14", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy15", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy16", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy17", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy18", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy19", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy21", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy22", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy23", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy24", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy25", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy26", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy27", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy28", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy29", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy30", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy32", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy33", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy35", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy36", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy37", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy38", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy44", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy45", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy46", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy47", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy48", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy49", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy52", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy53", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy54", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy55", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy56", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy57", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy58", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy71", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy72", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy73", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$$ReturnValueProxy74", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.reflect.InvocationHandler" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.recording.BytecodeRecorderImpl$ReturnedProxy" - }, - { - "type": "io.quarkus.deployment.recording.substitutions.AdditionalSubstitutionsBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "additionalSubstitutions", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.sbom.ApplicationManifestsBuildStep", - "methods": [ - { - "name": "generate", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig" - }, - { - "type": "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.AdditionalClassLoaderResourcesBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "appendAdditionalClassloaderResources", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ApplicationIndexBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ArchiveRootBuildItem", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.configuration.ClassLoadingConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ApplicationInfoBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "create", - "parameterTypes": [ - "io.quarkus.runtime.ApplicationConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ApplicationInstanceIdBuildStep", - "methods": [ - { - "name": "create", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CuratedApplicationShutdownBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ApplyNativeImageAgentConfigStep", - "methods": [ - { - "name": "transformConfig", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.pkg.builditem.NativeImageSourceJarBuildItem", - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.BannerProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "recordBanner", - "parameterTypes": [ - "io.quarkus.runtime.BannerRecorder", - "io.quarkus.banner.BannerConfig" - ] - }, - { - "name": "watchBannerChanges", - "parameterTypes": [ - "io.quarkus.banner.BannerConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.BlockingOperationControlBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "blockingOP", - "parameterTypes": [ - "java.util.List", - "io.quarkus.runtime.BlockingOperationRecorder" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.CapabilityAggregationStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "aggregateCapabilities", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.steps.CapabilityAggregationStep$CapabilitiesConfiguredInDescriptorsBuildItem", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem" - ] - }, - { - "name": "provideCapabilities", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.BooleanSupplierFactoryBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ChangedClassesBuildStep", - "methods": [ - { - "name": "changedClassesBuildItem", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.builditem.LiveReloadBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ClassPathSystemPropBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "set", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.runtime.ClassPathSystemPropertyRecorder" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ClassTransformingBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "handleClassTransformation", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.deployment.builditem.LiveReloadBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.configuration.ClassLoadingConfig", - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "java.util.List", - "io.quarkus.deployment.builditem.ArchiveRootBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.pkg.PackageConfig", - "java.util.concurrent.ExecutorService", - "io.quarkus.deployment.builditem.CuratedApplicationShutdownBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.CombinedIndexBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "java.util.List", - "io.quarkus.deployment.builditem.LiveReloadBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.CompiledJavaVersionBuildStep", - "methods": [ - { - "name": "compiledJavaVersion", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ConfigBuildSteps", - "methods": [ - { - "name": "nativeServiceProviders", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "runtimeInitializedClass", - "parameterTypes": [] - }, - { - "name": "systemOnlySources", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ConfigBuildSteps$SystemOnlySources", - "fields": [ - { - "name": "configBuildTimeConfig" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ConfigDescriptionBuildStep", - "methods": [ - { - "name": "createConfigDescriptions", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ConfigurationBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ConfigGenerationBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "buildTimeRunTimeConfig", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "checkForBuildTimeConfigChange", - "parameterTypes": [ - "io.quarkus.deployment.recording.RecorderContext", - "io.quarkus.runtime.configuration.ConfigRecorder", - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "java.util.List" - ] - }, - { - "name": "generateBuilders", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "generateConfigClass", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.LiveReloadBuildItem" - ] - }, - { - "name": "generateMappings", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "nativeSupport", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "persistReadConfigOptions", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.QuarkusBuildCloseablesBuildItem", - "io.quarkus.deployment.pkg.builditem.BuildSystemTargetBuildItem", - "io.quarkus.deployment.builditem.ConfigurationBuildItem", - "io.quarkus.deployment.configuration.tracker.ConfigTrackingConfig" - ] - }, - { - "name": "releaseConfigOnShutdown", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "io.quarkus.runtime.configuration.ConfigRecorder" - ] - }, - { - "name": "reportDeprecatedMappingProperties", - "parameterTypes": [ - "io.quarkus.runtime.configuration.ConfigRecorder", - "io.quarkus.deployment.builditem.ConfigurationBuildItem" - ] - }, - { - "name": "runtimeOverrideConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setupConfigOverride", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "suppressNonRuntimeConfigChanged", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unknownConfigFiles", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.runtime.configuration.ConfigRecorder" - ] - }, - { - "name": "warnDifferentProfileUsedBetweenBuildAndRunTime", - "parameterTypes": [ - "io.quarkus.runtime.configuration.ConfigRecorder" - ] - }, - { - "name": "watchConfigFiles", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.CurateOutcomeBuildStep", - "fields": [ - { - "name": "config" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "curateOutcome", - "parameterTypes": [ - "io.quarkus.deployment.builditem.AppModelProviderBuildItem" - ] - }, - { - "name": "removeResources", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.DevModeBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "watchChanges", - "parameterTypes": [ - "io.quarkus.runtime.LiveReloadConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.DevServicesConfigBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "deprecated", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "setup", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.builditem.CuratedApplicationShutdownBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.JVMUnsafeWarningsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "disableUnsafeRelatedWarnings", - "parameterTypes": [ - "io.quarkus.runtime.JVMChecksRecorder" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.LocaleProcessor", - "methods": [ - { - "name": "nativeResources", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "servicesResource", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "setDefaults", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.runtime.LocalesBuildTimeConfig" - ] - }, - { - "name": "setupReflectionClasses", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.LocaleProcessor$NonDefaultLocale", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.runtime.LocalesBuildTimeConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.MainClassBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "applicationReflection", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.builditem.LiveReloadBuildItem", - "io.quarkus.deployment.builditem.ApplicationInfoBuildItem", - "java.util.List", - "io.quarkus.deployment.naming.NamingConfig" - ] - }, - { - "name": "mainClassBuildStep", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.ApplicationArchivesBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "java.util.Optional", - "io.quarkus.deployment.pkg.PackageConfig" - ] - }, - { - "name": "setupVersionField", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageAllowIncompleteClasspathAggregateStep", - "methods": [ - { - "name": "aggregateIndividualItems", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageConfigBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.runtime.ssl.SslContextConfigurationRecorder", - "java.util.List", - "io.quarkus.deployment.builditem.SslNativeConfigBuildItem", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "reinitHostNameUtil", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageFeatureStep", - "methods": [ - { - "name": "addExportsToNativeImage", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "generateFeature", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.runtime.LocalesBuildTimeConfig" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageJNIConfigStep", - "methods": [ - { - "name": "generateJniConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageProxyConfigStep", - "methods": [ - { - "name": "generateProxyConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageReflectConfigStep", - "methods": [ - { - "name": "generateReflectConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.pkg.NativeConfig", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageResourceConfigStep", - "methods": [ - { - "name": "generateResourceConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List", - "java.util.List", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageResourcesStep", - "methods": [ - { - "name": "forwardResourcePatternConfigToBuildItem", - "parameterTypes": [ - "io.quarkus.deployment.pkg.NativeConfig", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerPackageResources", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.NativeImageSerializationConfigStep", - "methods": [ - { - "name": "generateSerializationConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.PreloadClassesBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "preInit", - "parameterTypes": [ - "java.util.Optional", - "io.quarkus.runtime.PreloadClassesRecorder" - ] - }, - { - "name": "registerPreInitClasses", - "parameterTypes": [ - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ProfileBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "defaultProfile", - "parameterTypes": [ - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ReflectionDiagnosticProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "writeReflectionData", - "parameterTypes": [ - "java.util.List", - "java.util.List", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ReflectiveHierarchyStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.Capabilities", - "java.util.List", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "ignoreJavaClassWarnings", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.RegisterForProxyBuildStep", - "methods": [ - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.RegisterForReflectionBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.Capabilities", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.RegisterResourceBundleBuildStep", - "methods": [ - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.RegisterResourcesBuildStep", - "methods": [ - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ResourceBundleStep", - "methods": [ - { - "name": "nativeImageResourceBundle", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.RuntimeConfigSetupBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setupRuntimeConfig", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ShutdownListenerBuildStep", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setupShutdown", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.shutdown.ShutdownBuildTimeConfig", - "io.quarkus.runtime.shutdown.ShutdownRecorder" - ] - } - ] - }, - { - "type": "io.quarkus.deployment.steps.ThreadPoolSetup", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "createExecutor", - "parameterTypes": [ - "io.quarkus.runtime.ExecutorRecorder", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "java.util.Optional", - "java.util.Optional" - ] - }, - { - "name": "registerClasses", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.gizmo2.GenericType", - "methods": [ - { - "name": "computeAnnotations", - "parameterTypes": [ - "java.lang.annotation.RetentionPolicy", - "io.github.dmlloyd.classfile.TypeAnnotation$TargetInfo", - "java.util.ArrayList", - "java.util.ArrayDeque" - ] - } - ] - }, - { - "type": "io.quarkus.gizmo2.TypeKind", - "fields": [ - { - "name": "actualKind" - } - ] - }, - { - "type": "io.quarkus.gizmo2.TypeParameter", - "methods": [ - { - "name": "computeAnnotations", - "parameterTypes": [ - "java.lang.annotation.RetentionPolicy", - "io.github.dmlloyd.classfile.TypeAnnotation$TargetInfo", - "java.util.ArrayList", - "java.util.ArrayDeque" - ] - } - ] - }, - { - "type": "io.quarkus.gizmo2.TypeParameter$OfConstructor", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.util.List", - "java.util.List", - "java.lang.String", - "java.util.Optional", - "java.util.List", - "io.quarkus.gizmo2.desc.ConstructorDesc" - ] - } - ] - }, - { - "type": "io.quarkus.gizmo2.TypeParameter$OfMethod", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.util.List", - "java.util.List", - "java.lang.String", - "java.util.Optional", - "java.util.List", - "io.quarkus.gizmo2.desc.MethodDesc" - ] - } - ] - }, - { - "type": "io.quarkus.gizmo2.TypeParameter$OfType", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.util.List", - "java.util.List", - "java.lang.String", - "java.util.Optional", - "java.util.List", - "java.lang.constant.ClassDesc" - ] - } - ] - }, - { - "type": "io.quarkus.jackson.ObjectMapperCustomizer" - }, - { - "type": "io.quarkus.jackson.customizer.RegisterSerializersAndDeserializersCustomizer" - }, - { - "type": "io.quarkus.jackson.deployment.JacksonProcessor", - "fields": [ - { - "name": "combinedIndexBuildItem" - }, - { - "name": "ignoreJsonDeserializeClassBuildItems" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "autoRegisterModules", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "clearCachesOnShutdown", - "parameterTypes": [ - "io.quarkus.jackson.runtime.JacksonRecorder" - ] - }, - { - "name": "generateCustomizer", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "java.util.List" - ] - }, - { - "name": "jacksonSupport", - "parameterTypes": [ - "io.quarkus.jackson.runtime.JacksonRecorder", - "io.quarkus.jackson.runtime.JacksonBuildTimeConfig" - ] - }, - { - "name": "register", - "parameterTypes": [ - "io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "supportMixins", - "parameterTypes": [ - "io.quarkus.jackson.runtime.JacksonRecorder", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unremovable", - "parameterTypes": [ - "io.quarkus.deployment.Capabilities", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.jackson.runtime.ConfigurationCustomizer" - }, - { - "type": "io.quarkus.jackson.runtime.JacksonBuildTimeConfig" - }, - { - "type": "io.quarkus.jackson.runtime.JacksonBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.jackson.runtime.JacksonRecorder" - }, - { - "type": "io.quarkus.jackson.runtime.JacksonSupport" - }, - { - "type": "io.quarkus.jackson.runtime.ObjectMapperProducer" - }, - { - "type": "io.quarkus.jackson.runtime.VertxHybridPoolObjectMapperCustomizer" - }, - { - "type": "io.quarkus.jsonp.deployment.JsonpProcessor", - "methods": [ - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.maven.dependency.ArtifactDependency", - "serializable": true - }, - { - "type": "io.quarkus.maven.dependency.GACT", - "serializable": true - }, - { - "type": "io.quarkus.maven.dependency.GACTV", - "serializable": true - }, - { - "type": "io.quarkus.maven.dependency.GAV", - "serializable": true - }, - { - "type": "io.quarkus.maven.dependency.ResolvedArtifactDependency", - "serializable": true - }, - { - "type": "io.quarkus.mutiny.deployment.MutinyDevUIProcessor", - "methods": [ - { - "name": "createCard", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.mutiny.deployment.MutinyProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "buildTimeInit", - "parameterTypes": [ - "io.quarkus.mutiny.runtime.MutinyInfrastructure" - ] - }, - { - "name": "runtimeInit", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ExecutorBuildItem", - "io.quarkus.mutiny.runtime.MutinyInfrastructure", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "java.util.Optional" - ] - } - ] - }, - { - "type": "io.quarkus.mutiny.runtime.MutinyInfrastructure" - }, - { - "type": "io.quarkus.netty.deployment.NettyBuildTimeConfig" - }, - { - "type": "io.quarkus.netty.deployment.NettyBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.netty.deployment.NettyOverrideMetadata", - "methods": [ - { - "name": "excludeNettyDirectives", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.netty.deployment.NettyProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.netty.deployment.NettyBuildTimeConfig", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List" - ] - }, - { - "name": "cleanupMacDNSInLog", - "parameterTypes": [] - }, - { - "name": "cleanupUnsafeLog", - "parameterTypes": [] - }, - { - "name": "disableFinalizers", - "parameterTypes": [] - }, - { - "name": "eagerlyInitClass", - "parameterTypes": [ - "io.quarkus.netty.runtime.NettyRecorder" - ] - }, - { - "name": "limitArenaSize", - "parameterTypes": [ - "io.quarkus.netty.deployment.NettyBuildTimeConfig", - "java.util.List" - ] - }, - { - "name": "limitMem", - "parameterTypes": [] - }, - { - "name": "nettyVersions", - "parameterTypes": [] - }, - { - "name": "registerEventLoopBeans", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.Optional", - "io.quarkus.netty.runtime.NettyRecorder", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerQualifiers", - "parameterTypes": [] - }, - { - "name": "reinitScheduledFutureTask", - "parameterTypes": [] - }, - { - "name": "runtimeInitBcryptUtil", - "parameterTypes": [] - }, - { - "name": "setNettyMachineId", - "parameterTypes": [] - }, - { - "name": "unsafeAccessedFields", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.netty.runtime.NettyRecorder" - }, - { - "type": "io.quarkus.paths.DirectoryPathTree", - "serializable": true - }, - { - "type": "io.quarkus.paths.PathList", - "serializable": true - }, - { - "type": "io.quarkus.picocli.deployment.PicocliNativeImageProcessor", - "methods": [ - { - "name": "reflectionConfiguration", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "resourceBundlesConfiguration", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.picocli.deployment.PicocliProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "addScopeToCommands", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "feature", - "parameterTypes": [] - }, - { - "name": "picocliIndexDependency", - "parameterTypes": [] - }, - { - "name": "picocliRunner", - "parameterTypes": [ - "io.quarkus.deployment.builditem.ApplicationIndexBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.picocli.runtime.DefaultPicocliCommandLineFactory" - }, - { - "type": "io.quarkus.picocli.runtime.PicocliCommandLineFactory" - }, - { - "type": "io.quarkus.picocli.runtime.PicocliCommandLineProducer" - }, - { - "type": "io.quarkus.picocli.runtime.PicocliConfiguration" - }, - { - "type": "io.quarkus.picocli.runtime.PicocliConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.picocli.runtime.PicocliRunner" - }, - { - "type": "io.quarkus.runner.ApplicationImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runner.bootstrap.AugmentActionImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.quarkus.bootstrap.app.CuratedApplication", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.runtime.Application", - "methods": [ - { - "name": "start", - "parameterTypes": [ - "java.lang.String[]" - ] - } - ] - }, - { - "type": "io.quarkus.runtime.ApplicationConfig" - }, - { - "type": "io.quarkus.runtime.ApplicationConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.BannerRecorder" - }, - { - "type": "io.quarkus.runtime.BannerRuntimeConfig" - }, - { - "type": "io.quarkus.runtime.BannerRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.BlockingOperationRecorder" - }, - { - "type": "io.quarkus.runtime.BuildAnalyticsConfig" - }, - { - "type": "io.quarkus.runtime.BuildAnalyticsConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.BuilderConfig" - }, - { - "type": "io.quarkus.runtime.BuilderConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.ClassPathSystemPropertyRecorder" - }, - { - "type": "io.quarkus.runtime.CommandLineRuntimeConfig" - }, - { - "type": "io.quarkus.runtime.CommandLineRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.ConfigConfig" - }, - { - "type": "io.quarkus.runtime.ConfigConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.DebugRuntimeConfig" - }, - { - "type": "io.quarkus.runtime.DebugRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.ExecutorRecorder" - }, - { - "type": "io.quarkus.runtime.IOThreadDetector" - }, - { - "type": "io.quarkus.runtime.JVMChecksRecorder" - }, - { - "type": "io.quarkus.runtime.LaunchConfig" - }, - { - "type": "io.quarkus.runtime.LaunchConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.LaunchMode" - }, - { - "type": "io.quarkus.runtime.LiveReloadConfig" - }, - { - "type": "io.quarkus.runtime.LiveReloadConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.LocalesBuildTimeConfig" - }, - { - "type": "io.quarkus.runtime.LocalesBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.PreloadClassesRecorder" - }, - { - "type": "io.quarkus.runtime.QuarkusApplication" - }, - { - "type": "io.quarkus.runtime.RuntimeValue", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.ShutdownContext" - }, - { - "type": "io.quarkus.runtime.ShutdownEvent" - }, - { - "type": "io.quarkus.runtime.SnapStartRecorder" - }, - { - "type": "io.quarkus.runtime.StartupEvent" - }, - { - "type": "io.quarkus.runtime.ThreadPoolConfig" - }, - { - "type": "io.quarkus.runtime.ThreadPoolConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.CharsetConverter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.CidrAddressConverter" - }, - { - "type": "io.quarkus.runtime.configuration.ConfigRecorder" - }, - { - "type": "io.quarkus.runtime.configuration.DurationConverter" - }, - { - "type": "io.quarkus.runtime.configuration.InetAddressConverter" - }, - { - "type": "io.quarkus.runtime.configuration.InetSocketAddressConverter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.LocaleConverter" - }, - { - "type": "io.quarkus.runtime.configuration.MemorySize" - }, - { - "type": "io.quarkus.runtime.configuration.MemorySizeConverter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.PathConverter" - }, - { - "type": "io.quarkus.runtime.configuration.QuarkusConfigFactory" - }, - { - "type": "io.quarkus.runtime.configuration.QuarkusConfigValue", - "methods": [ - { - "name": "getConfigSourceName", - "parameterTypes": [] - }, - { - "name": "getConfigSourceOrdinal", - "parameterTypes": [] - }, - { - "name": "getConfigSourcePosition", - "parameterTypes": [] - }, - { - "name": "getLineNumber", - "parameterTypes": [] - }, - { - "name": "getName", - "parameterTypes": [] - }, - { - "name": "getProfile", - "parameterTypes": [] - }, - { - "name": "getRawValue", - "parameterTypes": [] - }, - { - "name": "getValue", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.QuarkusConfigValue$Substitution", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.RegexConverter" - }, - { - "type": "io.quarkus.runtime.configuration.RuntimeOverrideConfigSource$$GeneratedMapHolder", - "fields": [ - { - "name": "CONFIG" - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.TrimmedStringConverter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.configuration.ZoneIdConverter" - }, - { - "type": "io.quarkus.runtime.console.ConsoleRuntimeConfig" - }, - { - "type": "io.quarkus.runtime.console.ConsoleRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.dev.io.NioThreadPoolRecorder" - }, - { - "type": "io.quarkus.runtime.generated.RunTimeConfig", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.generated.StaticInitConfig", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.init.InitRuntimeConfig" - }, - { - "type": "io.quarkus.runtime.init.InitRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.init.InitRuntimeConfig$BooleanConverter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.init.InitializationTaskRecorder" - }, - { - "type": "io.quarkus.runtime.logging.DiscoveredLogComponents", - "methods": [ - { - "name": "getNameToFilterClass", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.InheritableLevel", - "methods": [ - { - "name": "of", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LevelConverter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogBuildTimeConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogBuildTimeConfig$CategoryBuildTimeConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogBuildTimeConfig$CategoryBuildTimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogMetricsHandlerRecorder" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$AsyncConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$AsyncConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$CategoryConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$CategoryConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$CleanupFilterConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$CleanupFilterConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$ConsoleConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$ConsoleConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$FileConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$FileConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$FileConfig$RotationConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$FileConfig$RotationConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$SocketConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$SocketConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$SyslogConfig" - }, - { - "type": "io.quarkus.runtime.logging.LogRuntimeConfig$SyslogConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.logging.LoggingSetupRecorder" - }, - { - "type": "io.quarkus.runtime.shutdown.ShutdownConfig" - }, - { - "type": "io.quarkus.runtime.shutdown.ShutdownConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.runtime.shutdown.ShutdownListener" - }, - { - "type": "io.quarkus.runtime.shutdown.ShutdownRecorder" - }, - { - "type": "io.quarkus.runtime.ssl.SslContextConfigurationRecorder" - }, - { - "type": "io.quarkus.runtime.test.TestApplicationClassPredicate" - }, - { - "type": "io.quarkus.scheduler.DelayedExecution" - }, - { - "type": "io.quarkus.scheduler.FailedExecution" - }, - { - "type": "io.quarkus.scheduler.Scheduled$ApplicationNotRunning" - }, - { - "type": "io.quarkus.scheduler.Scheduled$SkipPredicate" - }, - { - "type": "io.quarkus.scheduler.ScheduledJobPaused" - }, - { - "type": "io.quarkus.scheduler.ScheduledJobResumed" - }, - { - "type": "io.quarkus.scheduler.Scheduler" - }, - { - "type": "io.quarkus.scheduler.SchedulerPaused" - }, - { - "type": "io.quarkus.scheduler.SchedulerResumed" - }, - { - "type": "io.quarkus.scheduler.SkippedExecution" - }, - { - "type": "io.quarkus.scheduler.SuccessfulExecution" - }, - { - "type": "io.quarkus.scheduler.common.runtime.SchedulerContext" - }, - { - "type": "io.quarkus.scheduler.deployment.SchedulerMethodsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "schedulerMethods", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.scheduler.deployment.SchedulerProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "autoAddScope", - "parameterTypes": [] - }, - { - "name": "beans", - "parameterTypes": [ - "io.quarkus.scheduler.deployment.DiscoveredImplementationsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.scheduler.runtime.SchedulerRecorder", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.AnnotationProxyBuildItem", - "java.util.List", - "io.quarkus.scheduler.deployment.DiscoveredImplementationsBuildItem" - ] - }, - { - "name": "collectScheduledMethods", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem", - "io.quarkus.arc.deployment.TransformedAnnotationsBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "compositeScheduler", - "parameterTypes": [ - "io.quarkus.scheduler.runtime.SchedulerConfig", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "feature", - "parameterTypes": [] - }, - { - "name": "implementation", - "parameterTypes": [] - }, - { - "name": "metrics", - "parameterTypes": [ - "io.quarkus.scheduler.runtime.SchedulerConfig", - "java.util.Optional", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "produceCoroutineScope", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "transformSchedulerBeans", - "parameterTypes": [ - "io.quarkus.scheduler.deployment.DiscoveredImplementationsBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "unremovableBeans", - "parameterTypes": [] - }, - { - "name": "unremoveableSkipPredicates", - "parameterTypes": [] - }, - { - "name": "validateScheduledBusinessMethods", - "parameterTypes": [ - "io.quarkus.scheduler.runtime.SchedulerConfig", - "java.util.List", - "io.quarkus.arc.deployment.ValidationPhaseBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.Capabilities", - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.scheduler.deployment.DiscoveredImplementationsBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.scheduler.deployment.devui.SchedulerDevUIProcessor", - "methods": [ - { - "name": "createBuildTimeActions", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "page", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "rpcProvider", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.scheduler.runtime.SchedulerConfig" - }, - { - "type": "io.quarkus.scheduler.runtime.SchedulerConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.scheduler.runtime.SchedulerRecorder" - }, - { - "type": "io.quarkus.scheduler.runtime.SchedulerRuntimeConfig" - }, - { - "type": "io.quarkus.scheduler.runtime.SchedulerRuntimeConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.scheduler.runtime.SimpleScheduler" - }, - { - "type": "io.quarkus.scheduler.spi.JobInstrumenter" - }, - { - "type": "io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.smallrye.context.runtime.SmallRyeContextPropagationRecorder", - "io.quarkus.deployment.builditem.ExecutorBuildItem", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "buildStatic", - "parameterTypes": [ - "io.quarkus.smallrye.context.runtime.SmallRyeContextPropagationRecorder", - "java.util.List" - ] - }, - { - "name": "createSynthBeansForConfiguredInjectionPoints", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.smallrye.context.runtime.SmallRyeContextPropagationRecorder", - "io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem" - ] - }, - { - "name": "registerBean", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "transformInjectionPoint", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.smallrye.context.runtime.SmallRyeContextPropagationProvider" - }, - { - "type": "io.quarkus.smallrye.context.runtime.SmallRyeContextPropagationRecorder" - }, - { - "type": "io.quarkus.smallrye.jwt.build.deployment.SmallRyeJwtBuildProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "addClassesForReflection", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerNativeImageResources", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.test.TestMethodInvoker" - }, - { - "type": "io.quarkus.test.common.RestAssuredStateManager", - "methods": [ - { - "name": "clearState", - "parameterTypes": [] - }, - { - "name": "setURL", - "parameterTypes": [ - "boolean", - "java.lang.String" - ] - } - ] - }, - { - "type": "io.quarkus.test.common.TestResourceManager", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Class", - "java.lang.Class", - "java.util.List", - "boolean", - "java.util.Map", - "java.util.Optional", - "java.nio.file.Path" - ] - }, - { - "name": "init", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "inject", - "parameterTypes": [ - "java.lang.Object" - ] - }, - { - "name": "start", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.common.TestScopeManager", - "methods": [ - { - "name": "setup", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "tearDown", - "parameterTypes": [ - "boolean" - ] - } - ] - }, - { - "type": "io.quarkus.test.common.http.StringTestHTTPResourceProvider" - }, - { - "type": "io.quarkus.test.common.http.TestHTTPConfigSourceInterceptor" - }, - { - "type": "io.quarkus.test.common.http.TestHTTPConfigSourceProvider" - }, - { - "type": "io.quarkus.test.common.http.TestHTTPResourceManager", - "methods": [ - { - "name": "inject", - "parameterTypes": [ - "java.lang.Object", - "java.util.List" - ] - } - ] - }, - { - "type": "io.quarkus.test.common.http.URITestHTTPResourceProvider" - }, - { - "type": "io.quarkus.test.common.http.URLTestHTTPResourceProvider" - }, - { - "type": "io.quarkus.test.component.ComponentLauncherSessionListener" - }, - { - "type": "io.quarkus.test.component.QuarkusComponentFacadeClassLoaderProvider" - }, - { - "type": "io.quarkus.test.component.QuarkusComponentTest" - }, - { - "type": "io.quarkus.test.component.QuarkusComponentTestExtension", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.config.ConfigLauncherSession" - }, - { - "type": "io.quarkus.test.config.LoggingSetupExtension" - }, - { - "type": "io.quarkus.test.config.QuarkusClassOrderer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.config.TestConfigCustomizer" - }, - { - "type": "io.quarkus.test.junit.MockSupport", - "methods": [ - { - "name": "popContext", - "parameterTypes": [] - }, - { - "name": "pushContext", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.junit.QuarkusTest" - }, - { - "type": "io.quarkus.test.junit.QuarkusTestExtension", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.junit.TestBuildChainFunction", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.junit.TestResourceUtil", - "methods": [ - { - "name": "getReloadGroupIdentifier", - "parameterTypes": [ - "java.lang.Class", - "java.lang.Class" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestAfterAllCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestAfterConstructCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestAfterEachCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestAfterTestExecutionCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestBeforeClassCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestBeforeEachCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestBeforeTestExecutionCallback" - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestContext", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Object", - "java.util.List", - "java.lang.Throwable" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.callback.QuarkusTestMethodContext", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Object", - "java.util.List", - "java.lang.reflect.Method", - "java.lang.Throwable" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.classloading.FacadeClassLoader" - }, - { - "type": "io.quarkus.test.junit.classloading.QuarkusTestConfigProviderResolver", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.test.junit.internal.VerifyMockitoMocksCallback", - "methods": [ - { - "name": "afterConstruct", - "parameterTypes": [ - "java.lang.Object" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.launcher.CustomLauncherInterceptor" - }, - { - "type": "io.quarkus.test.junit.launcher.ExecutionListener" - }, - { - "type": "io.quarkus.test.junit.mockito.InjectSpy" - }, - { - "type": "io.quarkus.test.junit.mockito.MockitoConfig" - }, - { - "type": "io.quarkus.test.junit.mockito.internal.CreateMockitoMocksCallback", - "methods": [ - { - "name": "afterConstruct", - "parameterTypes": [ - "java.lang.Object" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.mockito.internal.CreateMockitoSpiesCallback", - "methods": [ - { - "name": "afterAll", - "parameterTypes": [ - "io.quarkus.test.junit.callback.QuarkusTestContext" - ] - }, - { - "name": "afterConstruct", - "parameterTypes": [ - "java.lang.Object" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.mockito.internal.ResetMockitoMocksAfterAllCallback", - "methods": [ - { - "name": "afterAll", - "parameterTypes": [ - "io.quarkus.test.junit.callback.QuarkusTestContext" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.mockito.internal.ResetMockitoMocksAfterEachCallback", - "methods": [ - { - "name": "afterEach", - "parameterTypes": [ - "io.quarkus.test.junit.callback.QuarkusTestMethodContext" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.mockito.internal.SetMockitoMockAsBeanMockCallback", - "methods": [ - { - "name": "beforeEach", - "parameterTypes": [ - "io.quarkus.test.junit.callback.QuarkusTestMethodContext" - ] - } - ] - }, - { - "type": "io.quarkus.test.junit.mockito.internal.SingletonToApplicationScopedTestBuildChainCustomizerProducer" - }, - { - "type": "io.quarkus.test.junit.mockito.internal.UnremoveableMockTestBuildChainCustomizerProducer" - }, - { - "type": "io.quarkus.test.junit.util.QuarkusTestProfileAwareClassOrderer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.deployment.VertxCoreProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.ExecutorBuildItem" - ] - }, - { - "name": "cleanupVertxWarnings", - "parameterTypes": [] - }, - { - "name": "configureLogging", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder" - ] - }, - { - "name": "createVertxContextHandlers", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder", - "java.util.List" - ] - }, - { - "name": "createVertxThreadFactory", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder", - "io.quarkus.deployment.builditem.LaunchModeBuildItem" - ] - }, - { - "name": "doNotRemoveVertxOptionsCustomizers", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "dontPropagateCdiContext", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.vertx.core.runtime.VertxCoreRecorder", - "io.quarkus.vertx.deployment.VertxBuildConfig" - ] - }, - { - "name": "eventLoopCount", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder" - ] - }, - { - "name": "filterNettyHostsFileParsingWarn", - "parameterTypes": [] - }, - { - "name": "ioThreadDetector", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder" - ] - }, - { - "name": "overrideContextInternalInterfaceToAddSafeGuards", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "preventLoggerContention", - "parameterTypes": [] - }, - { - "name": "registerSafeDuplicatedContextInterceptor", - "parameterTypes": [] - }, - { - "name": "registerVerticleClasses", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "resetMapper", - "parameterTypes": [ - "io.quarkus.vertx.core.runtime.VertxCoreRecorder", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem" - ] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.VertxCoreRecorder" - }, - { - "type": "io.quarkus.vertx.core.runtime.VertxLogDelegateFactory", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.AddressResolverConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.AddressResolverConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.ClusterConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.ClusterConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.EventBusConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.EventBusConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.JksConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.JksConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.PemKeyCertConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.PemKeyCertConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.PemTrustCertConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.PemTrustCertConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.PfxConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.PfxConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.core.runtime.config.VertxConfiguration" - }, - { - "type": "io.quarkus.vertx.core.runtime.config.VertxConfiguration$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.deployment.EventBusCodecProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "registerCodecs", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanArchiveIndexBuildItem", - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.quarkus.vertx.deployment.EventConsumerMethodsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "eventConsumerMethods", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.deployment.VertxBuildConfig" - }, - { - "type": "io.quarkus.vertx.deployment.VertxBuildConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.deployment.VertxJsonProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "nativeSupport", - "parameterTypes": [ - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerJacksonSerDeser", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.deployment.VertxProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "autoAddScope", - "parameterTypes": [] - }, - { - "name": "build", - "parameterTypes": [ - "io.quarkus.vertx.core.deployment.CoreVertxBuildItem", - "io.quarkus.vertx.runtime.VertxEventBusConsumerRecorder", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.builditem.AnnotationProxyBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "java.util.List", - "io.quarkus.vertx.deployment.LocalCodecSelectorTypesBuildItem", - "io.quarkus.deployment.recording.RecorderContext" - ] - }, - { - "name": "collectEventConsumers", - "parameterTypes": [ - "io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem", - "io.quarkus.arc.deployment.InvokerFactoryBuildItem", - "java.util.List", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "currentContextFactory", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.vertx.deployment.VertxBuildConfig", - "io.quarkus.vertx.runtime.VertxEventBusConsumerRecorder" - ] - }, - { - "name": "faultToleranceIntegration", - "parameterTypes": [ - "io.quarkus.deployment.Capabilities", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "featureAndCapability", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerBean", - "parameterTypes": [] - }, - { - "name": "registerNativeImageResources", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerReflectivelyAccessedMethods", - "parameterTypes": [ - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "registerVerticleClasses", - "parameterTypes": [ - "io.quarkus.deployment.builditem.CombinedIndexBuildItem", - "io.quarkus.deployment.annotations.BuildProducer" - ] - }, - { - "name": "reinitializeClassesForNetty", - "parameterTypes": [] - }, - { - "name": "unremovableBeans", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.vertx.mdc.provider.LateBoundMDCProvider" - }, - { - "type": "io.quarkus.vertx.runtime.VertxEventBusConsumerRecorder" - }, - { - "type": "io.quarkus.vertx.runtime.VertxProducer" - }, - { - "type": "io.quarkus.virtual.threads.VirtualThreadsConfig" - }, - { - "type": "io.quarkus.virtual.threads.VirtualThreadsConfig$$CMImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "io.smallrye.config.ConfigMappingContext" - ] - }, - { - "name": "getProperties", - "parameterTypes": [] - }, - { - "name": "getSecrets", - "parameterTypes": [] - } - ] - }, - { - "type": "io.quarkus.virtual.threads.VirtualThreadsRecorder" - }, - { - "type": "io.quarkus.virtual.threads.deployment.VirtualThreadsProcessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setup", - "parameterTypes": [ - "io.quarkus.virtual.threads.VirtualThreadsRecorder", - "io.quarkus.deployment.builditem.ShutdownContextBuildItem", - "io.quarkus.deployment.builditem.LaunchModeBuildItem", - "io.quarkus.deployment.annotations.BuildProducer", - "io.quarkus.deployment.annotations.BuildProducer" - ] - } - ] - }, - { - "type": "io.restassured.RestAssured" - }, - { - "type": "io.smallrye.common.net.CidrAddress" - }, - { - "type": "io.smallrye.config.ConfigMappings$ConfigClass" - }, - { - "type": "io.smallrye.config.ConfigValue" - }, - { - "type": "io.smallrye.config.PropertiesLocationConfigSourceFactory" - }, - { - "type": "io.smallrye.config.SmallRyeConfig" - }, - { - "type": "io.smallrye.config.SmallRyeConfigProviderResolver" - }, - { - "type": "io.smallrye.config._private.ConfigLogging_$logger", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.jboss.logging.Logger" - ] - } - ] - }, - { - "type": "io.smallrye.config._private.ConfigLogging_$logger_en" - }, - { - "type": "io.smallrye.config._private.ConfigLogging_$logger_en_US" - }, - { - "type": "io.smallrye.config._private.ConfigMessages_$bundle", - "fields": [ - { - "name": "INSTANCE" - } - ] - }, - { - "type": "io.smallrye.config._private.ConfigMessages_$bundle_en" - }, - { - "type": "io.smallrye.config._private.ConfigMessages_$bundle_en_US" - }, - { - "type": "io.smallrye.config.inject.ConfigProducer" - }, - { - "type": "io.smallrye.context.SmallRyeManagedExecutor" - }, - { - "type": "io.smallrye.context.SmallRyeThreadContext" - }, - { - "type": "io.smallrye.jwt.build.impl.JwtProviderImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.smallrye.jwt.util.JWTUtilLogging_$logger", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.jboss.logging.Logger" - ] - } - ] - }, - { - "type": "io.smallrye.jwt.util.JWTUtilLogging_$logger_en" - }, - { - "type": "io.smallrye.jwt.util.JWTUtilLogging_$logger_en_US" - }, - { - "type": "io.smallrye.mutiny.context.DefaultContextPropagationInterceptor" - }, - { - "type": "io.smallrye.mutiny.context.MutinyContextManagerExtension", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "io.smallrye.mutiny.converters.uni.UniToMultiPublisher$UniToMultiSubscription" - }, - { - "type": "io.smallrye.mutiny.operators.multi.MultiConcatMapOp$MainSubscriber" - }, - { - "type": "io.smallrye.mutiny.operators.multi.processors.UnicastProcessor" - }, - { - "type": "io.smallrye.mutiny.operators.uni.UniOperatorProcessor" - }, - { - "type": "io.smallrye.mutiny.operators.uni.builders.UniCreateFromPublisher$PublisherSubscriber" - }, - { - "type": "io.smallrye.mutiny.vertx.MutinyDelegate" - }, - { - "type": "io.vertx.core.Vertx" - }, - { - "type": "io.vertx.core.eventbus.EventBus" - }, - { - "type": "io.vertx.core.eventbus.impl.EventBusImpl" - }, - { - "type": "io.vertx.core.metrics.Measured" - }, - { - "type": "io.vertx.mutiny.core.Vertx" - }, - { - "type": "io.vertx.mutiny.core.eventbus.EventBus" - }, - { - "type": "io.vertx.mutiny.core.metrics.Measured" - }, - { - "type": "jakarta.enterprise.context.BeforeDestroyed", - "methods": [ - { - "name": "value", - "parameterTypes": [] - } - ] - }, - { - "type": "jakarta.enterprise.context.Destroyed", - "methods": [ - { - "name": "value", - "parameterTypes": [] - } - ] - }, - { - "type": "jakarta.enterprise.context.Initialized", - "methods": [ - { - "name": "value", - "parameterTypes": [] - } - ] - }, - { - "type": "jakarta.enterprise.context.control.RequestContextController" - }, - { - "type": "jakarta.enterprise.event.Event" - }, - { - "type": "jakarta.enterprise.inject.Any" - }, - { - "type": "jakarta.enterprise.inject.Default" - }, - { - "type": "jakarta.enterprise.inject.Instance", - "methods": [ - { - "name": "select", - "parameterTypes": [ - "java.lang.Class", - "java.lang.annotation.Annotation[]" - ] - } - ] - }, - { - "type": "jakarta.enterprise.inject.literal.InjectLiteral" - }, - { - "type": "jakarta.enterprise.inject.spi.CDI", - "methods": [ - { - "name": "current", - "parameterTypes": [] - } - ] - }, - { - "type": "jakarta.enterprise.inject.spi.InjectionPoint" - }, - { - "type": "jakarta.inject.Inject" - }, - { - "type": "jakarta.inject.Provider", - "methods": [ - { - "name": "get", - "parameterTypes": [] - } - ] - }, - { - "type": "jakarta.inject.Qualifier" - }, - { - "type": "java.awt.image.RenderedImage" - }, - { - "type": "java.beans.Introspector" - }, - { - "type": "java.io.Closeable" - }, - { - "type": "java.io.File", - "serializable": true - }, - { - "type": "java.io.Serializable" - }, - { - "type": "java.lang.AutoCloseable" - }, - { - "type": "java.lang.BaseVirtualThread" - }, - { - "type": "java.lang.Boolean", - "jniAccessible": true, - "methods": [ - { - "name": "getBoolean", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "java.lang.Class", - "methods": [ - { - "name": "getModule", - "parameterTypes": [] - }, - { - "name": "getNestHost", - "parameterTypes": [] - }, - { - "name": "getNestMembers", - "parameterTypes": [] - }, - { - "name": "getRecordComponents", - "parameterTypes": [] - }, - { - "name": "isRecord", - "parameterTypes": [] - }, - { - "name": "isSealed", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.ClassLoader", - "fields": [ - { - "name": "classLoaderValueMap" - } - ], - "methods": [ - { - "name": "getPlatformClassLoader", - "parameterTypes": [] - }, - { - "name": "registerAsParallelCapable", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.Class[]" - }, - { - "type": "java.lang.Iterable" - }, - { - "type": "java.lang.Module", - "methods": [ - { - "name": "canRead", - "parameterTypes": [ - "java.lang.Module" - ] - }, - { - "name": "isExported", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "java.lang.Object" - }, - { - "type": "java.lang.Object[]" - }, - { - "type": "java.lang.ProcessHandle", - "methods": [ - { - "name": "current", - "parameterTypes": [] - }, - { - "name": "pid", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.Record" - }, - { - "type": "java.lang.Runtime", - "methods": [ - { - "name": "version", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.Runtime$Version", - "methods": [ - { - "name": "feature", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.RuntimeException" - }, - { - "type": "java.lang.StackWalker" - }, - { - "type": "java.lang.StackWalker$Option" - }, - { - "type": "java.lang.StackWalker$StackFrame" - }, - { - "type": "java.lang.String[]" - }, - { - "type": "java.lang.System", - "methods": [ - { - "name": "console", - "parameterTypes": [] - }, - { - "name": "getSecurityManager", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.Thread", - "fields": [ - { - "name": "inheritableThreadLocals" - }, - { - "name": "threadLocals" - } - ], - "methods": [ - { - "name": "isVirtual", - "parameterTypes": [] - }, - { - "name": "ofVirtual", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.Thread$Builder", - "methods": [ - { - "name": "factory", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.Thread$Builder$OfVirtual", - "methods": [ - { - "name": "name", - "parameterTypes": [ - "java.lang.String", - "long" - ] - } - ] - }, - { - "type": "java.lang.Void", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.WeakPairMap" - }, - { - "type": "java.lang.WeakPairMap$Pair" - }, - { - "type": "java.lang.WeakPairMap$Pair$Weak" - }, - { - "type": "java.lang.annotation.Retention" - }, - { - "type": "java.lang.annotation.Target" - }, - { - "type": "java.lang.constant.ClassDesc" - }, - { - "type": "java.lang.constant.ClassDesc[]" - }, - { - "type": "java.lang.constant.ConstantDesc" - }, - { - "type": "java.lang.constant.ConstantDesc[]" - }, - { - "type": "java.lang.constant.DirectMethodHandleDesc" - }, - { - "type": "java.lang.constant.DirectMethodHandleDesc$Kind" - }, - { - "type": "java.lang.constant.DynamicConstantDesc" - }, - { - "type": "java.lang.constant.MethodHandleDesc" - }, - { - "type": "java.lang.constant.MethodTypeDesc" - }, - { - "type": "java.lang.instrument.Instrumentation" - }, - { - "type": "java.lang.invoke.MethodHandle" - }, - { - "type": "java.lang.invoke.MethodHandles", - "methods": [ - { - "name": "lookup", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.invoke.MethodHandles$Lookup", - "methods": [ - { - "name": "findVirtual", - "parameterTypes": [ - "java.lang.Class", - "java.lang.String", - "java.lang.invoke.MethodType" - ] - } - ] - }, - { - "type": "java.lang.invoke.MethodType", - "methods": [ - { - "name": "methodType", - "parameterTypes": [ - "java.lang.Class", - "java.lang.Class[]" - ] - } - ] - }, - { - "type": "java.lang.invoke.VarHandle" - }, - { - "type": "java.lang.management.ManagementFactory", - "methods": [ - { - "name": "getRuntimeMXBean", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.management.RuntimeMXBean", - "methods": [ - { - "name": "getInputArguments", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.reflect.AccessibleObject" - }, - { - "type": "java.lang.reflect.AnnotatedArrayType" - }, - { - "type": "java.lang.reflect.AnnotatedParameterizedType" - }, - { - "type": "java.lang.reflect.AnnotatedType" - }, - { - "type": "java.lang.reflect.Executable", - "methods": [ - { - "name": "getAnnotatedReceiverType", - "parameterTypes": [] - }, - { - "name": "getParameterCount", - "parameterTypes": [] - }, - { - "name": "getParameters", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.reflect.Field" - }, - { - "type": "java.lang.reflect.Method" - }, - { - "type": "java.lang.reflect.Parameter", - "methods": [ - { - "name": "getModifiers", - "parameterTypes": [] - }, - { - "name": "getName", - "parameterTypes": [] - }, - { - "name": "isNamePresent", - "parameterTypes": [] - } - ] - }, - { - "type": "java.lang.reflect.RecordComponent", - "methods": [ - { - "name": "getName", - "parameterTypes": [] - }, - { - "name": "getType", - "parameterTypes": [] - } - ] - }, - { - "type": "java.net.InetAddress" - }, - { - "type": "java.net.InetSocketAddress" - }, - { - "type": "java.net.SocketException", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "java.net.UnixDomainSocketAddress", - "methods": [ - { - "name": "of", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "java.nio.Bits" - }, - { - "type": "java.nio.Buffer", - "fields": [ - { - "name": "address" - } - ] - }, - { - "type": "java.nio.ByteBuffer" - }, - { - "type": "java.nio.DirectByteBuffer" - }, - { - "type": "java.nio.channels.spi.SelectorProvider" - }, - { - "type": "java.nio.charset.Charset" - }, - { - "type": "java.nio.file.Path" - }, - { - "type": "java.nio.file.Paths", - "methods": [ - { - "name": "get", - "parameterTypes": [ - "java.lang.String", - "java.lang.String[]" - ] - } - ] - }, - { - "type": "java.security.AccessController", - "methods": [ - { - "name": "doPrivileged", - "parameterTypes": [ - "java.security.PrivilegedAction" - ] - } - ] - }, - { - "type": "java.security.AlgorithmParametersSpi" - }, - { - "type": "java.security.KeyStoreSpi" - }, - { - "type": "java.security.interfaces.ECPrivateKey" - }, - { - "type": "java.security.interfaces.ECPublicKey" - }, - { - "type": "java.security.interfaces.RSAPrivateKey" - }, - { - "type": "java.security.interfaces.RSAPublicKey" - }, - { - "type": "java.sql.Connection" - }, - { - "type": "java.sql.Date" - }, - { - "type": "java.sql.Driver" - }, - { - "type": "java.sql.DriverManager" - }, - { - "type": "java.sql.Time" - }, - { - "type": "java.sql.Timestamp" - }, - { - "type": "java.time.Duration" - }, - { - "type": "java.time.Instant" - }, - { - "type": "java.time.LocalDate" - }, - { - "type": "java.time.LocalDateTime" - }, - { - "type": "java.time.LocalTime" - }, - { - "type": "java.time.MonthDay" - }, - { - "type": "java.time.OffsetDateTime" - }, - { - "type": "java.time.OffsetTime" - }, - { - "type": "java.time.Period" - }, - { - "type": "java.time.Year" - }, - { - "type": "java.time.YearMonth" - }, - { - "type": "java.time.ZoneId" - }, - { - "type": "java.time.ZoneOffset" - }, - { - "type": "java.time.ZoneRegion" - }, - { - "type": "java.time.ZonedDateTime" - }, - { - "type": "java.util.AbstractCollection" - }, - { - "type": "java.util.AbstractMap" - }, - { - "type": "java.util.ArrayList", - "serializable": true, - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "java.util.Arrays$ArrayList", - "serializable": true - }, - { - "type": "java.util.CollSer", - "serializable": true - }, - { - "type": "java.util.Collection" - }, - { - "type": "java.util.Collections$EmptyList", - "serializable": true - }, - { - "type": "java.util.Collections$EmptyMap", - "serializable": true - }, - { - "type": "java.util.Collections$SingletonMap" - }, - { - "type": "java.util.Collections$UnmodifiableCollection", - "serializable": true - }, - { - "type": "java.util.Collections$UnmodifiableList", - "serializable": true - }, - { - "type": "java.util.Collections$UnmodifiableMap", - "serializable": true - }, - { - "type": "java.util.HashMap", - "serializable": true - }, - { - "type": "java.util.HashSet", - "serializable": true - }, - { - "type": "java.util.ImmutableCollections$AbstractImmutableCollection" - }, - { - "type": "java.util.ImmutableCollections$AbstractImmutableList" - }, - { - "type": "java.util.ImmutableCollections$AbstractImmutableMap" - }, - { - "type": "java.util.ImmutableCollections$List12" - }, - { - "type": "java.util.ImmutableCollections$ListN" - }, - { - "type": "java.util.ImmutableCollections$Map1" - }, - { - "type": "java.util.List" - }, - { - "type": "java.util.Locale" - }, - { - "type": "java.util.Map" - }, - { - "type": "java.util.Optional" - }, - { - "type": "java.util.RandomAccess" - }, - { - "type": "java.util.Set" - }, - { - "type": "java.util.TreeMap", - "methods": [ - { - "name": "clone", - "parameterTypes": [] - } - ] - }, - { - "type": "java.util.concurrent.ExecutorService" - }, - { - "type": "java.util.concurrent.ScheduledExecutorService" - }, - { - "type": "java.util.concurrent.ThreadFactory" - }, - { - "type": "java.util.function.Function" - }, - { - "type": "java.util.function.Supplier" - }, - { - "type": "java.util.logging.Level", - "methods": [ - { - "name": "parse", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "java.util.logging.LogRecord", - "methods": [ - { - "name": "getLongThreadID", - "parameterTypes": [] - }, - { - "name": "setLongThreadID", - "parameterTypes": [ - "long" - ] - } - ] - }, - { - "type": "java.util.regex.Pattern" - }, - { - "type": "java.util.zip.Adler32", - "methods": [ - { - "name": "update", - "parameterTypes": [ - "java.nio.ByteBuffer" - ] - } - ] - }, - { - "type": "java.util.zip.CRC32", - "methods": [ - { - "name": "update", - "parameterTypes": [ - "java.nio.ByteBuffer" - ] - } - ] - }, - { - "type": "javax.naming.InitialContext", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "lookup", - "parameterTypes": [ - "java.lang.String" - ] - } - ] - }, - { - "type": "javax.xml.transform.Source" - }, - { - "type": "javax.xml.transform.dom.DOMSource" - }, - { - "type": "javax.xml.transform.sax.SAXSource" - }, - { - "type": "javax.xml.transform.stream.StreamSource" - }, - { - "type": "jdk.internal.jrtfs.JrtFileSystemProvider" - }, - { - "type": "jdk.internal.misc.Unsafe", - "methods": [ - { - "name": "getUnsafe", - "parameterTypes": [] - } - ] - }, - { - "type": "kotlin.Metadata" - }, - { - "type": "kotlin.jvm.JvmInline" - }, - { - "type": "net.bytebuddy.agent.Installer", - "methods": [ - { - "name": "agentmain", - "parameterTypes": [ - "java.lang.String", - "java.lang.instrument.Instrumentation" - ] - }, - { - "name": "getInstrumentation", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$AllArguments", - "methods": [ - { - "name": "includeSelf", - "parameterTypes": [] - }, - { - "name": "nullIfEmpty", - "parameterTypes": [] - }, - { - "name": "readOnly", - "parameterTypes": [] - }, - { - "name": "typing", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$Argument", - "methods": [ - { - "name": "optional", - "parameterTypes": [] - }, - { - "name": "readOnly", - "parameterTypes": [] - }, - { - "name": "typing", - "parameterTypes": [] - }, - { - "name": "value", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$DynamicConstant" - }, - { - "type": "net.bytebuddy.asm.Advice$Enter", - "methods": [ - { - "name": "readOnly", - "parameterTypes": [] - }, - { - "name": "typing", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$Exit" - }, - { - "type": "net.bytebuddy.asm.Advice$FieldGetterHandle" - }, - { - "type": "net.bytebuddy.asm.Advice$FieldSetterHandle" - }, - { - "type": "net.bytebuddy.asm.Advice$Handle" - }, - { - "type": "net.bytebuddy.asm.Advice$Local" - }, - { - "type": "net.bytebuddy.asm.Advice$OnMethodEnter", - "methods": [ - { - "name": "inline", - "parameterTypes": [] - }, - { - "name": "prependLineNumber", - "parameterTypes": [] - }, - { - "name": "skipOn", - "parameterTypes": [] - }, - { - "name": "skipOnIndex", - "parameterTypes": [] - }, - { - "name": "suppress", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$OnMethodExit", - "methods": [ - { - "name": "backupArguments", - "parameterTypes": [] - }, - { - "name": "inline", - "parameterTypes": [] - }, - { - "name": "onThrowable", - "parameterTypes": [] - }, - { - "name": "repeatOn", - "parameterTypes": [] - }, - { - "name": "repeatOnIndex", - "parameterTypes": [] - }, - { - "name": "suppress", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$Origin" - }, - { - "type": "net.bytebuddy.asm.Advice$Return", - "methods": [ - { - "name": "readOnly", - "parameterTypes": [] - }, - { - "name": "typing", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$SelfCallHandle" - }, - { - "type": "net.bytebuddy.asm.Advice$This", - "methods": [ - { - "name": "optional", - "parameterTypes": [] - }, - { - "name": "readOnly", - "parameterTypes": [] - }, - { - "name": "typing", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.asm.Advice$Thrown" - }, - { - "type": "net.bytebuddy.description.method.MethodDescription$InDefinedShape$AbstractBase$Executable" - }, - { - "type": "net.bytebuddy.description.method.ParameterDescription$ForLoadedParameter$Parameter" - }, - { - "type": "net.bytebuddy.description.method.ParameterList$ForLoadedExecutable$Executable" - }, - { - "type": "net.bytebuddy.description.type.TypeDefinition$Sort$AnnotatedType" - }, - { - "type": "net.bytebuddy.description.type.TypeDescription$ForLoadedType$Dispatcher" - }, - { - "type": "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator$ForLoadedExecutableParameterType$Dispatcher" - }, - { - "type": "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator$ForLoadedField$Dispatcher" - }, - { - "type": "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator$ForLoadedMethodReturnType$Dispatcher" - }, - { - "type": "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$ForComponentType$AnnotatedParameterizedType" - }, - { - "type": "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$ForTypeArgument$AnnotatedParameterizedType" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.AllArguments" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.Argument" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.BindingPriority" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.Default" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.DefaultCall" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.DefaultCallHandle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.DefaultMethod" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.DefaultMethodHandle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.DynamicConstant" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.FieldGetterHandle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.FieldSetterHandle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.FieldValue" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.Handle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.Origin" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.Super" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.SuperCall" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.SuperCallHandle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.SuperMethod" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.SuperMethodHandle" - }, - { - "type": "net.bytebuddy.implementation.bind.annotation.This" - }, - { - "type": "net.bytebuddy.jar.asmjdkbridge.JdkClassReader" - }, - { - "type": "net.bytebuddy.utility.Invoker" - }, - { - "type": "net.bytebuddy.utility.Invoker$Dispatcher", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher" - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfClassDesc" - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfDirectMethodHandleDesc" - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfDirectMethodHandleDesc$ForKind" - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfDynamicConstantDesc" - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfMethodHandleDesc" - }, - { - "type": "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfMethodTypeDesc" - }, - { - "type": "net.bytebuddy.utility.JavaModule$Module" - }, - { - "type": "net.bytebuddy.utility.JavaModule$Resolver" - }, - { - "type": "org.aesh.command.impl.completer.BooleanOptionCompleter", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.aesh.command.impl.parser.AeshOptionParser", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.maven.surefire.booter.spi.LegacyMasterProcessChannelProcessorFactory" - }, - { - "type": "org.apache.maven.surefire.booter.spi.SurefireMasterProcessChannelProcessorFactory" - }, - { - "type": "org.apache.maven.surefire.junitplatform.JUnitPlatformProvider", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.maven.surefire.api.provider.ProviderParameters" - ] - } - ] - }, - { - "type": "org.apache.pulsar.client.admin.internal.JacksonConfigurator", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.client.admin.internal.OffloadProcessStatusImpl" - }, - { - "type": "org.apache.pulsar.client.admin.internal.PulsarAdminBuilderImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.client.api.ProducerAccessMode" - }, - { - "type": "org.apache.pulsar.client.impl.PulsarServiceNameResolver" - }, - { - "type": "org.apache.pulsar.common.policies.data.CompactionStats" - }, - { - "type": "org.apache.pulsar.common.policies.data.ConsumerStats" - }, - { - "type": "org.apache.pulsar.common.policies.data.DrainingHash" - }, - { - "type": "org.apache.pulsar.common.policies.data.PublisherStats" - }, - { - "type": "org.apache.pulsar.common.policies.data.ReplicatorStats" - }, - { - "type": "org.apache.pulsar.common.policies.data.SubscriptionStats" - }, - { - "type": "org.apache.pulsar.common.policies.data.TopicStats" - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.CompactionStatsImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setLastCompactionDurationTimeInMills", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastCompactionFailedTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastCompactionRemovedEventCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastCompactionSucceedTimestamp", - "parameterTypes": [ - "long" - ] - } - ] - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.ConsumerStatsImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setAddress", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setAvailablePermits", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setAvgMessagesPerEntry", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setBlockedConsumerOnUnackedMsgs", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setBytesOutCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setChunkedMessageRate", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setClientVersion", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setConnectedSince", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setConsumerName", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setDrainingHashesClearedTotal", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDrainingHashesCount", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setDrainingHashesUnackedMessages", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setLastAckedTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastConsumedFlowTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastConsumedTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMessageAckRate", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMetadata", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setMsgOutCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgRateOut", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgRateRedeliver", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgThroughputOut", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setUnackedMessages", - "parameterTypes": [ - "int" - ] - } - ] - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.DrainingHashImpl" - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.PublisherStatsImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setAccessMode", - "parameterTypes": [ - "org.apache.pulsar.client.api.ProducerAccessMode" - ] - }, - { - "name": "setAddress", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setAverageMsgSize", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setChunkedMessageRate", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setClientVersion", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setConnectedSince", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setMetadata", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setMsgRateIn", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgThroughputIn", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setProducerId", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setProducerName", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setSupportsPartialProducer", - "parameterTypes": [ - "boolean" - ] - } - ] - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.ReplicatorStatsImpl" - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.SubscriptionStatsImpl", - "fields": [ - { - "name": "isDurable" - }, - { - "name": "isReplicated" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setAllowOutOfOrderDelivery", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setBacklogSize", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setBlockedSubscriptionOnUnackedMsgs", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setBytesOutCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setChunkedMessageRate", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setConsumers", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "setConsumersAfterMarkDeletePosition", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setDelayedMessageIndexSizeInBytes", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDispatchThrottledBytesEventsByBrokerLimit", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDispatchThrottledBytesEventsBySubscriptionLimit", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDispatchThrottledBytesEventsByTopicLimit", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDispatchThrottledMsgEventsByBrokerLimit", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDispatchThrottledMsgEventsBySubscriptionLimit", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDispatchThrottledMsgEventsByTopicLimit", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDrainingHashesClearedTotal", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setDrainingHashesCount", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setDrainingHashesUnackedMessages", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setDurable", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setEarliestMsgPublishTimeInBacklog", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setFilterAcceptedMsgCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setFilterProcessedMsgCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setFilterRejectedMsgCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setFilterRescheduledMsgCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastAckedTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastConsumedFlowTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastConsumedTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastExpireTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastMarkDeleteAdvancedTimestamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMessageAckRate", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgBacklog", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgBacklogNoDelayed", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgDelayed", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgInReplay", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgOutCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgRateExpired", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgRateOut", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgRateRedeliver", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgThroughputOut", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setNonContiguousDeletedMessagesRanges", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setNonContiguousDeletedMessagesRangesSerializedSize", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setReplicated", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setSubscriptionProperties", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setTotalMsgExpired", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setType", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setUnackedMessages", - "parameterTypes": [ - "long" - ] - } - ] - }, - { - "type": "org.apache.pulsar.common.policies.data.stats.TopicStatsImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - }, - { - "name": "setAbortedTxnCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setAverageMsgSize", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setBacklogQuotaLimitSize", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setBacklogQuotaLimitTime", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setBacklogSize", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setBytesInCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setBytesOutCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setBytesOutInternalCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setCommittedTxnCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setCompaction", - "parameterTypes": [ - "org.apache.pulsar.common.policies.data.stats.CompactionStatsImpl" - ] - }, - { - "name": "setDeduplicationStatus", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setDelayedMessageIndexSizeInBytes", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setEarliestMsgPublishTimeInBacklogs", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastOffloadFailureTimeStamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastOffloadLedgerId", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setLastOffloadSuccessTimeStamp", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgChunkPublished", - "parameterTypes": [ - "boolean" - ] - }, - { - "name": "setMsgInCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgOutCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setMsgRateIn", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgRateOut", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgThroughputIn", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setMsgThroughputOut", - "parameterTypes": [ - "double" - ] - }, - { - "name": "setNonContiguousDeletedMessagesRanges", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setNonContiguousDeletedMessagesRangesSerializedSize", - "parameterTypes": [ - "int" - ] - }, - { - "name": "setOffloadedStorageSize", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setOldestBacklogMessageAgeSeconds", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setOngoingTxnCount", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setOwnerBroker", - "parameterTypes": [ - "java.lang.String" - ] - }, - { - "name": "setPublishRateLimitedTimes", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setPublishers", - "parameterTypes": [ - "java.util.List" - ] - }, - { - "name": "setReplication", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setStorageSize", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setSubscriptions", - "parameterTypes": [ - "java.util.Map" - ] - }, - { - "name": "setSystemTopicBytesInCounter", - "parameterTypes": [ - "long" - ] - }, - { - "name": "setWaitingPublishers", - "parameterTypes": [ - "int" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.AbstractTypeResolver[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.deser.BeanDeserializerModifier[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.deser.Deserializers[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.deser.KeyDeserializers[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.deser.ValueInstantiators[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.ext.Java7SupportImpl", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.ser.BeanSerializerModifier[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.databind.ser.Serializers[]" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.datatype.jdk8.Jdk8Module" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.datatype.jsr310.JavaTimeModule" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule" - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.module.jaxb.deser.DataHandlerJsonDeserializer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.module.jaxb.ser.DataHandlerJsonSerializer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.com.fasterxml.jackson.module.paramnames.ParameterNamesModule" - }, - { - "type": "org.apache.pulsar.shade.com.google.common.util.concurrent.AbstractFutureState", - "fields": [ - { - "name": "listenersField" - }, - { - "name": "valueField" - }, - { - "name": "waitersField" - } - ] - }, - { - "type": "org.apache.pulsar.shade.com.google.common.util.concurrent.AbstractFutureState$Waiter", - "fields": [ - { - "name": "next" - }, - { - "name": "thread" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.buffer.AbstractByteBufAllocator" - }, - { - "type": "org.apache.pulsar.shade.io.netty.buffer.AbstractReferenceCountedByteBuf", - "fields": [ - { - "name": "refCnt" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.AbstractChannelHandlerContext" - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.ChannelOutboundBuffer" - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.DefaultChannelConfig" - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.DefaultChannelPipeline" - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.DefaultChannelPipeline$HeadContext" - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.DefaultChannelPipeline$TailContext" - }, - { - "type": "org.apache.pulsar.shade.io.netty.channel.embedded.EmbeddedChannel$2" - }, - { - "type": "org.apache.pulsar.shade.io.netty.handler.codec.compression.JdkZlibDecoder" - }, - { - "type": "org.apache.pulsar.shade.io.netty.handler.codec.http.HttpClientCodec" - }, - { - "type": "org.apache.pulsar.shade.io.netty.handler.codec.http.HttpContentDecoder$ByteBufForwarder" - }, - { - "type": "org.apache.pulsar.shade.io.netty.handler.codec.http.HttpContentDecompressor" - }, - { - "type": "org.apache.pulsar.shade.io.netty.handler.stream.ChunkedWriteHandler" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.DefaultAttributeMap" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.DefaultAttributeMap$DefaultAttribute" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.HashedWheelTimer" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.HashedWheelTimer$HashedWheelTimeout" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.Recycler$DefaultHandle" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.ReferenceCountUtil" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.ResourceLeakDetector$DefaultResourceLeak" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.concurrent.DefaultPromise" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.concurrent.SingleThreadEventExecutor" - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueColdProducerFields", - "fields": [ - { - "name": "producerLimit" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueConsumerFields", - "fields": [ - { - "name": "consumerIndex" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueProducerFields", - "fields": [ - { - "name": "producerIndex" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.internal.shaded.org.jctools.queues.unpadded.MpscUnpaddedArrayQueueConsumerIndexField", - "fields": [ - { - "name": "consumerIndex" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.internal.shaded.org.jctools.queues.unpadded.MpscUnpaddedArrayQueueProducerIndexField", - "fields": [ - { - "name": "producerIndex" - } - ] - }, - { - "type": "org.apache.pulsar.shade.io.netty.util.internal.shaded.org.jctools.queues.unpadded.MpscUnpaddedArrayQueueProducerLimitField", - "fields": [ - { - "name": "producerLimit" - } - ] - }, - { - "type": "org.apache.pulsar.shade.javax.activation.DataSource" - }, - { - "type": "org.apache.pulsar.shade.javax.inject.Named", - "methods": [ - { - "name": "value", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.javax.inject.Singleton" - }, - { - "type": "org.apache.pulsar.shade.org.asynchttpclient.netty.NettyResponseFuture" - }, - { - "type": "org.apache.pulsar.shade.org.asynchttpclient.netty.channel.ChannelManager$1" - }, - { - "type": "org.apache.pulsar.shade.org.asynchttpclient.netty.channel.DefaultChannelPool$IdleChannel" - }, - { - "type": "org.apache.pulsar.shade.org.asynchttpclient.netty.channel.NettyChannelConnector" - }, - { - "type": "org.apache.pulsar.shade.org.asynchttpclient.netty.handler.HttpHandler" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.hk2.internal.PerThreadContext" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.client.ChunkedInputReader", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.inject.Provider", - "org.apache.pulsar.shade.javax.inject.Provider" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.client.ClientAsyncExecutor" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.client.ClientBackgroundScheduler" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.client.DefaultClientAsyncExecutorProvider" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.client.DefaultClientBackgroundSchedulerProvider" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.client.JerseyClientBuilder" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.inject.hk2.ContextInjectionResolverImpl", - "fields": [ - { - "name": "serviceLocator" - } - ], - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.inject.hk2.Hk2InjectionManagerFactory", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.inject.hk2.Hk2RequestScope", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.inject.hk2.InstanceSupplierFactoryBridge" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.inject.hk2.JerseyErrorService", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.inject.hk2.RequestContext", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.org.glassfish.jersey.process.internal.RequestScope" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.internal.JaxrsProviders", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.inject.Provider", - "org.apache.pulsar.shade.javax.inject.Provider", - "org.apache.pulsar.shade.javax.inject.Provider" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.internal.RuntimeDelegateImpl" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.internal.inject.Custom" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.jackson.JacksonFeature", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.jackson.internal.DefaultJacksonJaxbJsonProvider", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.ws.rs.ext.Providers", - "org.apache.pulsar.shade.javax.ws.rs.core.Configuration" - ] - }, - { - "name": "findAndRegisterModules", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.jackson.internal.JacksonAutoDiscoverable", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.jackson.internal.jackson.jaxrs.base.ProviderBase" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.jackson.internal.jackson.jaxrs.json.JacksonJaxbJsonProvider" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.jackson.internal.jackson.jaxrs.json.JacksonJsonProvider", - "fields": [ - { - "name": "_providers" - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.logging.LoggingFeatureAutoDiscoverable", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.media.multipart.MultiPartFeature", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.media.multipart.internal.MultiPartReaderClientSide", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.ws.rs.ext.Providers", - "org.apache.pulsar.shade.javax.inject.Provider" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.media.multipart.internal.MultiPartWriter", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.ws.rs.ext.Providers" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.AbstractFormProvider" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.AbstractMessageReaderWriterProvider" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.BasicTypesMessageProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.ByteArrayProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.DataSourceProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.EnumMessageProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.FileProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.FormMultivaluedMapProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.FormProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.InputStreamProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.ReaderProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.RenderedImageProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.SourceProvider$DomSourceReader", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.inject.Provider" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.SourceProvider$SaxSourceReader", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.inject.Provider" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.SourceProvider$SourceWriter", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.javax.inject.Provider", - "org.apache.pulsar.shade.javax.inject.Provider" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.SourceProvider$StreamSourceReader", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.StreamingOutputProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.message.internal.StringMessageProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.process.internal.RequestScope" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.spi.AbstractThreadPoolProvider" - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.spi.ScheduledThreadPoolExecutorProvider", - "methods": [ - { - "name": "preDestroy", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.glassfish.jersey.spi.ThreadPoolExecutorProvider", - "methods": [ - { - "name": "preDestroy", - "parameterTypes": [] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.jvnet.hk2.external.generator.ServiceLocatorGeneratorImpl" - }, - { - "type": "org.apache.pulsar.shade.org.jvnet.hk2.internal.DynamicConfigurationServiceImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.org.glassfish.hk2.api.ServiceLocator" - ] - } - ] - }, - { - "type": "org.apache.pulsar.shade.org.jvnet.hk2.internal.ServiceLocatorRuntimeImpl", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.apache.pulsar.shade.org.glassfish.hk2.api.ServiceLocator" - ] - } - ] - }, - { - "type": "org.apiguardian.api.API" - }, - { - "type": "org.eclipse.microprofile.config.Config", - "methods": [ - { - "name": "getOptionalValue", - "parameterTypes": [ - "java.lang.String", - "java.lang.Class" - ] - } - ] - }, - { - "type": "org.eclipse.microprofile.config.ConfigProvider", - "methods": [ - { - "name": "getConfig", - "parameterTypes": [ - "java.lang.ClassLoader" - ] - } - ] - }, - { - "type": "org.eclipse.microprofile.config.ConfigValue" - }, - { - "type": "org.eclipse.microprofile.config.spi.ConfigProviderResolver", - "methods": [ - { - "name": "setInstance", - "parameterTypes": [ - "org.eclipse.microprofile.config.spi.ConfigProviderResolver" - ] - } - ] - }, - { - "type": "org.eclipse.microprofile.context.ManagedExecutor" - }, - { - "type": "org.eclipse.microprofile.context.ThreadContext" - }, - { - "type": "org.instancio.internal.generator.lang.BooleanGenerator", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.instancio.generator.GeneratorContext" - ] - } - ] - }, - { - "type": "org.instancio.internal.generator.lang.DoubleGenerator", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.instancio.generator.GeneratorContext" - ] - } - ] - }, - { - "type": "org.instancio.internal.generator.lang.LongGenerator", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.instancio.generator.GeneratorContext" - ] - } - ] - }, - { - "type": "org.instancio.internal.generator.lang.StringGenerator", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.instancio.generator.GeneratorContext" - ] - } - ] - }, - { - "type": "org.instancio.internal.generator.util.CollectionGenerator", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.instancio.generator.GeneratorContext" - ] - } - ] - }, - { - "type": "org.jboss.jandex.AnnotationInstance[]" - }, - { - "type": "org.jboss.jandex.ClassInfo[]" - }, - { - "type": "org.jboss.logging.BasicLogger" - }, - { - "type": "org.jboss.logging.Logger" - }, - { - "type": "org.jboss.logmanager.CopyOnWriteMap" - }, - { - "type": "org.jboss.logmanager.ExtHandler" - }, - { - "type": "org.jboss.logmanager.ExtLogRecord", - "methods": [ - { - "name": "setMarker", - "parameterTypes": [ - "java.lang.Object" - ] - } - ] - }, - { - "type": "org.jboss.logmanager.JBossLoggerFinder" - }, - { - "type": "org.jboss.logmanager.LogManager" - }, - { - "type": "org.jboss.logmanager.Logger$AttachmentKey" - }, - { - "type": "org.jboss.logmanager.LoggerNode" - }, - { - "type": "org.jboss.logmanager.StandardOutputStreams" - }, - { - "type": "org.jboss.logmanager.configuration.DefaultConfiguratorFactory" - }, - { - "type": "org.jboss.threads.ContextHandler" - }, - { - "type": "org.jboss.threads.EnhancedQueueExecutor$1" - }, - { - "type": "org.jboss.threads.Messages_$logger", - "methods": [ - { - "name": "", - "parameterTypes": [ - "org.jboss.logging.Logger" - ] - } - ] - }, - { - "type": "org.jboss.threads.Messages_$logger_en" - }, - { - "type": "org.jboss.threads.Messages_$logger_en_US" - }, - { - "type": "org.jctools.queues.atomic.unpadded.BaseSpscLinkedAtomicUnpaddedArrayQueueConsumerField" - }, - { - "type": "org.jctools.queues.atomic.unpadded.BaseSpscLinkedAtomicUnpaddedArrayQueueProducerFields" - }, - { - "type": "org.junit.internal.AssumptionViolatedException" - }, - { - "type": "org.junit.jupiter.api.ClassOrderer" - }, - { - "type": "org.junit.jupiter.api.Nested" - }, - { - "type": "org.junit.jupiter.api.Tag" - }, - { - "type": "org.junit.jupiter.api.Test" - }, - { - "type": "org.junit.jupiter.api.condition.DisabledOnOs" - }, - { - "type": "org.junit.jupiter.api.condition.OS" - }, - { - "type": "org.junit.jupiter.api.extension.ExtendWith" - }, - { - "type": "org.junit.jupiter.api.io.TempDir" - }, - { - "type": "org.junit.jupiter.engine.JupiterTestEngine" - }, - { - "type": "org.junit.platform.commons.annotation.Testable" - }, - { - "type": "org.junit.platform.launcher.LauncherSession", - "methods": [ - { - "name": "getLauncher", - "parameterTypes": [] - } - ] - }, - { - "type": "org.junit.platform.launcher.TestIdentifier$SerializedForm", - "serializable": true - }, - { - "type": "org.junit.platform.launcher.core.LauncherFactory", - "methods": [ - { - "name": "openSession", - "parameterTypes": [] - } - ] - }, - { - "type": "org.junit.platform.launcher.listeners.UniqueIdTrackingListener" - }, - { - "type": "org.mockito.configuration.MockitoConfiguration", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.PremainAttach", - "methods": [ - { - "name": "getInstrumentation", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.configuration.DefaultDoNotMockEnforcer", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.configuration.InjectingAnnotationEngine", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.configuration.plugins.DefaultPluginSwitch", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.creation.bytebuddy.InlineByteBuddyMockMaker", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.creation.bytebuddy.MockMethodAdvice" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.MockMethodAdvice$ForEquals" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.MockMethodAdvice$ForHashCode" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.MockMethodAdvice$ForReadObject" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.MockMethodAdvice$ForStatic" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.access.MockMethodInterceptor$DispatcherDefaultingToRealMethod" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.access.MockMethodInterceptor$ForEquals" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.access.MockMethodInterceptor$ForHashCode" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.access.MockMethodInterceptor$ForWriteReplace" - }, - { - "type": "org.mockito.internal.creation.bytebuddy.inject.MockMethodDispatcher" - }, - { - "type": "org.mockito.internal.creation.instance.DefaultInstantiatorProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.exceptions.stacktrace.DefaultStackTraceCleanerProvider", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.util.ConsoleMockitoLogger", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.mockito.internal.util.reflection.InstrumentationMemberAccessor$Dispatcher" - }, - { - "type": "org.mockito.internal.util.reflection.ModuleMemberAccessor", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "org.osgi.framework.BundleReference" - }, - { - "type": "org.slf4j.impl.JBossSlf4jServiceProvider" - }, - { - "type": "org.springframework.util.MultiValueMapAdapter" - }, - { - "type": "picocli.CommandLine" - }, - { - "type": "picocli.CommandLine$IExecutionExceptionHandler" - }, - { - "type": "picocli.CommandLine$IFactory" - }, - { - "type": "picocli.CommandLine$NoVersionProvider" - }, - { - "type": "picocli.CommandLine$ParseResult" - }, - { - "type": "sun.instrument.InstrumentationImpl", - "jniAccessible": true, - "methods": [ - { - "name": "", - "parameterTypes": [ - "long", - "boolean", - "boolean", - "boolean" - ] - }, - { - "name": "loadClassAndCallAgentmain", - "parameterTypes": [ - "java.lang.String", - "java.lang.String" - ] - }, - { - "name": "loadClassAndCallPremain", - "parameterTypes": [ - "java.lang.String", - "java.lang.String" - ] - }, - { - "name": "transform", - "parameterTypes": [ - "java.lang.Module", - "java.lang.ClassLoader", - "java.lang.String", - "java.lang.Class", - "java.security.ProtectionDomain", - "byte[]", - "boolean" - ] - } - ] - }, - { - "type": "sun.management.VMManagementImpl", - "jniAccessible": true, - "fields": [ - { - "name": "compTimeMonitoringSupport" - }, - { - "name": "currentThreadCpuTimeSupport" - }, - { - "name": "objectMonitorUsageSupport" - }, - { - "name": "otherThreadCpuTimeSupport" - }, - { - "name": "remoteDiagnosticCommandsSupport" - }, - { - "name": "synchronizerUsageSupport" - }, - { - "name": "threadAllocatedMemorySupport" - }, - { - "name": "threadContentionMonitoringSupport" - } - ] - }, - { - "type": "sun.misc.Unsafe", - "fields": [ - { - "name": "theUnsafe" - } - ], - "methods": [ - { - "name": "invokeCleaner", - "parameterTypes": [ - "java.nio.ByteBuffer" - ] - }, - { - "name": "trySetMemoryAccessWarned", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.nio.ch.SelectorImpl", - "fields": [ - { - "name": "publicSelectedKeys" - }, - { - "name": "selectedKeys" - } - ] - }, - { - "type": "sun.reflect.ReflectionFactory" - }, - { - "type": "sun.security.pkcs12.PKCS12KeyStore", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.pkcs12.PKCS12KeyStore$DualFormatPKCS12", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.DSA$SHA224withDSA", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.DSA$SHA256withDSA", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.NativePRNG", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.security.SecureRandomParameters" - ] - } - ] - }, - { - "type": "sun.security.provider.NativePRNG$NonBlocking", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.security.SecureRandomParameters" - ] - } - ] - }, - { - "type": "sun.security.provider.SHA", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.SHA2$SHA224", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.SHA2$SHA256", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.SHA5$SHA384", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.SHA5$SHA512", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.provider.X509Factory", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.rsa.PSSParameters", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.rsa.RSAKeyFactory$Legacy", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.rsa.RSAKeyPairGenerator$Legacy", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.rsa.RSAPSSSignature", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.rsa.RSASignature$SHA224withRSA", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.rsa.RSASignature$SHA256withRSA", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.ssl.KeyManagerFactoryImpl$SunX509", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.ssl.SSLContextImpl$DefaultSSLContext", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.ssl.SSLContextImpl$TLSContext", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.ssl.TrustManagerFactoryImpl$PKIXFactory", - "methods": [ - { - "name": "", - "parameterTypes": [] - } - ] - }, - { - "type": "sun.security.x509.AuthorityInfoAccessExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.AuthorityKeyIdentifierExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.BasicConstraintsExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.CRLDistributionPointsExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.CertificatePoliciesExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.ExtendedKeyUsageExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.KeyUsageExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.NetscapeCertTypeExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.PrivateKeyUsageExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.security.x509.SubjectKeyIdentifierExtension", - "methods": [ - { - "name": "", - "parameterTypes": [ - "java.lang.Boolean", - "java.lang.Object" - ] - } - ] - }, - { - "type": "sun.text.resources.BreakIteratorInfo" - }, - { - "type": "sun.text.resources.BreakIteratorResources" - }, - { - "type": "sun.text.resources.BreakIteratorResources_en" - }, - { - "type": "sun.text.resources.BreakIteratorResources_en_US" - }, - { - "type": "sun.text.resources.FormatData" - }, - { - "type": "sun.text.resources.FormatData_en" - }, - { - "type": "sun.text.resources.FormatData_en_US" - }, - { - "type": "sun.text.resources.JavaTimeSupplementary" - }, - { - "type": "sun.text.resources.cldr.FormatData" - }, - { - "type": "sun.text.resources.cldr.FormatData_en" - }, - { - "type": "sun.text.resources.cldr.FormatData_en_US" - }, - { - "type": "sun.util.resources.cldr.CalendarData" - }, - { - "type": "sun.util.resources.cldr.TimeZoneNames" - }, - { - "type": "sun.util.resources.cldr.TimeZoneNames_en" - }, - { - "type": "sun.util.resources.cldr.TimeZoneNames_en_US" - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.method.MethodDescription$InDefinedShape$AbstractBase$Executable" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.method.ParameterDescription$ForLoadedParameter$Parameter" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.method.ParameterList$ForLoadedExecutable$Executable" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDefinition$Sort$AnnotatedType" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$ForLoadedType$Dispatcher" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$Generic" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator$ForLoadedExecutableParameterType$Dispatcher" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator$ForLoadedField$Dispatcher" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator$ForLoadedMethodReturnType$Dispatcher" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$ForComponentType$AnnotatedParameterizedType" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$ForTypeArgument$AnnotatedParameterizedType" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfClassDesc" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfDirectMethodHandleDesc" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfDirectMethodHandleDesc$ForKind" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfDynamicConstantDesc" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfMethodHandleDesc" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaConstant$Simple$Dispatcher$OfMethodTypeDesc" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaModule$Module" - ] - } - }, - { - "type": { - "proxy": [ - "net.bytebuddy.utility.JavaModule$Resolver" - ] - } - }, - { - "type": { - "lambda": { - "declaringClass": "com.streamx.cli.commands.local.run.RunCommandIT", - "interfaces": [ - "java.util.concurrent.Callable" - ] - } - } - } - ], - "resources": [ - { - "glob": "META-INF/microprofile-config.properties" - }, - { - "glob": "META-INF/services/com.sun.net.httpserver.spi.HttpServerProvider" - }, - { - "glob": "META-INF/services/io.cloudevents.core.format.EventFormat" - }, - { - "glob": "META-INF/services/io.cloudevents.core.validator.CloudEventValidator" - }, - { - "glob": "META-INF/services/io.quarkus.arc.ResourceReferenceProvider" - }, - { - "glob": "META-INF/services/io.quarkus.test.common.FacadeClassLoaderProvider" - }, - { - "glob": "META-INF/services/io.quarkus.test.component.QuarkusComponentTestCallbacks" - }, - { - "glob": "META-INF/services/io.smallrye.config.ConfigSourceFactory" - }, - { - "glob": "META-INF/services/io.smallrye.config.ConfigSourceInterceptor" - }, - { - "glob": "META-INF/services/io.smallrye.config.ConfigSourceInterceptorFactory" - }, - { - "glob": "META-INF/services/io.smallrye.config.SecretKeysHandler" - }, - { - "glob": "META-INF/services/io.smallrye.config.SecretKeysHandlerFactory" - }, - { - "glob": "META-INF/services/io.smallrye.config.SmallRyeConfigBuilderCustomizer" - }, - { - "glob": "META-INF/services/java.net.spi.InetAddressResolverProvider" - }, - { - "glob": "META-INF/services/java.net.spi.URLStreamHandlerProvider" - }, - { - "glob": "META-INF/services/java.nio.channels.spi.SelectorProvider" - }, - { - "glob": "META-INF/services/java.nio.file.spi.FileSystemProvider" - }, - { - "glob": "META-INF/services/java.time.zone.ZoneRulesProvider" - }, - { - "glob": "META-INF/services/java.util.spi.ResourceBundleControlProvider" - }, - { - "glob": "META-INF/services/org.apache.maven.surefire.spi.MasterProcessChannelProcessorFactory" - }, - { - "glob": "META-INF/services/org.assertj.core.configuration.Configuration" - }, - { - "glob": "META-INF/services/org.assertj.core.presentation.Representation" - }, - { - "glob": "META-INF/services/org.eclipse.microprofile.config.spi.ConfigProviderResolver" - }, - { - "glob": "META-INF/services/org.eclipse.microprofile.config.spi.ConfigSource" - }, - { - "glob": "META-INF/services/org.eclipse.microprofile.config.spi.ConfigSourceProvider" - }, - { - "glob": "META-INF/services/org.eclipse.microprofile.config.spi.Converter" - }, - { - "glob": "META-INF/services/org.instancio.internal.spi.InternalServiceProvider" - }, - { - "glob": "META-INF/services/org.instancio.spi.InstancioServiceProvider" - }, - { - "glob": "META-INF/services/org.jboss.logging.LoggerProvider" - }, - { - "glob": "META-INF/services/org.jboss.logmanager.ConfiguratorFactory" - }, - { - "glob": "META-INF/services/org.jboss.logmanager.LogContextConfigurator" - }, - { - "glob": "META-INF/services/org.jboss.logmanager.LogContextInitializer" - }, - { - "glob": "META-INF/services/org.jboss.logmanager.MDCProvider" - }, - { - "glob": "META-INF/services/org.jboss.logmanager.NDCProvider" - }, - { - "glob": "META-INF/services/org.junit.jupiter.api.extension.Extension" - }, - { - "glob": "META-INF/services/org.junit.platform.commons.support.scanning.ClasspathScanner" - }, - { - "glob": "META-INF/services/org.junit.platform.engine.TestEngine" - }, - { - "glob": "META-INF/services/org.junit.platform.launcher.LauncherDiscoveryListener" - }, - { - "glob": "META-INF/services/org.junit.platform.launcher.LauncherSessionListener" - }, - { - "glob": "META-INF/services/org.junit.platform.launcher.PostDiscoveryFilter" - }, - { - "glob": "META-INF/services/org.junit.platform.launcher.TestExecutionListener" - }, - { - "glob": "META-INF/services/org.slf4j.spi.SLF4JServiceProvider" - }, - { - "glob": "application-.properties" - }, - { - "glob": "application-test.properties" - }, - { - "glob": "application.properties" - }, - { - "glob": "com/streamx/cli/commands/StreamxCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/completion/CompletionCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/local/run/RunCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/PublishCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/event/DefaultEventTemplatesIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/event/EventCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/event/EventTemplateLoaderIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/events/EventsCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/stream/StreamCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/publish/stream/StreamCommandIngestionConfigIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/copy/CopyCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/create/CreateCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/delete/DeleteCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/edit/EditCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/get/GetCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/list/ListCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/placeholders/PlaceholdersCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/register/RegisterCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/rename/RenameCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/resetdefaulttemplates/ResetDefaultTemplatesCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/unregister/UnregisterCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/validate/ValidateCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/eventtemplates/which/WhichCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/get/GetCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/list/ListCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/set/SetCommandIT.class" - }, - { - "glob": "com/streamx/cli/commands/settings/unset/UnsetCommandIT.class" - }, - { - "glob": "com/streamx/cli/config/StreamxHome.class" - }, - { - "glob": "com/streamx/cli/config/StreamxHomeIT.class" - }, - { - "glob": "com/streamx/cli/framework/CliException.class" - }, - { - "glob": "com/streamx/cli/i18n/MessageProvider.class" - }, - { - "glob": "com/streamx/cli/i18n/MessageProvider_$bundle.class" - }, - { - "glob": "com/streamx/cli/i18n/MessageProvider_$bundle_en.class" - }, - { - "glob": "com/streamx/cli/i18n/MessageProvider_$bundle_en_US.class" - }, - { - "glob": "com/streamx/cli/ingestion/IngestionClientPicocliOptionsIT.class" - }, - { - "glob": "com/streamx/cli/interpolation/InterpolatingMapperTest.class" - }, - { - "glob": "com/streamx/cli/interpolation/InterpolationSupport.class" - }, - { - "glob": "com/streamx/cli/interpolation/InterpolationSupportTest.class" - }, - { - "glob": "com/streamx/cli/mesh/MeshDefinitionResolverInterpolationTest.class" - }, - { - "glob": "com/streamx/cli/mesh/MeshDefinitionResolverTest.class" - }, - { - "glob": "docker-java.properties" - }, - { - "glob": "instancio.properties" - }, - { - "glob": "io/quarkus/arc/All$Literal.class" - }, - { - "glob": "io/quarkus/arc/All.class" - }, - { - "glob": "io/quarkus/arc/Arc.class" - }, - { - "glob": "io/quarkus/arc/ArcContainer.class" - }, - { - "glob": "io/quarkus/arc/ArcInitConfig$Builder.class" - }, - { - "glob": "io/quarkus/arc/ArcInitConfig.class" - }, - { - "glob": "io/quarkus/arc/AsyncObserverExceptionHandler.class" - }, - { - "glob": "io/quarkus/arc/BeanCreator.class" - }, - { - "glob": "io/quarkus/arc/Components.class" - }, - { - "glob": "io/quarkus/arc/ComponentsProvider.class" - }, - { - "glob": "io/quarkus/arc/ContextInstanceHandle.class" - }, - { - "glob": "io/quarkus/arc/CurrentContext.class" - }, - { - "glob": "io/quarkus/arc/CurrentContextFactory.class" - }, - { - "glob": "io/quarkus/arc/InjectableBean$Kind.class" - }, - { - "glob": "io/quarkus/arc/InjectableBean.class" - }, - { - "glob": "io/quarkus/arc/InjectableContext$ContextState.class" - }, - { - "glob": "io/quarkus/arc/InjectableContext.class" - }, - { - "glob": "io/quarkus/arc/InjectableDecorator.class" - }, - { - "glob": "io/quarkus/arc/InjectableInstance.class" - }, - { - "glob": "io/quarkus/arc/InjectableInterceptor.class" - }, - { - "glob": "io/quarkus/arc/InjectableReferenceProvider.class" - }, - { - "glob": "io/quarkus/arc/InstanceHandle.class" - }, - { - "glob": "io/quarkus/arc/InterceptorCreator.class" - }, - { - "glob": "io/quarkus/arc/Lock.class" - }, - { - "glob": "io/quarkus/arc/ManagedContext.class" - }, - { - "glob": "io/quarkus/arc/ResourceReferenceProvider.class" - }, - { - "glob": "io/quarkus/arc/impl/AbstractInstanceHandle.class" - }, - { - "glob": "io/quarkus/arc/impl/AbstractSharedContext.class" - }, - { - "glob": "io/quarkus/arc/impl/ActivateRequestContextInterceptor.class" - }, - { - "glob": "io/quarkus/arc/impl/ApplicationContext.class" - }, - { - "glob": "io/quarkus/arc/impl/ArcCDIProvider$ArcCDI.class" - }, - { - "glob": "io/quarkus/arc/impl/ArcCDIProvider.class" - }, - { - "glob": "io/quarkus/arc/impl/ArcContainerImpl$1.class" - }, - { - "glob": "io/quarkus/arc/impl/ArcContainerImpl$2.class" - }, - { - "glob": "io/quarkus/arc/impl/ArcContainerImpl$Resolvable.class" - }, - { - "glob": "io/quarkus/arc/impl/ArcContainerImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/BeanManagerBean.class" - }, - { - "glob": "io/quarkus/arc/impl/BeanManagerImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/BeanTypeAssignabilityRules.class" - }, - { - "glob": "io/quarkus/arc/impl/BuiltInBean.class" - }, - { - "glob": "io/quarkus/arc/impl/ComputingCache$1.class" - }, - { - "glob": "io/quarkus/arc/impl/ComputingCache.class" - }, - { - "glob": "io/quarkus/arc/impl/ComputingCacheContextInstances.class" - }, - { - "glob": "io/quarkus/arc/impl/ContextInstances.class" - }, - { - "glob": "io/quarkus/arc/impl/Contexts$1.class" - }, - { - "glob": "io/quarkus/arc/impl/Contexts$Builder.class" - }, - { - "glob": "io/quarkus/arc/impl/Contexts.class" - }, - { - "glob": "io/quarkus/arc/impl/CreationalContextImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/CurrentManagedContext$2.class" - }, - { - "glob": "io/quarkus/arc/impl/CurrentManagedContext$CurrentContextState.class" - }, - { - "glob": "io/quarkus/arc/impl/CurrentManagedContext.class" - }, - { - "glob": "io/quarkus/arc/impl/DefaultAsyncObserverExceptionHandler.class" - }, - { - "glob": "io/quarkus/arc/impl/DependentContext.class" - }, - { - "glob": "io/quarkus/arc/impl/EagerInstanceHandle.class" - }, - { - "glob": "io/quarkus/arc/impl/EventBean.class" - }, - { - "glob": "io/quarkus/arc/impl/EventImpl$Notifier.class" - }, - { - "glob": "io/quarkus/arc/impl/EventImpl$ObserverExceptionHandler.class" - }, - { - "glob": "io/quarkus/arc/impl/EventImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/EventMetadataImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/Identified.class" - }, - { - "glob": "io/quarkus/arc/impl/InjectableRequestContextController.class" - }, - { - "glob": "io/quarkus/arc/impl/InjectionPointBean.class" - }, - { - "glob": "io/quarkus/arc/impl/InjectionPointImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/InjectionPointProvider.class" - }, - { - "glob": "io/quarkus/arc/impl/InstanceBean.class" - }, - { - "glob": "io/quarkus/arc/impl/InstanceImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/InterceptedStaticMethods.class" - }, - { - "glob": "io/quarkus/arc/impl/InterceptorBindings.class" - }, - { - "glob": "io/quarkus/arc/impl/LazyValue.class" - }, - { - "glob": "io/quarkus/arc/impl/LockInterceptor.class" - }, - { - "glob": "io/quarkus/arc/impl/Mockable.class" - }, - { - "glob": "io/quarkus/arc/impl/MockableEventImpl.class" - }, - { - "glob": "io/quarkus/arc/impl/Qualifiers$TimesSeenBiFunction.class" - }, - { - "glob": "io/quarkus/arc/impl/Qualifiers.class" - }, - { - "glob": "io/quarkus/arc/impl/Reflections$1.class" - }, - { - "glob": "io/quarkus/arc/impl/Reflections$2.class" - }, - { - "glob": "io/quarkus/arc/impl/Reflections.class" - }, - { - "glob": "io/quarkus/arc/impl/RequestContext.class" - }, - { - "glob": "io/quarkus/arc/impl/SessionContext.class" - }, - { - "glob": "io/quarkus/arc/impl/Sets.class" - }, - { - "glob": "io/quarkus/arc/impl/SingletonContext.class" - }, - { - "glob": "io/quarkus/arc/impl/ThreadLocalCurrentContext.class" - }, - { - "glob": "io/quarkus/arc/impl/ThreadLocalCurrentContextFactory.class" - }, - { - "glob": "io/quarkus/arc/impl/Types.class" - }, - { - "glob": "io/quarkus/runtime/configuration/CharsetConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/CidrAddressConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/DurationConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/InetAddressConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/InetSocketAddressConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/LocaleConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/MemorySize.class" - }, - { - "glob": "io/quarkus/runtime/configuration/MemorySizeConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/PathConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/RegexConverter.class" - }, - { - "glob": "io/quarkus/runtime/configuration/ZoneIdConverter.class" - }, - { - "glob": "io/quarkus/runtime/logging/LevelConverter.class" - }, - { - "glob": "io/quarkus/test/InjectMock.class" - }, - { - "glob": "io/quarkus/test/component/ComponentContainer.class" - }, - { - "glob": "io/quarkus/test/component/ConfigBeanCreator.class" - }, - { - "glob": "io/quarkus/test/component/InterceptorMethodCreator.class" - }, - { - "glob": "io/quarkus/test/component/MockBeanCreator.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTest.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestCallbacks$AfterStartContext.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestCallbacks$AfterStopContext.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestCallbacks$BeforeStartContext.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestCallbacks$ComponentTestContext.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestCallbacks.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestConfigSource.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestConfiguration.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestExtension$1.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestExtension$ContainerState.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestExtension$FieldInjector.class" - }, - { - "glob": "io/quarkus/test/component/QuarkusComponentTestExtension.class" - }, - { - "glob": "io/quarkus/test/component/TestConfigProperty$TestConfigProperties.class" - }, - { - "glob": "io/quarkus/test/component/TestConfigProperty.class" - }, - { - "glob": "io/quarkus/test/junit/mockito/InjectSpy.class" - }, - { - "glob": "io/smallrye/common/classloader/ClassPathUtils.class" - }, - { - "glob": "io/smallrye/common/constraint/Assert.class" - }, - { - "glob": "io/smallrye/common/expression/CompositeNode.class" - }, - { - "glob": "io/smallrye/common/expression/Expression$Flag.class" - }, - { - "glob": "io/smallrye/common/expression/Expression$Itr.class" - }, - { - "glob": "io/smallrye/common/expression/Expression.class" - }, - { - "glob": "io/smallrye/common/expression/ExpressionNode.class" - }, - { - "glob": "io/smallrye/common/expression/LiteralNode.class" - }, - { - "glob": "io/smallrye/common/expression/Node$1.class" - }, - { - "glob": "io/smallrye/common/expression/Node.class" - }, - { - "glob": "io/smallrye/common/expression/ResolveContext.class" - }, - { - "glob": "io/smallrye/common/function/ExceptionBiConsumer.class" - }, - { - "glob": "io/smallrye/common/net/CidrAddress.class" - }, - { - "glob": "io/smallrye/config/AbstractLocationConfigSourceLoader$ConfigSourceClassPathConsumer$1.class" - }, - { - "glob": "io/smallrye/config/AbstractLocationConfigSourceLoader$ConfigSourceClassPathConsumer.class" - }, - { - "glob": "io/smallrye/config/AbstractLocationConfigSourceLoader$URIConverter.class" - }, - { - "glob": "io/smallrye/config/AbstractLocationConfigSourceLoader.class" - }, - { - "glob": "io/smallrye/config/AbstractMappingConfigSourceInterceptor$1.class" - }, - { - "glob": "io/smallrye/config/AbstractMappingConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/ConfigSourceContext.class" - }, - { - "glob": "io/smallrye/config/ConfigSourceFactory.class" - }, - { - "glob": "io/smallrye/config/ConfigSourceInterceptor$1.class" - }, - { - "glob": "io/smallrye/config/ConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/ConfigSourceInterceptorContext.class" - }, - { - "glob": "io/smallrye/config/ConfigSourceInterceptorFactory.class" - }, - { - "glob": "io/smallrye/config/ConfigValidationException.class" - }, - { - "glob": "io/smallrye/config/ConfigValidator$1.class" - }, - { - "glob": "io/smallrye/config/ConfigValidator.class" - }, - { - "glob": "io/smallrye/config/ConfigValue$1.class" - }, - { - "glob": "io/smallrye/config/ConfigValue$ConfigValueBuilder.class" - }, - { - "glob": "io/smallrye/config/ConfigValue.class" - }, - { - "glob": "io/smallrye/config/ConfigValueConfigSource$ConfigValueMapView.class" - }, - { - "glob": "io/smallrye/config/ConfigValueConfigSource$ConfigValueProperties$LineReader.class" - }, - { - "glob": "io/smallrye/config/ConfigValueConfigSource$ConfigValueProperties.class" - }, - { - "glob": "io/smallrye/config/ConfigValueConfigSource.class" - }, - { - "glob": "io/smallrye/config/ConfigurableConfigSource.class" - }, - { - "glob": "io/smallrye/config/Converters$1.class" - }, - { - "glob": "io/smallrye/config/Converters$BuiltInConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$CollectionConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$ConfigValueConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$EmptyValueConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$OptionalDoubleConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$OptionalIntConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$OptionalLongConverter.class" - }, - { - "glob": "io/smallrye/config/Converters$TrimmingConverter.class" - }, - { - "glob": "io/smallrye/config/Converters.class" - }, - { - "glob": "io/smallrye/config/DefaultValuesConfigSource.class" - }, - { - "glob": "io/smallrye/config/EnvConfigSource.class" - }, - { - "glob": "io/smallrye/config/ExpressionConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/LoggingConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/MapBackedConfigValueConfigSource.class" - }, - { - "glob": "io/smallrye/config/NameIterator.class" - }, - { - "glob": "io/smallrye/config/ProfileConfigSourceFactory.class" - }, - { - "glob": "io/smallrye/config/ProfileConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/PropertiesConfigSource$1.class" - }, - { - "glob": "io/smallrye/config/PropertiesConfigSource.class" - }, - { - "glob": "io/smallrye/config/PropertiesConfigSourceLoader$InClassPath.class" - }, - { - "glob": "io/smallrye/config/PropertiesConfigSourceLoader$InFileSystem.class" - }, - { - "glob": "io/smallrye/config/PropertiesConfigSourceLoader.class" - }, - { - "glob": "io/smallrye/config/PropertyName.class" - }, - { - "glob": "io/smallrye/config/RelocateConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/SecretKeys.class" - }, - { - "glob": "io/smallrye/config/SecretKeysConfigSourceInterceptor.class" - }, - { - "glob": "io/smallrye/config/SecuritySupport.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$ConfigSourceWithPriority.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$ConfigSources$1$1.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$ConfigSources$1.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$ConfigSources$PropertyNames.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$ConfigSources.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$SmallRyeConfigSourceContext.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$SmallRyeConfigSourceInterceptorContext$InterceptorChain.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$SmallRyeConfigSourceInterceptorContext$RecursionCount.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig$SmallRyeConfigSourceInterceptorContext.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfig.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$1.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$2.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$3.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$4.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$5.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$6.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$ConverterWithPriority.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$InterceptorWithPriority.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder$MappingBuilder.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigBuilder.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigFactory$Default.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigFactory.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigProviderResolver$1.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigProviderResolver.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigSources$1.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigSources$ConfigValueConfigSourceWrapper.class" - }, - { - "glob": "io/smallrye/config/SmallRyeConfigSources.class" - }, - { - "glob": "io/smallrye/config/_private/ConfigLogging.class" - }, - { - "glob": "io/smallrye/config/_private/ConfigLogging_$logger.class" - }, - { - "glob": "io/smallrye/config/_private/ConfigLogging_$logger_en.class" - }, - { - "glob": "io/smallrye/config/_private/ConfigLogging_$logger_en_US.class" - }, - { - "glob": "io/smallrye/config/common/AbstractConfigSource.class" - }, - { - "glob": "io/smallrye/config/common/AbstractConverter.class" - }, - { - "glob": "io/smallrye/config/common/AbstractDelegatingConverter.class" - }, - { - "glob": "io/smallrye/config/common/AbstractSimpleDelegatingConverter.class" - }, - { - "glob": "io/smallrye/config/common/utils/ConfigSourceUtil.class" - }, - { - "glob": "io/smallrye/config/common/utils/StringUtil.class" - }, - { - "glob": "jakarta/annotation/Priority.class" - }, - { - "glob": "jakarta/enterprise/context/BeforeDestroyed.class" - }, - { - "glob": "jakarta/enterprise/context/Dependent.class" - }, - { - "glob": "jakarta/enterprise/context/Destroyed.class" - }, - { - "glob": "jakarta/enterprise/context/Initialized.class" - }, - { - "glob": "jakarta/enterprise/context/control/ActivateRequestContext.class" - }, - { - "glob": "jakarta/enterprise/context/control/RequestContextController.class" - }, - { - "glob": "jakarta/enterprise/inject/Any.class" - }, - { - "glob": "jakarta/enterprise/inject/Decorated.class" - }, - { - "glob": "jakarta/enterprise/inject/Default.class" - }, - { - "glob": "jakarta/enterprise/inject/Intercepted.class" - }, - { - "glob": "jakarta/enterprise/inject/Model.class" - }, - { - "glob": "jakarta/inject/Named.class" - }, - { - "glob": "jakarta/interceptor/Interceptor.class" - }, - { - "glob": "java/io/FilterInputStream.class" - }, - { - "glob": "java/io/FilterOutputStream.class" - }, - { - "glob": "java/io/InputStream.class" - }, - { - "glob": "java/io/OutputStream.class" - }, - { - "glob": "java/io/PrintStream.class" - }, - { - "glob": "java/io/Serializable.class" - }, - { - "glob": "java/lang/AutoCloseable.class" - }, - { - "glob": "java/lang/Boolean.class" - }, - { - "glob": "java/lang/Byte.class" - }, - { - "glob": "java/lang/CharSequence.class" - }, - { - "glob": "java/lang/Character.class" - }, - { - "glob": "java/lang/Comparable.class" - }, - { - "glob": "java/lang/Double.class" - }, - { - "glob": "java/lang/Enum.class" - }, - { - "glob": "java/lang/Exception.class" - }, - { - "glob": "java/lang/Float.class" - }, - { - "glob": "java/lang/Integer.class" - }, - { - "glob": "java/lang/Iterable.class" - }, - { - "glob": "java/lang/Long.class" - }, - { - "glob": "java/lang/Number.class" - }, - { - "glob": "java/lang/Object.class" - }, - { - "glob": "java/lang/Record.class" - }, - { - "glob": "java/lang/Runnable.class" - }, - { - "glob": "java/lang/RuntimeException.class" - }, - { - "glob": "java/lang/Short.class" - }, - { - "glob": "java/lang/String.class" - }, - { - "glob": "java/lang/Throwable.class" - }, - { - "glob": "java/lang/Void.class" - }, - { - "glob": "java/lang/annotation/Documented.class" - }, - { - "glob": "java/lang/annotation/Inherited.class" - }, - { - "glob": "java/lang/annotation/Retention.class" - }, - { - "glob": "java/lang/annotation/Target.class" - }, - { - "glob": "java/lang/constant/Constable.class" - }, - { - "glob": "java/lang/constant/ConstantDesc.class" - }, - { - "glob": "java/util/Collection.class" - }, - { - "glob": "java/util/List.class" - }, - { - "glob": "java/util/Map.class" - }, - { - "glob": "java/util/Optional.class" - }, - { - "glob": "java/util/OptionalDouble.class" - }, - { - "glob": "java/util/OptionalInt.class" - }, - { - "glob": "java/util/OptionalLong.class" - }, - { - "glob": "java/util/Set.class" - }, - { - "glob": "java/util/concurrent/CompletableFuture.class" - }, - { - "glob": "java/util/concurrent/Executor.class" - }, - { - "glob": "java/util/concurrent/ExecutorService.class" - }, - { - "glob": "java/util/concurrent/ScheduledExecutorService.class" - }, - { - "glob": "java/util/function/Predicate.class" - }, - { - "glob": "java/util/function/Supplier.class" - }, - { - "glob": "jndi.properties" - }, - { - "glob": "junit-platform.properties" - }, - { - "glob": "logging.properties" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.AnnotationEngine" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.DoNotMockEnforcer" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.DoNotMockEnforcerWithType" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.InstantiatorProvider2" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.MemberAccessor" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.MockMaker" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.MockResolver" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.MockitoLogger" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.PluginSwitch" - }, - { - "glob": "mockito-extensions/org.mockito.plugins.StackTraceCleanerProvider" - }, - { - "glob": "mozilla/public-suffix-list.txt" - }, - { - "glob": "org.apache.pulsar.shade.jersey-multipart-config.properties" - }, - { - "glob": "org/apache/hc/client5/version.properties" - }, - { - "glob": "org/apache/pulsar/shade/org/asynchttpclient/config/ahc.properties" - }, - { - "glob": "org/apache/pulsar/shade/org/glassfish/jersey/client/internal/localization_en.properties" - }, - { - "glob": "org/apache/pulsar/shade/org/glassfish/jersey/client/internal/localization_en_US.properties" - }, - { - "glob": "org/apache/pulsar/shade/org/glassfish/jersey/internal/localization_en.properties" - }, - { - "glob": "org/apache/pulsar/shade/org/glassfish/jersey/internal/localization_en_US.properties" - }, - { - "glob": "org/eclipse/microprofile/config/Config.class" - }, - { - "glob": "org/eclipse/microprofile/config/ConfigValue.class" - }, - { - "glob": "org/eclipse/microprofile/config/inject/ConfigProperty.class" - }, - { - "glob": "org/eclipse/microprofile/config/spi/ConfigBuilder.class" - }, - { - "glob": "org/eclipse/microprofile/config/spi/ConfigProviderResolver.class" - }, - { - "glob": "org/eclipse/microprofile/config/spi/ConfigSource.class" - }, - { - "glob": "org/eclipse/microprofile/config/spi/ConfigSourceProvider.class" - }, - { - "glob": "org/eclipse/microprofile/config/spi/Converter.class" - }, - { - "glob": "org/jboss/jandex/DotName$1.class" - }, - { - "glob": "org/jboss/jandex/DotName.class" - }, - { - "glob": "org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForEquals.class" - }, - { - "glob": "org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForHashCode.class" - }, - { - "glob": "org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForStatic.class" - }, - { - "glob": "org/mockito/internal/creation/bytebuddy/MockMethodAdvice.class" - }, - { - "glob": "org/mockito/internal/creation/bytebuddy/inject-MockMethodDispatcher.raw" - }, - { - "glob": "org/osgi/annotation/bundle/Requirements.class" - }, - { - "module": "java.base", - "glob": "java/io/FilterInputStream.class" - }, - { - "module": "java.base", - "glob": "java/io/FilterOutputStream.class" - }, - { - "module": "java.base", - "glob": "java/io/InputStream.class" - }, - { - "module": "java.base", - "glob": "java/io/OutputStream.class" - }, - { - "module": "java.base", - "glob": "java/io/PrintStream.class" - }, - { - "module": "java.base", - "glob": "java/io/Serializable.class" - }, - { - "module": "java.base", - "glob": "java/lang/AutoCloseable.class" - }, - { - "module": "java.base", - "glob": "java/lang/Boolean.class" - }, - { - "module": "java.base", - "glob": "java/lang/Byte.class" - }, - { - "module": "java.base", - "glob": "java/lang/CharSequence.class" - }, - { - "module": "java.base", - "glob": "java/lang/Character.class" - }, - { - "module": "java.base", - "glob": "java/lang/Comparable.class" - }, - { - "module": "java.base", - "glob": "java/lang/Deprecated.class" - }, - { - "module": "java.base", - "glob": "java/lang/Double.class" - }, - { - "module": "java.base", - "glob": "java/lang/Enum.class" - }, - { - "module": "java.base", - "glob": "java/lang/Exception.class" - }, - { - "module": "java.base", - "glob": "java/lang/Float.class" - }, - { - "module": "java.base", - "glob": "java/lang/Integer.class" - }, - { - "module": "java.base", - "glob": "java/lang/Iterable.class" - }, - { - "module": "java.base", - "glob": "java/lang/Long.class" - }, - { - "module": "java.base", - "glob": "java/lang/Number.class" - }, - { - "module": "java.base", - "glob": "java/lang/Object.class" - }, - { - "module": "java.base", - "glob": "java/lang/Record.class" - }, - { - "module": "java.base", - "glob": "java/lang/Runnable.class" - }, - { - "module": "java.base", - "glob": "java/lang/RuntimeException.class" - }, - { - "module": "java.base", - "glob": "java/lang/Short.class" - }, - { - "module": "java.base", - "glob": "java/lang/String.class" - }, - { - "module": "java.base", - "glob": "java/lang/Throwable.class" - }, - { - "module": "java.base", - "glob": "java/lang/Void.class" - }, - { - "module": "java.base", - "glob": "java/lang/annotation/Documented.class" - }, - { - "module": "java.base", - "glob": "java/lang/annotation/Inherited.class" - }, - { - "module": "java.base", - "glob": "java/lang/annotation/Retention.class" - }, - { - "module": "java.base", - "glob": "java/lang/annotation/Target.class" - }, - { - "module": "java.base", - "glob": "java/lang/constant/Constable.class" - }, - { - "module": "java.base", - "glob": "java/lang/constant/ConstantDesc.class" - }, - { - "module": "java.base", - "glob": "java/util/Collection.class" - }, - { - "module": "java.base", - "glob": "java/util/List.class" - }, - { - "module": "java.base", - "glob": "java/util/Map.class" - }, - { - "module": "java.base", - "glob": "java/util/Optional.class" - }, - { - "module": "java.base", - "glob": "java/util/OptionalDouble.class" - }, - { - "module": "java.base", - "glob": "java/util/OptionalInt.class" - }, - { - "module": "java.base", - "glob": "java/util/OptionalLong.class" - }, - { - "module": "java.base", - "glob": "java/util/Set.class" - }, - { - "module": "java.base", - "glob": "java/util/concurrent/CompletableFuture.class" - }, - { - "module": "java.base", - "glob": "java/util/concurrent/Executor.class" - }, - { - "module": "java.base", - "glob": "java/util/concurrent/ExecutorService.class" - }, - { - "module": "java.base", - "glob": "java/util/concurrent/ScheduledExecutorService.class" - }, - { - "module": "java.base", - "glob": "java/util/function/Predicate.class" - }, - { - "module": "java.base", - "glob": "java/util/function/Supplier.class" - }, - { - "module": "java.base", - "glob": "jdk/internal/icu/impl/data/icudt76b/nfc.nrm" - }, - { - "module": "java.base", - "glob": "jdk/internal/vm/annotation/IntrinsicCandidate.class" - }, - { - "module": "java.base", - "glob": "sun/text/resources/LineBreakIteratorData" - }, - { - "bundle": "org.apache.pulsar.shade.org.glassfish.jersey.client.internal.localization" - }, - { - "bundle": "org.apache.pulsar.shade.org.glassfish.jersey.internal.localization" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index db9bcb6d..3d7fdbf8 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -11,15 +11,11 @@ quarkus.log.category."org.jboss".level=OFF # Native image quarkus.native.additional-build-args=\ - -Os,\ - --enable-native-access=ALL-UNNAMED,\ - --initialize-at-run-time=org.jline.nativ,\ - --initialize-at-run-time=org.jline.terminal.impl.jansi,\ - --initialize-at-run-time=org.jline.terminal.impl.ffm,\ - --initialize-at-run-time=jdk.internal.org.jline.terminal.impl.ffm,\ - --initialize-at-run-time=com.github.dockerjava.transport.NamedPipeSocket$Kernel32,\ - --initialize-at-run-time=org.newsclub.net.unix,\ - --initialize-at-run-time=com.fasterxml.jackson.module.jaxb.deser.DataHandlerJsonDeserializer + --initialize-at-run-time=org.apache.http.impl.auth,\ + --initialize-at-run-time=org.jline.nativ,\ + --initialize-at-run-time=org.jline.terminal.impl.jansi,\ + --initialize-at-run-time=org.jline.terminal.impl.ffm,\ + --initialize-at-run-time=jdk.internal.org.jline.terminal.impl.ffm # Fixes "Cannot load required properties from maven-build.properties" error # when run streamx-runner with native-image executable. diff --git a/src/test/java/com/streamx/cli/test/BuildExecutableOnce.java b/src/test/java/com/streamx/cli/test/BuildExecutableOnce.java index c8dbf930..95852c51 100644 --- a/src/test/java/com/streamx/cli/test/BuildExecutableOnce.java +++ b/src/test/java/com/streamx/cli/test/BuildExecutableOnce.java @@ -27,6 +27,7 @@ static void ensureBuilt() { } try { resolvedCommand = resolveExecutablePath(); + System.out.println("StreamX CLI executable: " + resolveExecutablePath()); success = true; } finally { done = true; From c4b73d837299ddb21483f646c0f908878d35f34d Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Mon, 27 Jul 2026 11:16:08 +0200 Subject: [PATCH 02/22] [STX-57] ensure mandrel GraalVM on GHActions --- .github/actions/setup-env/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index 7f63b1fc..16078491 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -43,6 +43,6 @@ runs: - name: Set up JDK uses: graalvm/setup-graalvm@v1 with: - java-version: '25.0.1' - distribution: 'graalvm-community' - github-token: ${{ inputs.github_token }} + java-version: '21' + distribution: 'mandrel' + github-token: ${{ secrets.GITHUB_TOKEN }} From 01306c098e31fa6ad80bbe99b6cfaf240bda75fb Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Mon, 27 Jul 2026 13:24:59 +0200 Subject: [PATCH 03/22] [STX-57] remove build with native agent --- .github/workflows/build-cross-platform.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/build-cross-platform.yml b/.github/workflows/build-cross-platform.yml index 967f2736..fda1b28e 100644 --- a/.github/workflows/build-cross-platform.yml +++ b/.github/workflows/build-cross-platform.yml @@ -58,11 +58,6 @@ jobs: gar_docker_registry: ${{ vars.GAR_DOCKER_REGISTRY }} github_token: ${{ secrets.GITHUB_TOKEN }} - - name: Run tests with native-image-agent (Linux only) - if: startsWith(matrix.name, 'linux') - run: | - .github/scripts/with-capture-docker-logs.sh ./mvnw verify -Pci -T 2 -Dsurefire.forkCount=8 -Dit.forkCount=4 - - name: Build native-image executable run: | .github/scripts/with-capture-docker-logs.sh ./mvnw verify -Pci,native -T 2 -Dsurefire.forkCount=8 -Dit.forkCount=4 From 5c9d1c46c52667cf7aeb8a278829d1804a98a417 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Mon, 27 Jul 2026 13:28:21 +0200 Subject: [PATCH 04/22] [STX-57] set default surefire.forkCount to 1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4e965556..46d5b24a 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ 4.0.1 false - 2 + 1 1 From 2055a4449738d5d895f8bfe49cc9f8974831c541 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Mon, 27 Jul 2026 13:35:51 +0200 Subject: [PATCH 05/22] [STX-57] use github_token input instead of secret --- .github/actions/setup-env/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index 16078491..b3080686 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -45,4 +45,4 @@ runs: with: java-version: '21' distribution: 'mandrel' - github-token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ inputs.github_token }} From e9f32fa3ffceaa8b70da011a8b991b16df4784c4 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Mon, 27 Jul 2026 13:39:45 +0200 Subject: [PATCH 06/22] [STX-57] use 2.1.0-dev.15 StreamX version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 46d5b24a..0a06763c 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ 3.2.5 3.13.0 3.6.0 - 2.1.1-SNAPSHOT + 2.1.0-dev.15 4.0.1 false From 8e1c5952d79cad0c15bcfe31cabc2a9f848ec6f3 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Tue, 28 Jul 2026 11:46:15 +0200 Subject: [PATCH 07/22] [STX-57] use 2.1.0-dev.16 StreamX version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0a06763c..20e7519d 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ 3.2.5 3.13.0 3.6.0 - 2.1.0-dev.15 + 2.1.0-dev.16 4.0.1 false From 923e4fa4eeae0870a4909f915541e43e48f3e720 Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 14:14:26 +0000 Subject: [PATCH 08/22] [no ci] [maven-release-plugin] prepare release 2.0.4-rc.4611405 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 20e7519d..1dff9fc5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-SNAPSHOT + 2.0.4-rc.4611405 scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - HEAD + 2.0.4-rc.4611405 From 494150d96cf7433ee00e81988888efb64fb51159 Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 14:14:26 +0000 Subject: [PATCH 09/22] [no ci] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1dff9fc5..20e7519d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-rc.4611405 + 2.0.4-SNAPSHOT scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - 2.0.4-rc.4611405 + HEAD From 3744c2f4d08738fc0e87f7ab74819476fa1d1b6e Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Tue, 28 Jul 2026 16:39:00 +0200 Subject: [PATCH 10/22] [STX-57] removed macos-amd64 from native build because there is no Mandrel build for that platform --- .github/workflows/build-cross-platform.yml | 3 +-- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-cross-platform.yml b/.github/workflows/build-cross-platform.yml index fda1b28e..d3048514 100644 --- a/.github/workflows/build-cross-platform.yml +++ b/.github/workflows/build-cross-platform.yml @@ -34,8 +34,7 @@ jobs: PLATFORMS='[ { "os": "ubuntu-24.04", "name": "linux-amd64", "artifact": "streamx-linux-x86_64" }, { "os": "ubuntu-24.04-arm", "name": "linux-arm64", "artifact": "streamx-linux-aarch64" }, - { "os": "macos-26-xlarge", "name": "macos-arm64", "artifact": "streamx-macos-aarch64" }, - { "os": "macos-26-large", "name": "macos-amd64", "artifact": "streamx-macos-x86_64" } + { "os": "macos-26-xlarge", "name": "macos-arm64", "artifact": "streamx-macos-aarch64" } ]' echo "platforms=$(echo "$PLATFORMS" | jq -c .)" >> "$GITHUB_OUTPUT" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d7e1ed31..00ae01a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -159,7 +159,7 @@ jobs: java -jar target/*-runner.jar completion zsh > artifacts/completions/_streamx echo "Pre-create platform ZIPs for native binaries" - for PLATFORM in linux-x86_64 linux-aarch64 macos-aarch64 macos-x86_64; do + for PLATFORM in linux-x86_64 linux-aarch64 macos-aarch64; do mkdir -p staging/$PLATFORM/bin mkdir -p staging/$PLATFORM/share/completions cp artifacts/streamx-$PLATFORM staging/$PLATFORM/bin/streamx From c036037dba1443cc15593b246ad8771774e32ffe Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 14:41:29 +0000 Subject: [PATCH 11/22] [no ci] [maven-release-plugin] prepare release 2.0.4-rc.7cdb2a9 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 20e7519d..1450d0fc 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-SNAPSHOT + 2.0.4-rc.7cdb2a9 scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - HEAD + 2.0.4-rc.7cdb2a9 From 6940cd79128d7c0f0ed61596dc881266dd003bbf Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 14:41:29 +0000 Subject: [PATCH 12/22] [no ci] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1450d0fc..20e7519d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-rc.7cdb2a9 + 2.0.4-SNAPSHOT scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - 2.0.4-rc.7cdb2a9 + HEAD From b54f0aada57573526a0fdf52dc1e87844b65f37e Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Tue, 28 Jul 2026 16:59:46 +0200 Subject: [PATCH 13/22] [STX-57] removed macos-amd64 jreleaser config --- .github/jreleaser/jreleaser-preview.yml | 6 +----- .github/jreleaser/jreleaser.yml | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/jreleaser/jreleaser-preview.yml b/.github/jreleaser/jreleaser-preview.yml index f072eb4b..b41b6173 100644 --- a/.github/jreleaser/jreleaser-preview.yml +++ b/.github/jreleaser/jreleaser-preview.yml @@ -12,7 +12,6 @@ project: platform: replacements: - osx-x86_64: macos-x86_64 osx-aarch_64: macos-aarch64 assemble: @@ -48,8 +47,6 @@ distributions: platform: linux-aarch_64 - path: artifacts/streamx-{{projectVersion}}-macos-aarch64.zip platform: osx-aarch_64 - - path: artifacts/streamx-{{projectVersion}}-macos-x86_64.zip - platform: osx-x86_64 streamx-jar: type: JAVA_BINARY @@ -100,5 +97,4 @@ files: artifacts: - path: artifacts/streamx-linux-x86_64 - path: artifacts/streamx-linux-aarch64 - - path: artifacts/streamx-macos-aarch64 - - path: artifacts/streamx-macos-x86_64 \ No newline at end of file + - path: artifacts/streamx-macos-aarch64 \ No newline at end of file diff --git a/.github/jreleaser/jreleaser.yml b/.github/jreleaser/jreleaser.yml index e429eb34..ba5f4b69 100644 --- a/.github/jreleaser/jreleaser.yml +++ b/.github/jreleaser/jreleaser.yml @@ -12,7 +12,6 @@ project: platform: replacements: - osx-x86_64: macos-x86_64 osx-aarch_64: macos-aarch64 assemble: @@ -48,8 +47,6 @@ distributions: platform: linux-aarch_64 - path: artifacts/streamx-{{projectVersion}}-macos-aarch64.zip platform: osx-aarch_64 - - path: artifacts/streamx-{{projectVersion}}-macos-x86_64.zip - platform: osx-x86_64 streamx-jar: type: JAVA_BINARY @@ -96,5 +93,4 @@ files: artifacts: - path: artifacts/streamx-linux-x86_64 - path: artifacts/streamx-linux-aarch64 - - path: artifacts/streamx-macos-aarch64 - - path: artifacts/streamx-macos-x86_64 \ No newline at end of file + - path: artifacts/streamx-macos-aarch64 \ No newline at end of file From 15ce5e665d15b92513e1fadf4921f25f896f8e8f Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 15:01:26 +0000 Subject: [PATCH 14/22] [no ci] [maven-release-plugin] prepare release 2.0.4-rc.668beb1 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 20e7519d..ed8dfd76 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-SNAPSHOT + 2.0.4-rc.668beb1 scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - HEAD + 2.0.4-rc.668beb1 From f82687efaf0bdb77e76e2137144fbd6ab9ee8c6c Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 15:01:26 +0000 Subject: [PATCH 15/22] [no ci] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ed8dfd76..20e7519d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-rc.668beb1 + 2.0.4-SNAPSHOT scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - 2.0.4-rc.668beb1 + HEAD From 85d329b034d538d00e590045875346b6f978ecb4 Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 07:15:23 +0000 Subject: [PATCH 16/22] [no ci] [maven-release-plugin] prepare release 2.0.4-rc.fcb0400 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 20e7519d..8f35a92d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-SNAPSHOT + 2.0.4-rc.fcb0400 scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - HEAD + 2.0.4-rc.fcb0400 From 92d2bbfc9adbc4573541c6e6a4100065c918d89b Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 07:15:23 +0000 Subject: [PATCH 17/22] [no ci] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8f35a92d..20e7519d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-rc.fcb0400 + 2.0.4-SNAPSHOT scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - 2.0.4-rc.fcb0400 + HEAD From 63fbda8d22b395ebd9c8386ac1313ae90a14fb83 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Wed, 29 Jul 2026 15:26:26 +0200 Subject: [PATCH 18/22] [STX-57] include container/** resources in native build --- src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 3d7fdbf8..d3e014ce 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -19,4 +19,4 @@ quarkus.native.additional-build-args=\ # Fixes "Cannot load required properties from maven-build.properties" error # when run streamx-runner with native-image executable. -quarkus.native.resources.includes=maven-build.properties,default-event-templates/** \ No newline at end of file +quarkus.native.resources.includes=maven-build.properties,default-event-templates/**,container/** \ No newline at end of file From 45dea7454e038db774d040da9e0f675cb038fcf5 Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 13:29:57 +0000 Subject: [PATCH 19/22] [no ci] [maven-release-plugin] prepare release 2.0.4-rc.63fbda8 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 20e7519d..6f80dd9a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-SNAPSHOT + 2.0.4-rc.63fbda8 scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - HEAD + 2.0.4-rc.63fbda8 From b56961849ea2e1ac1f5596cc21e55fe684917cd5 Mon Sep 17 00:00:00 2001 From: "streamx-cli-release-bot[bot]" <264353404+streamx-cli-release-bot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 13:29:57 +0000 Subject: [PATCH 20/22] [no ci] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6f80dd9a..20e7519d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ com.streamx.cli streamx-cli - 2.0.4-rc.63fbda8 + 2.0.4-SNAPSHOT scm:git:https://github.com/streamx-com/streamx-cli.git scm:git:https://github.com/streamx-com/streamx-cli.git https://github.com/streamx-com/streamx-cli - 2.0.4-rc.63fbda8 + HEAD From 87d3b2806bb616d3a0210152ad2d14a148427182 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Fri, 31 Jul 2026 09:27:09 +0200 Subject: [PATCH 21/22] [STX-57] set 2.1.0-SNAPSHOT version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 20e7519d..d9c406b5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.streamx.cli streamx-cli - 2.0.4-SNAPSHOT + 2.1.0-SNAPSHOT scm:git:https://github.com/streamx-com/streamx-cli.git From 7d7d95ca978e9c7b5ea55be4eec0e3dbdf8dae51 Mon Sep 17 00:00:00 2001 From: Kamil Chociej Date: Fri, 31 Jul 2026 09:45:10 +0200 Subject: [PATCH 22/22] [STX-57] add information about native build configuration in CONTRIBUTING.md --- CONTRIBUTING.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5ecb829d..8cbdb7d8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,6 +23,16 @@ Otherwise, CI will fail because at this moment Docker isn't supported on macOS a - Use `e` button to edit CLI arguments. +### Native build configuration +Native build requires additional configuration like registering classes for reflection or registering resources to be included +in native artifact. This project uses `quarkus.native.resources.includes` property in +[application.properties](src/main/resources/application.properties) for resources registration and +`com/streamx/cli/ReflectionConfiguration.java` for reflection registration. More details about configuring native build can +be found in: +* https://quarkus.io/guides/writing-native-applications-tips +* https://quarkus.io/guides/native-reference + + ## Running tests `./mvnw verify -Dnative`