diff --git a/.bazelrc b/.bazelrc new file mode 100644 index 00000000000..e0666553d83 --- /dev/null +++ b/.bazelrc @@ -0,0 +1,3 @@ +build --java_language_version=11 +build --java_runtime_version=remotejdk_11 +build --protocopt=--experimental_allow_proto3_optional diff --git a/.bazelversion b/.bazelversion new file mode 100644 index 00000000000..09b254e90c6 --- /dev/null +++ b/.bazelversion @@ -0,0 +1 @@ +6.0.0 diff --git a/.gitignore b/.gitignore index b2243981722..8a5663a51e8 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,14 @@ target/ # Log file from schema registry daemon logs/ nohup.out + +# Ignore all bazel-* symlinks. There is no full list since this can change +# based on the name of the directory bazel is cloned into. +/bazel-* + +# Directories for the Bazel IntelliJ plugin containing the generated +# IntelliJ project files and plugin configuration. Seperate directories are +# for the IntelliJ, Android Studio and CLion versions of the plugin. +/.ijwb/ +/.aswb/ +/.clwb/ diff --git a/BUILD.bazel b/BUILD.bazel new file mode 100644 index 00000000000..1f26d30ffda --- /dev/null +++ b/BUILD.bazel @@ -0,0 +1,46 @@ +load("@bazel_gazelle//:def.bzl", "DEFAULT_LANGUAGES", "gazelle", "gazelle_binary") +load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_filegroup", "pkg_files", "pkg_mklink") + +# gazelle:prefix github.com/your/project +# gazelle:java_maven_install_file maven_install.json + +#gazelle( +# name = "gazelle", +# gazelle = ":gazelle_bin", +#) +# +#gazelle_binary( +# name = "gazelle_bin", +# languages = DEFAULT_LANGUAGES + [ +# "@contrib_rules_jvm//java/gazelle", +# ], +#) + +pkg_files( + name = "package_docs", + srcs = [ + "version.txt", + "README.md", + "LICENSE", + "LICENSE-ConfluentCommunity", + ], + visibility = ["//:__subpackages__"], +) + +pkg_files( + name = "notices", + srcs = glob(["notices/**/*"]), + visibility = ["//:__subpackages__"], +) + +pkg_files( + name = "licenses", + srcs = glob(["licenses/**/*"]), + visibility = ["//:__subpackages__"], +) + +pkg_files( + name = "config", + srcs = glob(["config/**/*"]), + visibility = ["//:__subpackages__"], +) diff --git a/BUILD.google b/BUILD.google new file mode 100644 index 00000000000..dce022d47c4 --- /dev/null +++ b/BUILD.google @@ -0,0 +1,11 @@ +proto_library( + name = 'date_proto', + srcs = ['google/type/date.proto'], + visibility = ['//visibility:public'] +) + +proto_library( + name = 'timeofday_proto', + srcs = ['google/type/timeofday.proto'], + visibility = ['//visibility:public'] +) diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel new file mode 100644 index 00000000000..673ee33ed94 --- /dev/null +++ b/WORKSPACE.bazel @@ -0,0 +1,342 @@ +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") + +#http_archive( +# name = "contrib_rules_jvm", +# sha256 = "09c022847c96f24d085e2c82a6174f0ab98218e6e0903d0793d69af9f771a291", +# strip_prefix = "rules_jvm-0.12.0", +# url = "https://github.com/bazel-contrib/rules_jvm/releases/download/v0.12.0/rules_jvm-v0.12.0.tar.gz", +#) + +#local_repository( +# name = "contrib_rules_jvm", +# path = "../rules_jvm", +#) + +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") + +git_repository( + name = "contrib_rules_jvm", + commit = "f2c51bbeae6d7ec7059eb12c7c3b685dd347049f", + remote = "https://github.com/lyao-77/rules_jvm", +) + +http_archive( + name = "io_bazel_rules_go", + sha256 = "56d8c5a5c91e1af73eca71a6fab2ced959b67c86d12ba37feedb0a2dfea441a6", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip", + "https://github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip", + ], +) + +http_archive( + name = "rules_proto", + sha256 = "dc3fb206a2cb3441b485eb1e423165b231235a1ea9b031b4433cf7bc1fa460dd", + strip_prefix = "rules_proto-5.3.0-21.7", + urls = [ + "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz", + ], +) + +load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains") + +rules_proto_dependencies() + +rules_proto_toolchains() + +http_archive( + name = "bazel_gazelle", + sha256 = "ecba0f04f96b4960a5b250c8e8eeec42281035970aa8852dda73098274d14a1d", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz", + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz", + ], +) + +http_archive( + name = "bazel_skylib", + sha256 = "b8a1527901774180afc798aeb28c4634bdccf19c4d98e7bdd1ce79d1fe9aaad7", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz", + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz", + ], +) + +load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") + +bazel_skylib_workspace() + +load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") +load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") + +go_rules_dependencies() + +go_register_toolchains(version = "1.19.5") + +gazelle_dependencies(go_repository_default_config = "//:WORKSPACE.bazel") + +go_repository( + name = "org_golang_google_grpc", + build_file_proto_mode = "disable", + importpath = "google.golang.org/grpc", + sum = "h1:SfXqXS5hkufcdZ/mHtYCh53P2b+92WQq/DZcKLgsFRs=", + version = "v1.31.1", +) + +############################################################# +# Define your own dependencies here using go_repository. +# Else, dependencies declared by rules_go/gazelle will be used +# The first declaration of an external repository "wins". +############################################################ +load("@contrib_rules_jvm//:repositories.bzl", "contrib_rules_jvm_deps", "contrib_rules_jvm_gazelle_deps") + +contrib_rules_jvm_deps() + +contrib_rules_jvm_gazelle_deps() + +# for linters config +load("@apple_rules_lint//lint:setup.bzl", "lint_setup") + +lint_setup({ + "java-checkstyle": "//checkstyle:checkstyle_config", + "java-spotbugs": "//findbugs:spotbugs_config", +}) + +load("@contrib_rules_jvm//:setup.bzl", "contrib_rules_jvm_setup") + +contrib_rules_jvm_setup() + +load("@contrib_rules_jvm//:gazelle_setup.bzl", "contrib_rules_jvm_gazelle_setup") + +contrib_rules_jvm_gazelle_setup() + +##### RULES_JVM_EXTERNAL +RULES_JVM_EXTERNAL_TAG = "5.1" + +RULES_JVM_EXTERNAL_SHA = "8c3b207722e5f97f1c83311582a6c11df99226e65e2471086e296561e57cc954" + +http_archive( + name = "rules_jvm_external", + sha256 = RULES_JVM_EXTERNAL_SHA, + strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG, + url = "https://github.com/bazelbuild/rules_jvm_external/releases/download/%s/rules_jvm_external-%s.tar.gz" % (RULES_JVM_EXTERNAL_TAG, RULES_JVM_EXTERNAL_TAG), +) + +load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") + +rules_jvm_external_deps() + +load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") + +rules_jvm_external_setup() + +load("@rules_jvm_external//:defs.bzl", "maven_install") + +SWAGGER_CORE_VERSION = "2.1.10" + +maven_install( + artifacts = [ + "com.azure:azure-core:1.33.0", + "com.azure:azure-identity:1.7.3", + "com.azure:azure-security-keyvault-keys:4.5.1", + "com.bettercloud:vault-java-driver:5.1.0", + "com.fasterxml.jackson.core:jackson-databind:2.13.4.2", + "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4", + "com.github.erosb:everit-json-schema:1.14.1", + "com.google.api-client:google-api-client:1.35.2", + "com.google.api.grpc:proto-google-common-protos:2.5.1", + "com.google.crypto.tink:tink-awskms:1.8.0", + "com.google.crypto.tink:tink-gcpkms:1.8.0", + "com.google.crypto.tink:tink:1.8.0", + "com.google.guava:guava-testlib:30.1.1-jre", + "com.google.guava:guava:30.1.1-jre", + "com.google.protobuf:protobuf-java-util:3.19.6", + "com.google.protobuf:protobuf-java:3.19.6", + "com.ibm.jsonata4java:JSONata4Java:2.2.5", + "com.kjetland:mbknor-jackson-jsonschema_2.13:1.0.39", + "com.squareup.okio:okio-jvm:3.0.0", + "com.squareup.wire:wire-runtime-jvm:4.4.3", + "com.squareup.wire:wire-schema-jvm:4.4.3", + # "io.confluent:assembly-plugin-boilerplate:resources", + "io.confluent:common-config:7.5.0-355", + "io.confluent:common-utils:7.5.0-355", + "io.confluent:logredactor:1.0.11", + "io.confluent:rest-utils:7.5.0-344", + "io.kcache:kcache:4.0.11", + "io.netty:netty-codec:4.1.86.Final", + "io.swagger.core.v3:swagger-annotations:" + SWAGGER_CORE_VERSION, + "io.swagger.core.v3:swagger-core:" + SWAGGER_CORE_VERSION, + "javax.xml.ws:jaxws-api:2.3.0", + # "junit:junit:4.12", + "junit:junit:4.13.2", + "org.antlr:antlr4-runtime:4.11.1", + "org.apache.avro:avro:1.11.0", + "org.apache.commons:commons-compress:1.21", + "org.apache.commons:commons-lang3:3.12.0", + "org.apache.directory.api:api-all:1.0.0-M33", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptor-kerberos:2.0.0-M22", + "org.apache.directory.server:apacheds-jdbm-partition:2.0.0-M22", + "org.apache.directory.server:apacheds-ldif-partition:2.0.0-M22", + "org.apache.directory.server:apacheds-mavibot-partition:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-kerberos:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-ldap:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-shared:2.0.0-M22", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.apache.kafka:connect-file:7.5.0-187-ccs", + "org.apache.kafka:connect-json:7.5.0-187-ccs", + "org.apache.kafka:connect-runtime:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:jar:test:7.5.0-187-ccs", + # "org.apache.kafka:kafka-clients:test", + "org.apache.kafka:kafka-streams:7.5.0-187-ccs", + "org.apache.kafka:kafka_2.13:7.5.0-187-ccs", + "org.apache.kafka:kafka_2.13:jar:test:7.5.0-187-ccs", + # "org.apache.kafka:kafka_2.13:test", + "org.apache.maven.plugin-tools:maven-plugin-annotations:3.6.0", + "org.apache.maven:maven-plugin-api:3.8.1", + "org.apache.zookeeper:zookeeper:3.6.3", + "org.bouncycastle:bcpkix-jdk15on:1.68", + "org.easymock:easymock:4.3", + "org.glassfish.jersey.ext:jersey-bean-validation:2.36", + "org.hibernate.validator:hibernate-validator:6.1.7.Final", + "org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-jvm:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.6.0", + "org.mockito:mockito-core:4.6.1", + "org.mockito:mockito-inline:4.6.1", + "org.openjdk.jmh:jmh-core:1.21", + "org.openjdk.jmh:jmh-generator-annprocess:1.21", + "org.powermock:powermock-module-junit4:2.0.9", + "org.projectnessie.cel:cel-jackson:0.3.11", + "org.projectnessie.cel:cel-tools:0.3.11", + "org.slf4j:slf4j-reload4j:2.0.3", + "org.yaml:snakeyaml:1.32", + "uk.co.jemos.podam:podam:7.2.11.RELEASE", + "com.github.spotbugs:spotbugs:4.7.1", + ], + excluded_artifacts = [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data", + ], + maven_install_json = "//:maven_install.json", + repositories = [ + # Private repositories are supported through HTTP Basic auth + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/", + "https://packages.confluent.io/maven/", + "https://jitpack.io", + "https://oss.sonatype.org/content/repositories/snapshots", + "https://repo1.maven.org/maven2", + "https://repository.apache.org/snapshots", + "https://maven.google.com", + ], + use_credentials_from_home_netrc_file = True, +) + +load("@maven//:defs.bzl", "pinned_maven_install") + +pinned_maven_install() + +# for avro plugin +RULES_AVRO_VERSION = "a4c607a5610bea5649b1fb466ea8abcd9916121b" + +RULES_AVRO_SHA256 = "aebc8fc6f8a6a3476d8e8f6f6878fc1cf7a253399e1b2668963e896512be1cc6" + +http_archive( + name = "io_bazel_rules_avro", + sha256 = RULES_AVRO_SHA256, + strip_prefix = "rules_avro-%s" % RULES_AVRO_VERSION, + url = "https://github.com/chenrui333/rules_avro/archive/%s.tar.gz" % RULES_AVRO_VERSION, +) + +load("@io_bazel_rules_avro//avro:avro.bzl", "avro_repositories") + +avro_repositories(version = "1.11.0") + +git_repository( + name = "com_github_johnynek_bazel_jar_jar", + commit = "78c8c13ff437e8397ffe80c9a4c905376720a339", + remote = "https://github.com/johnynek/bazel_jar_jar.git", +) + +load( + "@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl", + "jar_jar_repositories", +) + +jar_jar_repositories() + +# for jmh benchmark +http_archive( + name = "rules_jmh", + sha256 = "dbb7d7e5ec6e932eddd41b910691231ffd7b428dff1ef9a24e4a9a59c1a1762d", + strip_prefix = "buchgr-rules_jmh-6ccf8d7", + type = "zip", + url = "https://github.com/buchgr/rules_jmh/zipball/6ccf8d7b270083982e5c143935704b9f3f18b256", +) + +load("@rules_jmh//:deps.bzl", "rules_jmh_deps") + +rules_jmh_deps() + +load("@rules_jmh//:defs.bzl", "rules_jmh_maven_deps") + +rules_jmh_maven_deps() + +# for maven-assembly-plugin. +http_archive( + name = "rules_pkg", + sha256 = "335632735e625d408870ec3e361e192e99ef7462315caa887417f4d88c4c8fb8", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.9.0/rules_pkg-0.9.0.tar.gz", + "https://github.com/bazelbuild/rules_pkg/releases/download/0.9.0/rules_pkg-0.9.0.tar.gz", + ], +) + +load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") + +rules_pkg_dependencies() + +# for googleapis +http_archive( + name = "googleapis", + build_file = "@//:BUILD.google", + strip_prefix = "googleapis-common-protos-1_3_1/", + url = "https://github.com/googleapis/googleapis/archive/common-protos-1_3_1.zip", +) + +#### for aspect-bazel-lib +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + +http_archive( + name = "aspect_bazel_lib", + sha256 = "97fa63d95cc9af006c4c7b2123ddd2a91fb8d273012f17648e6423bae2c69470", + strip_prefix = "bazel-lib-1.30.2", + url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.30.2/bazel-lib-v1.30.2.tar.gz", +) + +load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies") + +aspect_bazel_lib_dependencies() + +### + +http_archive( + name = "confluent_rules", + auth_patterns = { + "github.com": "Bearer ", + }, + sha256 = "f6ccf5b21ec505195ee20f3bb807337a43e9f9728c8c710e51af0e7b7b955b41", + strip_prefix = "confluent-bazel-rules-0.0.5", + url = "https://github.com/confluentinc/confluent-bazel-rules/archive/refs/tags/0.0.5.tar.gz", +) + +load("@confluent_rules//java/swagger-core-bazel:deps.bzl", "swagger_deps") + +swagger_deps(swagger_core_version = SWAGGER_CORE_VERSION) diff --git a/avro-converter/BUILD.bazel b/avro-converter/BUILD.bazel new file mode 100644 index 00000000000..660d249d5d9 --- /dev/null +++ b/avro-converter/BUILD.bazel @@ -0,0 +1,45 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "avro-converter", + srcs = [ + "src/main/java/io/confluent/connect/avro/AvroConverter.java", + "src/main/java/io/confluent/connect/avro/AvroConverterConfig.java", + ], + visibility = ["//:__subpackages__"], + exports = ["@maven//:org_apache_kafka_connect_api"], + deps = [ + "//avro-data", + "//avro-serializer", + "//client", + "//schema-serializer", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_commons_commons_compress", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "avro-converter-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/connect/avro/AvroConverterTest.java", +# "src/test/java/io/confluent/connect/avro/DeprecatedTestTopicNameStrategy.java", +# ], + deps = [ + ":avro-converter", + "//avro-serializer", + "//client", + "//core", + "//schema-serializer", + "@maven//:com_google_guava_guava", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_hamcrest_hamcrest_core", + "@maven//:org_powermock_powermock_reflect", + ], + tags = ["no-java-spotbugs"], +) diff --git a/avro-data/BUILD.bazel b/avro-data/BUILD.bazel new file mode 100644 index 00000000000..49948b65fd5 --- /dev/null +++ b/avro-data/BUILD.bazel @@ -0,0 +1,81 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +load("@io_bazel_rules_avro//avro:avro.bzl", "avro_gen", "avro_java_library") +# gazelle:java_module_granularity module + +java_library( + name = "avro-data", + srcs = [ + "src/main/java/io/confluent/connect/avro/AvroData.java", + "src/main/java/io/confluent/connect/avro/AvroDataConfig.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "//avro-serializer", + "//schema-converter", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_slf4j_slf4j_api", + ], +) + +avro_java_library( + name = "avro-resources-1", + srcs = glob( + [ + "src/test/avro/*.avsc", + ], + exclude = [ + "src/test/avro/EnumStringUnion.avsc", + "src/test/avro/RepeatedTypeWithDocFull.avsc", + ], + ), +) + +# We have to split them to a different package due to they contain +# duplicated class definitions. +avro_java_library( + name = "avro-resources-2", + srcs = glob([ + "src/test/avro/EnumStringUnion.avsc", + "src/test/avro/RepeatedTypeWithDocFull.avsc", + ]), +) + +filegroup( + name = "avsc-srcs", + srcs = glob(["src/test/avro/*.avsc"]), +) + +java_test_suite( + name = "avro-data-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/connect/avro/AdditionalAvroDataTest.java", +# "src/test/java/io/confluent/connect/avro/AvroDataTest.java", +# ], + data = [":avsc-srcs"], + tags = ["no-java-spotbugs"], + deps = [ + ":avro-data", + ":avro-resources-1", + ":avro-resources-2", + "//avro-converter", + "//avro-serializer", + "//core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_hamcrest_hamcrest_core", + "@maven//:org_powermock_powermock_reflect", + "@maven//:uk_co_jemos_podam_podam", + ], +) diff --git a/avro-data/src/test/java/io/confluent/connect/avro/AdditionalAvroDataTest.java b/avro-data/src/test/java/io/confluent/connect/avro/AdditionalAvroDataTest.java index 29760c0fd1b..a2c32311a62 100644 --- a/avro-data/src/test/java/io/confluent/connect/avro/AdditionalAvroDataTest.java +++ b/avro-data/src/test/java/io/confluent/connect/avro/AdditionalAvroDataTest.java @@ -38,13 +38,14 @@ public void before(){ .build(); avroData = new AvroData(avroDataConfig); + System.out.println("Working Directory = " + System.getProperty("user.dir")); } @Test public void testDocumentationPreservedSchema() throws IOException { - Schema avroSchema = new Parser().parse(new File("src/test/avro/DocTestRecord.avsc")); + Schema avroSchema = new Parser().parse(new File("avro-data/src/test/avro/DocTestRecord.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); @@ -70,7 +71,7 @@ public void testDocumentationPreservedData() throws IOException public void testComplexUnionSchema() throws IOException { // Here is a schema complex union schema - Schema avroSchema = new Parser().parse(new File("src/test/avro/AvroMessage.avsc")); + Schema avroSchema = new Parser().parse(new File("avro-data/src/test/avro/AvroMessage.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); @@ -219,7 +220,7 @@ public void testFieldRecordEnumDocumentationSchema() throws IOException avroData = new AvroData(avroDataConfig); Schema avroSchema = - new Parser().parse(new File("src/test/avro/RepeatedTypeWithDocFull.avsc")); + new Parser().parse(new File("avro-data/src/test/avro/RepeatedTypeWithDocFull.avsc")); Assert.assertEquals(avroSchema.getField("enumField").schema(), avroSchema.getField("anotherEnumField").schema()); @@ -309,7 +310,7 @@ public void testRepeatedTypeWithDefault() throws IOException { avroData = new AvroData(avroDataConfig); Schema avroSchema = - new Parser().parse(new File("src/test/avro/RepeatedTypeWithDefault.avsc")); + new Parser().parse(new File("avro-data/src/test/avro/RepeatedTypeWithDefault.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); @@ -345,7 +346,7 @@ public void testRepeatedTypeWithDefaultWithoutConnectMetaData() throws IOExcepti avroData = new AvroData(avroDataConfig); Schema avroSchema = - new Parser().parse(new File("src/test/avro/RepeatedTypeWithDefault.avsc")); + new Parser().parse(new File("avro-data/src/test/avro/RepeatedTypeWithDefault.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); Assert.assertNull(connectSchema.field("stringField").schema().parameters()); @@ -362,8 +363,9 @@ public void testRepeatedTypeWithDefaultWithoutConnectMetaData() throws IOExcepti @Test public void testArrayOfRecordsWithDefaultValue() throws IOException { + System.out.println("Working Directory = " + System.getProperty("user.dir")); Schema avroSchema = - new Parser().parse(new File("src/test/avro/ArrayOfRecordsWithDefault.avsc")); + new Parser().parse(new File("avro-data/src/test/avro/ArrayOfRecordsWithDefault.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); @@ -399,7 +401,7 @@ public void testDiscardTypeDoc() throws IOException { avroData = new AvroData(avroDataConfig); Schema avroSchema = - new Parser().parse(new File("src/test/avro/RepeatedTypeWithDocFull.avsc")); + new Parser().parse(new File("avro-data/src/test/avro/RepeatedTypeWithDocFull.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); @@ -450,7 +452,7 @@ public void testDiscardTypeDefault() throws IOException { avroData = new AvroData(avroDataConfig); Schema avroSchema = - new Parser().parse(new File("src/test/avro/RepeatedTypeWithDefault.avsc")); + new Parser().parse(new File("avro-data/src/test/avro/RepeatedTypeWithDefault.avsc")); org.apache.kafka.connect.data.Schema connectSchema = avroData.toConnectSchema(avroSchema); Assert.assertEquals("field's default", connectSchema.field("stringField").schema().defaultValue()); diff --git a/avro-data/src/test/java/io/confluent/connect/avro/AvroDataTest.java b/avro-data/src/test/java/io/confluent/connect/avro/AvroDataTest.java index e035d35ebd7..3aa2713f8e3 100644 --- a/avro-data/src/test/java/io/confluent/connect/avro/AvroDataTest.java +++ b/avro-data/src/test/java/io/confluent/connect/avro/AvroDataTest.java @@ -625,7 +625,7 @@ public void testFromConnectComplexWithDefaultStructContainingNulls() { public void testFromConnectComplexWithDefaults() { int dateDefVal = 100; int timeDefVal = 1000 * 60 * 60 * 2; - long tsDefVal = 1000 * 60 * 60 * 24 * 365 + 100; + long tsDefVal = 1000L * 60 * 60 * 24 * 365 + 100; java.util.Date dateDef = Date.toLogical(Date.SCHEMA, dateDefVal); java.util.Date timeDef = Time.toLogical(Time.SCHEMA, timeDefVal); java.util.Date tsDef = Timestamp.toLogical(Timestamp.SCHEMA, tsDefVal); diff --git a/avro-serde/BUILD.bazel b/avro-serde/BUILD.bazel new file mode 100644 index 00000000000..8cf9291d3ed --- /dev/null +++ b/avro-serde/BUILD.bazel @@ -0,0 +1,52 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "avro-serde", + srcs = [ + "src/main/java/io/confluent/kafka/streams/serdes/avro/ConfigurationUtils.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/GenericAvroDeserializer.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/GenericAvroSerde.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/GenericAvroSerializer.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/PrimitiveAvroSerde.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/ReflectionAvroDeserializer.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/ReflectionAvroSerde.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/ReflectionAvroSerializer.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/SpecificAvroDeserializer.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/SpecificAvroSerde.java", + "src/main/java/io/confluent/kafka/streams/serdes/avro/SpecificAvroSerializer.java", + ], + visibility = ["//:__subpackages__"], + exports = ["@maven//:org_apache_avro_avro"], + deps = [ + "//avro-serializer", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "avro-serde-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/example/Widget.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/AvroUtils.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/ConfigurationUtilsTest.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/GenericAvroSerdeTest.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/PrimitiveAvroSerdeTest.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/ReflectionAvroSerdeGenericTest.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/ReflectionAvroSerdeSpecificTest.java", +# "src/test/java/io/confluent/kafka/streams/serdes/avro/SpecificAvroSerdeTest.java", +# ], + deps = [ + ":avro-serde", + "//avro-serializer", + "//avro-serializer:avro-resources", + "//core", + "//schema-serializer", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_hamcrest_hamcrest_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/avro-serializer/BUILD.bazel b/avro-serializer/BUILD.bazel new file mode 100644 index 00000000000..527d156e342 --- /dev/null +++ b/avro-serializer/BUILD.bazel @@ -0,0 +1,84 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +load("@io_bazel_rules_avro//avro:avro.bzl", "avro_gen", "avro_java_library") +load("@rules_jvm_external//:defs.bzl", "java_export") +load("//:variables.bzl", "SCHEMA_REGISTRY_VERSION") +# gazelle:java_module_granularity module + +avro_java_library( + name = "avro-resources", + srcs = glob([ + "src/test/avro/*.avsc", + ]), + visibility = ["//:__subpackages__"], +) + +java_export( + name = "avro-serializer", + srcs = [ + "src/main/java/io/confluent/kafka/formatter/AvroMessageFormatter.java", + "src/main/java/io/confluent/kafka/formatter/AvroMessageReader.java", + "src/main/java/io/confluent/kafka/serializers/AbstractKafkaAvroDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/AbstractKafkaAvroSerDeConfig.java", + "src/main/java/io/confluent/kafka/serializers/AbstractKafkaAvroSerializer.java", + "src/main/java/io/confluent/kafka/serializers/AvroData.java", + "src/main/java/io/confluent/kafka/serializers/GenericContainerWithVersion.java", + "src/main/java/io/confluent/kafka/serializers/KafkaAvroDecoder.java", + "src/main/java/io/confluent/kafka/serializers/KafkaAvroDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/KafkaAvroDeserializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/KafkaAvroSerializer.java", + "src/main/java/io/confluent/kafka/serializers/KafkaAvroSerializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/NonRecordContainer.java", + ], + maven_coordinates = "io.confluent:kafka-avro-serializer:" + SCHEMA_REGISTRY_VERSION, + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + ":avro-resources", + "//client", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_dataformat_jackson_dataformat_csv", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_slf4j_slf4j_api", + "@maven//:io_confluent_logredactor", + ], +) + +java_test_suite( + name = "avro-serializer-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/example/ExtendedWidget.java", +# "src/test/java/io/confluent/kafka/example/Widget.java", +# "src/test/java/io/confluent/kafka/formatter/AvroMessageFormatterTest.java", +# "src/test/java/io/confluent/kafka/formatter/KafkaAvroFormatterTest.java", +# "src/test/java/io/confluent/kafka/serializers/AbstractKafkaAvroDeserializerTest.java", +# "src/test/java/io/confluent/kafka/serializers/AvroSchemaTest.java", +# "src/test/java/io/confluent/kafka/serializers/ContextNameStrategyTest.java", +# "src/test/java/io/confluent/kafka/serializers/KafkaAvroSerializerTest.java", +# ], + runner = "junit4", + tags = ["no-java-spotbugs"], + deps = [ + ":avro-resources", + ":avro-serializer", + "//client", + "//core", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_hamcrest_hamcrest_core", + ], +) diff --git a/benchmark/BUILD.bazel b/benchmark/BUILD.bazel new file mode 100644 index 00000000000..7726dd79076 --- /dev/null +++ b/benchmark/BUILD.bazel @@ -0,0 +1,64 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_binary", "java_library", "java_test_suite") +load("@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl", "jar_jar") +load("@rules_jmh//:defs.bzl", "jmh_java_benchmarks") +# gazelle:java_module_granularity module + +java_library( + name = "benchmark", + srcs = ["src/main/java/io/confluent/schemaregistry/benchmark/SerdeBenchmark.java"], + visibility = ["//:__subpackages__"], + deps = [ + "//avro-serializer", + "//core", + "//json-schema-serializer", + "//json-serializer", + "//protobuf-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_openjdk_jmh_jmh_core", + ], +) + +# for experiment only. +#jar_jar( +# name = "shaded_benchmark", +# input_jar = ":SerdeBenchmark_deploy.jar", +# inline_rules = ["rule io.confluent.schemaregistry.benchmark.** benchmarks.@1"] +#) + +#java_binary( +# name = "SerdeBenchmark", +# main_class = "io.confluent.schemaregistry.benchmark.SerdeBenchmark", +# visibility = ["//visibility:public"], +# runtime_deps = [":benchmark"], +#) + +jmh_java_benchmarks( + name = "benchmarks", + srcs = ["src/main/java/io/confluent/schemaregistry/benchmark/SerdeBenchmark.java"], + deps = [ + "//avro-serializer", + "//core", + "//json-schema-serializer", + "//json-serializer", + "//protobuf-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_openjdk_jmh_jmh_core", + ], +) + +java_test_suite( + name = "benchmark-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = ["src/test/java/io/confluent/schemaregistry/benchmark/SerdeBenchmarkTest.java"], + deps = [ + ":benchmark", + "@maven//:com_google_guava_guava", + "@maven//:junit_junit", + "@maven//:org_hamcrest_hamcrest_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/bin/BUILD.bazel b/bin/BUILD.bazel new file mode 100644 index 00000000000..71d87149169 --- /dev/null +++ b/bin/BUILD.bazel @@ -0,0 +1,29 @@ +load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_filegroup", "pkg_files", "pkg_mklink") + +filegroup( + name = "client_console_scripts_src", + srcs = glob([ + "kafka-avro-console-*", + "kafka-json-schema-console-*", + "kafka-protobuf-console-*", + "schema-registry-run-class", + ]), + visibility = ["//visibility:public"], +) + +filegroup( + name = "schema_registry_console_scripts_src", + srcs = glob([ + "schema-registry-*", + ]), + visibility = ["//visibility:public"], +) + +pkg_files( + name = "bin", + srcs = glob( + ["**/*"], + exclude = ["BUILD.bazel"] + ), + visibility = ["//visibility:public"], +) diff --git a/checkstyle/BUILD.bazel b/checkstyle/BUILD.bazel new file mode 100644 index 00000000000..c9b5492c17c --- /dev/null +++ b/checkstyle/BUILD.bazel @@ -0,0 +1,8 @@ +load("@contrib_rules_jvm//java:defs.bzl", "checkstyle_config") + +checkstyle_config( + name = "checkstyle_config", + config_file = "checkstyle_with_supressions.xml", + data = ["suppressions.xml"], + visibility = ["//visibility:public"], +) diff --git a/checkstyle/checkstyle_with_supressions.xml b/checkstyle/checkstyle_with_supressions.xml new file mode 100644 index 00000000000..cf02c3d350d --- /dev/null +++ b/checkstyle/checkstyle_with_supressions.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/client-console-scripts/BUILD.bazel b/client-console-scripts/BUILD.bazel new file mode 100644 index 00000000000..f0b812ea569 --- /dev/null +++ b/client-console-scripts/BUILD.bazel @@ -0,0 +1,8 @@ +load("@rules_pkg//pkg:zip.bzl", "pkg_zip") + +pkg_zip( + name = "client_console_scripts_resources", + srcs = [ + "//bin:client_console_scripts_src", + ], +) diff --git a/client-encryption-aws/BUILD.bazel b/client-encryption-aws/BUILD.bazel new file mode 100644 index 00000000000..9fa9229c013 --- /dev/null +++ b/client-encryption-aws/BUILD.bazel @@ -0,0 +1,40 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "client-encryption-aws", + srcs = ["src/main/java/io/confluent/kafka/schemaregistry/encryption/aws/AwsFieldEncryptionExecutor.java"], + visibility = ["//:__subpackages__"], + exports = ["@maven//:com_google_crypto_tink_tink"], + deps = [ + "//client-encryption", + "@maven//:com_amazonaws_aws_java_sdk_core", + "@maven//:com_amazonaws_aws_java_sdk_kms", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_crypto_tink_tink_awskms", + ], +) + +java_test_suite( + name = "client-encryption-aws-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/aws/AwsFieldEncryptionExecutorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/aws/AwsFieldEncryptionProperties.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/aws/FakeAwsKms.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/aws/RestApiAwsFieldEncryptionTest.java", +# ], + deps = [ + ":client-encryption-aws", + "//avro-serializer", + "//client-encryption", + "//client-encryption:test-utils", + "//schema-serializer", + "@maven//:com_amazonaws_aws_java_sdk_core", + "@maven//:com_amazonaws_aws_java_sdk_kms", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + ], + tags = ["no-java-spotbugs"], +) diff --git a/client-encryption-azure/BUILD.bazel b/client-encryption-azure/BUILD.bazel new file mode 100644 index 00000000000..418ea76082b --- /dev/null +++ b/client-encryption-azure/BUILD.bazel @@ -0,0 +1,43 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "client-encryption-azure", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/encryption/azure/AzureFieldEncryptionExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/azure/AzureKmsAead.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/azure/AzureKmsClient.java", + ], + visibility = ["//:__subpackages__"], + exports = ["@maven//:com_google_crypto_tink_tink"], + deps = [ + "//client-encryption", + "@maven//:com_azure_azure_core", + "@maven//:com_azure_azure_identity", + "@maven//:com_azure_azure_security_keyvault_keys", + "@maven//:com_google_crypto_tink_tink", + ], +) + +java_test_suite( + name = "client-encryption-azure-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/azure/AzureFieldEncryptionExecutorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/azure/AzureFieldEncryptionProperties.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/azure/RestApiAzureFieldEncryptionTest.java", +# ], + deps = [ + ":client-encryption-azure", + "//avro-serializer", + "//client-encryption", + "//client-encryption:test-utils", + "//schema-serializer", + "@maven//:com_azure_azure_security_keyvault_keys", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:org_mockito_mockito_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/client-encryption-gcp/BUILD.bazel b/client-encryption-gcp/BUILD.bazel new file mode 100644 index 00000000000..0767bb7aeee --- /dev/null +++ b/client-encryption-gcp/BUILD.bazel @@ -0,0 +1,42 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "client-encryption-gcp", + srcs = ["src/main/java/io/confluent/kafka/schemaregistry/encryption/gcp/GcpFieldEncryptionExecutor.java"], + visibility = ["//:__subpackages__"], + exports = ["@maven//:com_google_crypto_tink_tink"], + deps = [ + "//client-encryption", + "@maven//:com_google_apis_google_api_services_cloudkms", + "@maven//:com_google_auth_google_auth_library_oauth2_http", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_crypto_tink_tink_gcpkms", + ], +) + +java_test_suite( + name = "client-encryption-gcp-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/gcp/FakeCloudKms.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/gcp/GcpFieldEncryptionExecutorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/gcp/GcpFieldEncryptionProperties.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/gcp/RestApiGcpFieldEncryptionTest.java", +# ], + deps = [ + ":client-encryption-gcp", + "//avro-serializer", + "//client-encryption", + "//client-encryption:test-utils", + "//schema-serializer", + "@maven//:com_google_api_client_google_api_client", + "@maven//:com_google_apis_google_api_services_cloudkms", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_http_client_google_http_client", + "@maven//:com_google_http_client_google_http_client_gson", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + ], + tags = ["no-java-spotbugs"], +) diff --git a/client-encryption-hcvault/BUILD.bazel b/client-encryption-hcvault/BUILD.bazel new file mode 100644 index 00000000000..eaed5647682 --- /dev/null +++ b/client-encryption-hcvault/BUILD.bazel @@ -0,0 +1,43 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "client-encryption-hcvault", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/encryption/hcvault/HcVaultFieldEncryptionExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/hcvault/HcVaultKmsAead.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/hcvault/HcVaultKmsClient.java", + ], + visibility = ["//:__subpackages__"], + exports = ["@maven//:com_google_crypto_tink_tink"], + deps = [ + "//client-encryption", + "@maven//:com_bettercloud_vault_java_driver", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_guava_guava", + ], +) + +java_test_suite( + name = "client-encryption-hcvault-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/hcvault/HcVaultFieldEncryptionExecutorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/hcvault/HcVaultFieldEncryptionProperties.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/hcvault/RestApiHcVaultFieldEncryptionTest.java", +# ], + deps = [ + ":client-encryption-hcvault", + "//avro-serializer", + "//client-encryption", + "//client-encryption:test-utils", + "//core", + "//schema-serializer", + "@maven//:com_bettercloud_vault_java_driver", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:org_mockito_mockito_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/client-encryption/BUILD.bazel b/client-encryption/BUILD.bazel new file mode 100644 index 00000000000..3802d33eeaf --- /dev/null +++ b/client-encryption/BUILD.bazel @@ -0,0 +1,89 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "client-encryption", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/encryption/Cryptor.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/FieldEncryptionExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/local/LocalFieldEncryptionExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/encryption/local/LocalKmsClient.java", + ], + visibility = ["//:__subpackages__"], + exports = ["@maven//:com_google_crypto_tink_tink"], + deps = [ + "//client", + "//schema-serializer", + "@maven//:com_google_code_findbugs_jsr305", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_errorprone_error_prone_annotations", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:org_apache_kafka_kafka_clients", + ], + tags = ["no-java-spotbugs"] +) + +java_library( + name = "test-utils", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/FieldEncryptionExecutorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/FieldEncryptionProperties.java", +# "src/test/java/io/confluent/kafka/schemaregistry/encryption/RestApiFieldEncryptionTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetProto.java", +# ], + visibility = ["//visibility:public"], + deps = [ + ":client-encryption", + "//avro-serializer", + "//client-encryption/src/test/proto:io_confluent_kafka_schemaregistry_rules_java_library", + "//core", + "//core:test-utils", + "//json-schema-provider", + "//json-schema-serializer", + "//protobuf-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava_testlib", + "@maven//:junit_junit", + "@maven//:org_mockito_mockito_core", + ], + tags = ["no-java-spotbugs"], +) + +java_test_suite( + name = "client-encryption-tests", + srcs = [ + "src/test/java/io/confluent/kafka/schemaregistry/encryption/CryptorTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/encryption/local/LocalFieldEncryptionExecutorTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/encryption/local/LocalFieldEncryptionProperties.java", + "src/test/java/io/confluent/kafka/schemaregistry/encryption/local/RestApiLocalFieldEncryptionTest.java", + ], + deps = [ + ":client-encryption", + ":test-utils", + "//avro-serializer", + "//client", + "//core", + "//core:test-utils", + "//json-schema-provider", + "//json-schema-serializer", + "//protobuf-provider", + "//protobuf-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_guava_guava", + "@maven//:com_google_guava_guava_testlib", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_mockito_mockito_core", + "@maven//:org_slf4j_slf4j_reload4j", + ], + tags = ["no-java-spotbugs"], +) diff --git a/client-encryption/src/test/proto/BUILD.bazel b/client-encryption/src/test/proto/BUILD.bazel new file mode 100644 index 00000000000..6e4d4e769aa --- /dev/null +++ b/client-encryption/src/test/proto/BUILD.bazel @@ -0,0 +1,24 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "io_confluent_kafka_schemaregistry_rules_proto", + srcs = [ + "Widget.proto", + "WidgetBytes.proto", + ], + strip_import_prefix = "/client-encryption/src/test/proto", + visibility = ["//visibility:public"], + deps = ["//protobuf-types/src/main/proto:confluent_proto"], +) + +java_proto_library( + name = "io_confluent_kafka_schemaregistry_rules_java_proto", + deps = [":io_confluent_kafka_schemaregistry_rules_proto"], +) + +java_library( + name = "io_confluent_kafka_schemaregistry_rules_java_library", + visibility = ["//:__subpackages__"], + exports = [":io_confluent_kafka_schemaregistry_rules_java_proto"], +) diff --git a/client/BUILD.bazel b/client/BUILD.bazel new file mode 100644 index 00000000000..b5dd7a2bae6 --- /dev/null +++ b/client/BUILD.bazel @@ -0,0 +1,152 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +load("@rules_jvm_external//:defs.bzl", "java_export") +load("//:variables.bzl", "SCHEMA_REGISTRY_VERSION") +# gazelle:java_module_granularity module + +java_export( + name = "client", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/AbstractSchemaProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/CompatibilityChecker.java", + "src/main/java/io/confluent/kafka/schemaregistry/CompatibilityLevel.java", + "src/main/java/io/confluent/kafka/schemaregistry/ParsedSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/SchemaEntity.java", + "src/main/java/io/confluent/kafka/schemaregistry/SchemaProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/SchemaValidationStrategy.java", + "src/main/java/io/confluent/kafka/schemaregistry/SchemaValidator.java", + "src/main/java/io/confluent/kafka/schemaregistry/SchemaValidatorBuilder.java", + "src/main/java/io/confluent/kafka/schemaregistry/annotations/Schema.java", + "src/main/java/io/confluent/kafka/schemaregistry/annotations/SchemaReference.java", + "src/main/java/io/confluent/kafka/schemaregistry/avro/AvroCompatibilityChecker.java", + "src/main/java/io/confluent/kafka/schemaregistry/avro/AvroCompatibilityLevel.java", + "src/main/java/io/confluent/kafka/schemaregistry/avro/AvroSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/avro/AvroSchemaProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/avro/AvroSchemaUtils.java", + "src/main/java/io/confluent/kafka/schemaregistry/avro/Difference.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClient.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/MockSchemaRegistryClient.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/SchemaMetadata.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/SchemaRegistryClient.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/SchemaRegistryClientConfig.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/SchemaRegistryClientFactory.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/SchemaVersionFetcher.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/config/provider/SchemaRegistryConfigProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/RestService.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/UriBuilder.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/Versions.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/Config.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/ErrorMessage.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/Metadata.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/Mode.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/Rule.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/RuleKind.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/RuleMode.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/RuleSet.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/Schema.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/SchemaReference.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/SchemaRegistryServerVersion.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/SchemaString.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/SchemaTypeConverter.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/ServerClusterId.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/SubjectVersion.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/requests/CompatibilityCheckResponse.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/requests/ConfigUpdateRequest.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/requests/ModeUpdateRequest.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/requests/RegisterSchemaRequest.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/entities/requests/RegisterSchemaResponse.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/exceptions/RestClientException.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/rest/utils/UrlList.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/SslFactory.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/basicauth/BasicAuthCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/basicauth/BasicAuthCredentialProviderFactory.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/basicauth/SaslBasicAuthCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/basicauth/UrlBasicAuthCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/basicauth/UserInfoCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/BearerAuthCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/BearerAuthCredentialProviderFactory.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/StaticTokenCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/CachedOauthTokenRetriever.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/OauthCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/OauthTokenCache.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/SaslOauthCredentialProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/exceptions/SchemaRegistryOauthTokenRetrieverException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/DlqAction.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/ErrorAction.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/FieldRuleExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/FieldTransform.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/NoneAction.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/RuleAction.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/RuleBase.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/RuleContext.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/RuleException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/RuleExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/testutil/MockSchemaRegistry.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/BoundedConcurrentHashMap.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/EnumRecommender.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/JacksonMapper.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/QualifiedSubject.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/WildcardMatcher.java", + ], + maven_coordinates = "io.confluent:kafka-schema-registry-client:" + SCHEMA_REGISTRY_VERSION, + resources = glob([ + "src/main/resources/**/*", + ]), + visibility = ["//:__subpackages__"], + exports = [ + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:io_swagger_core_v3_swagger_annotations", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_slf4j_slf4j_api", + ], +) + +java_test_suite( + name = "client-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClientTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/config/provider/SchemaRegistryConfigProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/rest/RestServiceTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/rest/ServerClusterIdTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/rest/UriBuilderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/rest/entities/MergeEntitiesTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/rest/entities/requests/RegisterSchemaRequestTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/rest/utils/UrlListTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/SslFactoryTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/basicauth/BasicAuthCredentialProviderFactoryTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/basicauth/SaslBasicAuthCredentialProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/basicauth/UrlBasicAuthCredentialProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/basicauth/UserInfoCredentialProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/BearerAuthCredentialProviderFactoryTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/StaticTokenCredentialProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/CachedOauthTokenRetrieverTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/OauthCredentialProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/OauthTokenCacheTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/security/bearerauth/oauth/SaslOauthCredentialProviderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/utils/QualifiedSubjectTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/utils/WildcardMatcherTest.java", +# ], + deps = [ + ":client", + "//core", + "@maven//:com_google_guava_guava", + "@maven//:com_google_guava_guava_testlib", + "@maven//:io_confluent_common_utils", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_easymock_easymock", + "@maven//:org_mockito_mockito_core", + "@maven//:org_mockito_mockito_inline", + ], + tags = ["no-java-spotbugs"], +) diff --git a/client/src/test/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClientTest.java b/client/src/test/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClientTest.java index 28641a54d38..5e3d99c543d 100644 --- a/client/src/test/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClientTest.java +++ b/client/src/test/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClientTest.java @@ -424,6 +424,7 @@ public void testGetMode() throws Exception { verify(restService); } + @Test public void testDeleteVersionNotInVersionCache() throws Exception { expect(client.deleteSchemaVersion(Collections.emptyMap(), SUBJECT_0, "0")) .andReturn(10); diff --git a/core/BUILD.bazel b/core/BUILD.bazel new file mode 100644 index 00000000000..1ce39044d78 --- /dev/null +++ b/core/BUILD.bazel @@ -0,0 +1,377 @@ +load("@rules_java//java:defs.bzl", "java_proto_library") +load("@contrib_rules_jvm//java:defs.bzl", "java_binary", "java_library", "java_test_suite") +load("@io_bazel_rules_avro//avro:avro.bzl", "avro_gen", "avro_java_library") +load("@confluent_rules//java/swagger-core-bazel:gen.bzl", "generate_openapi_spec") +# gazelle:java_module_granularity module + +generate_openapi_spec( + name = "schema-registry-api-spec", + additional_runtime_deps = [ + "//core:core", + ], + config_file = "src/main/resources/openapi.yaml", + output_files = [ + "generated/swagger-ui/schema-registry-api-spec.yaml", + ], + properties_file = "src/main/resources/swagger-core-bazel.properties", +) + +java_library( + name = "core", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/avro/AvroUtils.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/IdDoesNotMatchException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/IdGenerationException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/IncompatibleSchemaException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/InvalidSchemaException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/InvalidVersionException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/OperationNotPermittedException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/ReferenceExistsException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaRegistryException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaRegistryInitializationException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaRegistryRequestForwardingException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaRegistryStoreException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaRegistryTimeoutException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaTooLargeException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SchemaVersionNotSoftDeletedException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/SubjectNotSoftDeletedException.java", + "src/main/java/io/confluent/kafka/schemaregistry/exceptions/UnknownLeaderException.java", + "src/main/java/io/confluent/kafka/schemaregistry/id/IdGenerator.java", + "src/main/java/io/confluent/kafka/schemaregistry/id/IncrementalIdGenerator.java", + "src/main/java/io/confluent/kafka/schemaregistry/id/SchemaIdRange.java", + "src/main/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/ClientConfig.java", + "src/main/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/KafkaGroupLeaderElector.java", + "src/main/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/SchemaRegistryCoordinator.java", + "src/main/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/SchemaRegistryProtocol.java", + "src/main/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/SchemaRegistryRebalanceListener.java", + "src/main/java/io/confluent/kafka/schemaregistry/metrics/MetricsContainer.java", + "src/main/java/io/confluent/kafka/schemaregistry/metrics/SchemaRegistryMetric.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/JsonErrorHandler.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/Main.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/SchemaRegistryConfig.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/SchemaRegistryMain.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/SchemaRegistryRestApplication.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/VersionId.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/Errors.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestIdDoesNotMatchException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestIncompatibleSchemaException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestInvalidCompatibilityException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestInvalidModeException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestInvalidRuleSetException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestInvalidSchemaException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestInvalidSubjectException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestInvalidVersionException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestOperationNotPermittedException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestReferenceExistsException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestRequestForwardingException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestSchemaRegistryException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestSchemaRegistryStoreException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestSchemaRegistryTimeoutException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestSchemaTooLargeException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/exceptions/RestUnknownLeaderException.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/extensions/SchemaRegistryResourceExtension.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/filters/ContextFilter.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/filters/RestCallMetricFilter.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/CompatibilityResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/ConfigResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/ContextsResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/DocumentedName.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/ModeResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/RequestHeaderBuilder.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/RootResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/SchemasResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/ServerMetadataResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/SubjectVersionsResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/rest/resources/SubjectsResource.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ClearSubjectKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ClearSubjectValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/CloseableIterator.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/CompositeSchemaUpdateHandler.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ConfigKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ConfigValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ContextKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ContextValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/DelegatingIterator.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/DeleteSubjectKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/DeleteSubjectValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/InMemoryCache.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/KafkaSchemaRegistry.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/KafkaStore.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreMessageHandler.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreReaderThread.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/LeaderAwareSchemaRegistry.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/LeaderElector.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/LookupCache.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/LookupFilter.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/MD5.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/Metadata.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/Mode.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ModeKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/ModeValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/NoopKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/OffsetCheckpoint.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/Rule.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/RuleKind.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/RuleMode.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/RuleSet.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/RuleSetHandler.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaIdAndSubjects.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaReference.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistry.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistryIdentity.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistryKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistryKeyType.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistryValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaUpdateHandler.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/Store.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/StoreUpdateHandler.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SubjectKey.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SubjectKeyComparator.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/SubjectValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/TransformedIterator.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/encoder/KeysetWrapper.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/encoder/KeysetWrapperDeserializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/encoder/KeysetWrapperSerde.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/encoder/KeysetWrapperSerializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/encoder/MetadataEncoderService.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/exceptions/EntryTooLargeException.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/exceptions/SerializationException.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/exceptions/StoreException.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/exceptions/StoreInitializationException.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/exceptions/StoreTimeoutException.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/serialization/SchemaRegistrySerializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/storage/serialization/Serializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/tools/SchemaRegistryClientPerformance.java", + "src/main/java/io/confluent/kafka/schemaregistry/tools/SchemaRegistryPerformance.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/AppInfoParser.java", + "src/main/java/io/confluent/kafka/schemaregistry/utils/ShutdownableThread.java", + ], + resources = glob(["src/main/resources/*"]), + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "@maven//:com_google_crypto_tink_tink", + "@maven//:io_confluent_rest_utils", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_eclipse_jetty_jetty_util", + ], + deps = [ + "//client", + "//json-schema-provider", + "//protobuf-provider", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_crypto_tink_tink", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:io_confluent_common_utils", + "@maven//:io_confluent_rest_utils", + "@maven//:io_kcache_kcache", + "@maven//:io_swagger_core_v3_swagger_annotations", + "@maven//:io_swagger_core_v3_swagger_core", + "@maven//:jakarta_ws_rs_jakarta_ws_rs_api", + "@maven//:javax_annotation_javax_annotation_api", + "@maven//:javax_servlet_javax_servlet_api", + "@maven//:javax_validation_validation_api", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_eclipse_jetty_jetty_http", + "@maven//:org_eclipse_jetty_jetty_server", + "@maven//:org_eclipse_jetty_jetty_servlet", + "@maven//:org_eclipse_jetty_jetty_util", + "@maven//:org_hibernate_validator_hibernate_validator", + "@maven//:org_scala_lang_scala_library", + "@maven//:org_slf4j_slf4j_api", + ], +) + +java_binary( + name = "deploy_package", + create_executable = False, + runtime_deps = [":core"] +) + +java_binary( + name = "Main", + main_class = "io.confluent.kafka.schemaregistry.rest.Main", + visibility = ["//visibility:public"], + runtime_deps = [":core"], +) + +java_binary( + name = "SchemaRegistryConfig", + main_class = "io.confluent.kafka.schemaregistry.rest.SchemaRegistryConfig", + visibility = ["//visibility:public"], + runtime_deps = [":core"], +) + +java_binary( + name = "SchemaRegistryMain", + main_class = "io.confluent.kafka.schemaregistry.rest.SchemaRegistryMain", + visibility = ["//visibility:public"], + runtime_deps = [":core"], +) + +java_binary( + name = "SchemaRegistryClientPerformance", + main_class = "io.confluent.kafka.schemaregistry.tools.SchemaRegistryClientPerformance", + visibility = ["//visibility:public"], + runtime_deps = [":core"], +) + +java_binary( + name = "SchemaRegistryPerformance", + main_class = "io.confluent.kafka.schemaregistry.tools.SchemaRegistryPerformance", + visibility = ["//visibility:public"], + runtime_deps = [":core"], +) + +avro_java_library( + name = "avro-resources", + srcs = [ + "src/test/avro/asubrecord.avsc", + "src/test/avro/record.avsc", + ], + files_not_dirs = True, +) + +java_library( + name = "test-utils", +# srcs = glob(["src/test/**/*.java"]), + srcs = [ + "src/test/java/io/confluent/kafka/schemaregistry/ClusterTestHarness.java", + "src/test/java/io/confluent/kafka/schemaregistry/LeaderElectorTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/RestApp.java", + "src/test/java/io/confluent/kafka/schemaregistry/SASLClusterTestHarness.java", + "src/test/java/io/confluent/kafka/schemaregistry/SSLClusterTestHarness.java", + "src/test/java/io/confluent/kafka/schemaregistry/rest/SecureTestUtils.java", + "src/test/java/io/confluent/kafka/schemaregistry/rest/json/RestApiTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/rest/protobuf/RestApiTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreSSLAuthTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/storage/StoreUtils.java", + "src/test/java/io/confluent/kafka/schemaregistry/storage/StringMessageHandler.java", + "src/test/java/io/confluent/kafka/schemaregistry/storage/StringSerializer.java", + "src/test/java/io/confluent/kafka/schemaregistry/testutil/MockSchemaRegistryTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/utils/ResourceLoader.java", + "src/test/java/io/confluent/kafka/schemaregistry/utils/TestUtils.java", + "src/test/java/io/confluent/kafka/serializers/protobuf/test/Ref.java", + "src/test/java/io/confluent/kafka/serializers/protobuf/test/Root.java", + ], + visibility = ["//visibility:public"], + deps = [ + ":core", + "//avro-serializer", + "//client", + "//json-schema-provider", + "//protobuf-provider", + "//schema-serializer", + "@@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_dataformat_jackson_dataformat_csv", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_wire_wire_schema_jvm", + "@maven//:io_confluent_common_utils", + "@maven//:io_confluent_rest_utils", + "@maven//:io_kcache_kcache", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_2_13_test", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_apache_kafka_kafka_clients_test", + "@maven//:org_easymock_easymock", + "@maven//:org_eclipse_jetty_jetty_http", + "@maven//:org_eclipse_jetty_jetty_server", + "@maven//:org_mockito_mockito_core", + "@maven//:org_scala_lang_scala_library", + "@maven//:org_slf4j_slf4j_api", + ], + tags = ["no-java-spotbugs"], +) + +java_test_suite( + name = "core-tests", + srcs = glob(["src/test/**/*.java"]), + timeout = "long", +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/avro/AvroCompatibilityTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/CachedSchemaRegistryClientTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/client/MockSchemaRegistryClientTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/SchemaRegistryCoordinatorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/leaderelector/kafka/SchemaRegistryProtocolTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/metrics/CustomSchemaProviderMetricTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/metrics/MetricsTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RequestHeaderBuilderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiCompatibilityTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiContextTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiMetadataEncoderTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiModeTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiSchemaTooLargeTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiSslTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiTransitiveCompatibilityTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/SchemaRegistryConfigTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/SchemaRegistryErrorHandlerTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/SchemaRegistryExtensionTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/filters/ContextFilterTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rest/protobuf/RestApiTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreReaderThreadTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreSASLTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreSSLNoAuthTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/KafkaStoreTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/OffsetCheckpointTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/SchemaRegistryKeysTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/SchemaValuesTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/storage/encoder/MetadataEncoderServiceTest.java", +# ], + resources = glob(["test/resources/*"]), + runtime_deps = [ + "@maven//:org_slf4j_slf4j_reload4j", + ], + deps = [ + ":avro-resources", + ":core", + ":test-utils", + "//avro-serializer", + "//client", + "//core/src/test/proto:io_confluent_kafka_serializers_protobuf_test_java_library", + "//json-schema-provider", + "//protobuf-provider", + "//protobuf-types", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_dataformat_jackson_dataformat_csv", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:com_squareup_wire_wire_schema_jvm", + "@maven//:io_confluent_common_utils", + "@maven//:io_confluent_rest_utils", + "@maven//:io_kcache_kcache", + "@maven//:jakarta_ws_rs_jakarta_ws_rs_api", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_directory_api_api_all", + "@maven//:org_apache_directory_server_apacheds_interceptor_kerberos", + "@maven//:org_apache_directory_server_apacheds_ldif_partition", + "@maven//:org_apache_directory_server_apacheds_protocol_kerberos", + "@maven//:org_apache_directory_server_apacheds_protocol_ldap", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_2_13_test", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_apache_kafka_kafka_clients_test", + "@maven//:org_bouncycastle_bcpkix_jdk15on", + "@maven//:org_easymock_easymock", + "@maven//:org_eclipse_jetty_jetty_http", + "@maven//:org_eclipse_jetty_jetty_server", + "@maven//:org_mockito_mockito_core", + "@maven//:org_scala_lang_scala_library", + "@maven//:org_slf4j_slf4j_api", + ], + tags = ["no-java-spotbugs"], +) diff --git a/core/generated/swagger-ui/schema-registry-api-spec.yaml b/core/generated/swagger-ui/schema-registry-api-spec.yaml index de7b1206388..cd779ada4b7 100644 --- a/core/generated/swagger-ui/schema-registry-api-spec.yaml +++ b/core/generated/swagger-ui/schema-registry-api-spec.yaml @@ -109,66 +109,6 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /: - get: - summary: Schema Registry Root Resource - description: The Root resource is a no-op. - operationId: get - responses: - default: - content: - application/vnd.schemaregistry.v1+json: - schema: - type: string - application/vnd.schemaregistry+json; qs=0.9: - schema: - type: string - application/json; qs=0.5: - schema: - type: string - post: - operationId: post - requestBody: - content: - application/vnd.schemaregistry.v1+json: - schema: - type: object - additionalProperties: - type: string - application/vnd.schemaregistry+json: - schema: - type: object - additionalProperties: - type: string - application/json: - schema: - type: object - additionalProperties: - type: string - application/octet-stream: - schema: - type: object - additionalProperties: - type: string - responses: - default: - description: default response - content: - application/vnd.schemaregistry.v1+json: - schema: - type: object - additionalProperties: - type: string - application/vnd.schemaregistry+json; qs=0.9: - schema: - type: object - additionalProperties: - type: string - application/json; qs=0.5: - schema: - type: object - additionalProperties: - type: string /compatibility/subjects/{subject}/versions: post: tags: @@ -255,16 +195,29 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /config: + /config/{subject}: get: tags: - Config (v1) - summary: Get global compatibility level - description: Retrieves the global compatibility level. - operationId: getTopLevelConfig + summary: Get subject compatibility level + description: Retrieves compatibility level for a subject. + operationId: getSubjectLevelConfig + parameters: + - name: subject + in: path + description: Name of the subject + required: true + schema: + type: string + - name: defaultToGlobal + in: query + description: Whether to return the global compatibility level if subject + compatibility level not found + schema: + type: boolean responses: "200": - description: The global compatibility level. + description: The subject compatibility level. content: application/vnd.schemaregistry.v1+json: schema: @@ -275,6 +228,18 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/Config' + "404": + description: Not Found. Error code 40401 indicates subject not found. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' "500": description: Internal Server Error. Error code 50001 indicates a failure in the backend data store. @@ -291,10 +256,17 @@ paths: put: tags: - Config (v1) - summary: Update global compatibility level - description: "Updates the global compatibility level. On success, echoes the\ - \ original request back to the client." - operationId: updateTopLevelConfig + summary: Update subject compatibility level + description: "Update compatibility level for the specified subject. On success,\ + \ echoes the original request back to the client." + operationId: updateSubjectLevelConfig + parameters: + - name: subject + in: path + description: Name of the subject + required: true + schema: + type: string requestBody: description: Config Update Request content: @@ -324,6 +296,18 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ConfigUpdateRequest' + "404": + description: Not Found. Error code 40401 indicates subject not found. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' "422": description: Unprocessable Entity. Error code 42203 indicates invalid compatibility level. @@ -354,13 +338,20 @@ paths: delete: tags: - Config (v1) - summary: Delete global compatibility level - description: Deletes the global compatibility level config and reverts to the - default. - operationId: deleteTopLevelConfig + summary: Delete subject compatibility level + description: Deletes the specified subject-level compatibility level config + and reverts to the global default. + operationId: deleteSubjectConfig + parameters: + - name: subject + in: path + description: Name of the subject + required: true + schema: + type: string responses: "200": - description: Operation succeeded. Returns old global compatibility level. + description: Operation succeeded. Returns old compatibility level. content: application/vnd.schemaregistry.v1+json: schema: @@ -398,6 +389,18 @@ paths: - FULL - FULL_TRANSITIVE example: FULL_TRANSITIVE + "404": + description: Not Found. Error code 40401 indicates subject not found. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' "500": description: Internal Server Error. Error code 50001 indicates a failure in the backend data store. @@ -411,29 +414,16 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /config/{subject}: + /config: get: tags: - Config (v1) - summary: Get subject compatibility level - description: Retrieves compatibility level for a subject. - operationId: getSubjectLevelConfig - parameters: - - name: subject - in: path - description: Name of the subject - required: true - schema: - type: string - - name: defaultToGlobal - in: query - description: Whether to return the global compatibility level if subject - compatibility level not found - schema: - type: boolean + summary: Get global compatibility level + description: Retrieves the global compatibility level. + operationId: getTopLevelConfig responses: "200": - description: The subject compatibility level. + description: The global compatibility level. content: application/vnd.schemaregistry.v1+json: schema: @@ -444,18 +434,6 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/Config' - "404": - description: Not Found. Error code 40401 indicates subject not found. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' "500": description: Internal Server Error. Error code 50001 indicates a failure in the backend data store. @@ -472,17 +450,10 @@ paths: put: tags: - Config (v1) - summary: Update subject compatibility level - description: "Update compatibility level for the specified subject. On success,\ - \ echoes the original request back to the client." - operationId: updateSubjectLevelConfig - parameters: - - name: subject - in: path - description: Name of the subject - required: true - schema: - type: string + summary: Update global compatibility level + description: "Updates the global compatibility level. On success, echoes the\ + \ original request back to the client." + operationId: updateTopLevelConfig requestBody: description: Config Update Request content: @@ -512,18 +483,6 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ConfigUpdateRequest' - "404": - description: Not Found. Error code 40401 indicates subject not found. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' "422": description: Unprocessable Entity. Error code 42203 indicates invalid compatibility level. @@ -554,20 +513,13 @@ paths: delete: tags: - Config (v1) - summary: Delete subject compatibility level - description: Deletes the specified subject-level compatibility level config - and reverts to the global default. - operationId: deleteSubjectConfig - parameters: - - name: subject - in: path - description: Name of the subject - required: true - schema: - type: string + summary: Delete global compatibility level + description: Deletes the global compatibility level config and reverts to the + default. + operationId: deleteTopLevelConfig responses: "200": - description: Operation succeeded. Returns old compatibility level. + description: Operation succeeded. Returns old global compatibility level. content: application/vnd.schemaregistry.v1+json: schema: @@ -605,18 +557,6 @@ paths: - FULL - FULL_TRANSITIVE example: FULL_TRANSITIVE - "404": - description: Not Found. Error code 40401 indicates subject not found. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' "500": description: Internal Server Error. Error code 50001 indicates a failure in the backend data store. @@ -672,99 +612,7 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /mode: - get: - tags: - - Modes (v1) - summary: Get global mode - description: Retrieves global mode. - operationId: getTopLevelMode - responses: - "200": - description: The global mode - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/Mode' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/Mode' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/Mode' - "500": - description: Error code 50001 -- Error in the backend data store - put: - tags: - - Modes (v1) - summary: Update global mode - description: "Update global mode. On success, echoes the original request back\ - \ to the client." - operationId: updateTopLevelMode - parameters: - - name: force - in: query - description: Whether to force update if setting mode to IMPORT and schemas - currently exist - schema: - type: boolean - requestBody: - description: Update Request - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - application/vnd.schemaregistry+json: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - application/json: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - application/octet-stream: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - required: true - responses: - "200": - description: The original request. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ModeUpdateRequest' - "422": - description: Unprocessable Entity. Error code 42204 indicates an invalid - mode. Error code 42205 indicates operation not permitted. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' - "500": - description: Internal Server Error. Error code 50001 indicates a failure - in the backend data store. Error code 50003 indicates a failure forwarding - the request to the primary. Error code 50004 indicates unknown leader. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' - /mode/{subject}: + /mode/{subject}: get: tags: - Modes (v1) @@ -949,69 +797,88 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /schemas: + /mode: get: tags: - - Schemas (v1) - summary: List schemas - description: Get the schemas matching the specified parameters. - operationId: getSchemas + - Modes (v1) + summary: Get global mode + description: Retrieves global mode. + operationId: getTopLevelMode + responses: + "200": + description: The global mode + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/Mode' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/Mode' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/Mode' + "500": + description: Error code 50001 -- Error in the backend data store + put: + tags: + - Modes (v1) + summary: Update global mode + description: "Update global mode. On success, echoes the original request back\ + \ to the client." + operationId: updateTopLevelMode parameters: - - name: subjectPrefix - in: query - description: Filters results by the respective subject prefix - schema: - type: string - default: "" - - name: deleted - in: query - description: Whether to return soft deleted schemas - schema: - type: boolean - default: false - - name: latestOnly + - name: force in: query - description: Whether to return latest schema versions only for each matching - subject + description: Whether to force update if setting mode to IMPORT and schemas + currently exist schema: type: boolean - default: false - - name: offset - in: query - description: Pagination offset for results - schema: - type: integer - format: int32 - default: 0 - - name: limit - in: query - description: Pagination size for results. Ignored if negative - schema: - type: integer - format: int32 - default: -1 + requestBody: + description: Update Request + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ModeUpdateRequest' + application/vnd.schemaregistry+json: + schema: + $ref: '#/components/schemas/ModeUpdateRequest' + application/json: + schema: + $ref: '#/components/schemas/ModeUpdateRequest' + application/octet-stream: + schema: + $ref: '#/components/schemas/ModeUpdateRequest' + required: true responses: "200": - description: List of schemas matching the specified parameters. + description: The original request. content: application/vnd.schemaregistry.v1+json: schema: - type: array - items: - $ref: '#/components/schemas/Schema' + $ref: '#/components/schemas/ModeUpdateRequest' application/vnd.schemaregistry+json; qs=0.9: schema: - type: array - items: - $ref: '#/components/schemas/Schema' + $ref: '#/components/schemas/ModeUpdateRequest' application/json; qs=0.5: schema: - type: array - items: - $ref: '#/components/schemas/Schema' + $ref: '#/components/schemas/ModeUpdateRequest' + "422": + description: Unprocessable Entity. Error code 42204 indicates an invalid + mode. Error code 42205 indicates operation not permitted. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' "500": description: Internal Server Error. Error code 50001 indicates a failure - in the backend data store. + in the backend data store. Error code 50003 indicates a failure forwarding + the request to the primary. Error code 50004 indicates unknown leader. content: application/vnd.schemaregistry.v1+json: schema: @@ -1022,6 +889,66 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' + /: + get: + summary: Schema Registry Root Resource + description: The Root resource is a no-op. + operationId: get + responses: + default: + content: + application/vnd.schemaregistry.v1+json: + schema: + type: string + application/vnd.schemaregistry+json; qs=0.9: + schema: + type: string + application/json; qs=0.5: + schema: + type: string + post: + operationId: post + requestBody: + content: + application/vnd.schemaregistry.v1+json: + schema: + type: object + additionalProperties: + type: string + application/vnd.schemaregistry+json: + schema: + type: object + additionalProperties: + type: string + application/json: + schema: + type: object + additionalProperties: + type: string + application/octet-stream: + schema: + type: object + additionalProperties: + type: string + responses: + default: + description: default response + content: + application/vnd.schemaregistry.v1+json: + schema: + type: object + additionalProperties: + type: string + application/vnd.schemaregistry+json; qs=0.9: + schema: + type: object + additionalProperties: + type: string + application/json; qs=0.5: + schema: + type: object + additionalProperties: + type: string /schemas/ids/{id}: get: tags: @@ -1092,14 +1019,13 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /schemas/ids/{id}/subjects: + /schemas/ids/{id}/schema: get: tags: - Schemas (v1) - summary: List subjects associated to schema ID - description: Retrieves all the subjects associated with a particular schema - ID. - operationId: getSubjects + summary: Get schema by ID + description: Retrieves the schema identified by the input ID. + operationId: getSchemaOnly parameters: - name: id in: path @@ -1110,105 +1036,31 @@ paths: format: int32 - name: subject in: query - description: Filters results by the respective subject + description: Name of the subject schema: type: string - - name: deleted - in: query - description: Whether to include subjects where the schema was deleted - schema: - type: boolean - responses: - "200": - description: List of subjects matching the specified parameters. - content: - application/vnd.schemaregistry.v1+json: - schema: - type: array - items: - type: string - example: User - application/vnd.schemaregistry+json; qs=0.9: - schema: - type: array - items: - type: string - example: User - application/json; qs=0.5: - schema: - type: array - items: - type: string - example: User - "404": - description: Not Found. Error code 40403 indicates schema not found. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' - "500": - description: Internal Server Error. Error code 50001 indicates a failure - in the backend data store. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' - /schemas/ids/{id}/versions: - get: - tags: - - Schemas (v1) - summary: List subject-versions associated to schema ID - description: Get all the subject-version pairs associated with the input ID. - operationId: getVersions - parameters: - - name: id - in: path - description: Globally unique identifier of the schema - required: true - schema: - type: integer - format: int32 - - name: subject + - name: format in: query - description: Filters results by the respective subject + description: "Desired output format, dependent on schema type" schema: type: string - - name: deleted - in: query - description: Whether to include subject versions where the schema was deleted - schema: - type: boolean + default: "" responses: "200": - description: List of subject versions matching the specified parameters. + description: Raw schema string. content: application/vnd.schemaregistry.v1+json: schema: - type: array - items: - $ref: '#/components/schemas/SubjectVersion' + type: string + example: "{\"schema\": \"{\"type\": \"string\"}\"}" application/vnd.schemaregistry+json; qs=0.9: schema: - type: array - items: - $ref: '#/components/schemas/SubjectVersion' + type: string + example: "{\"schema\": \"{\"type\": \"string\"}\"}" application/json; qs=0.5: schema: - type: array - items: - $ref: '#/components/schemas/SubjectVersion' + type: string + example: "{\"schema\": \"{\"type\": \"string\"}\"}" "404": description: Not Found. Error code 40403 indicates schema not found. content: @@ -1276,52 +1128,66 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /subjects: + /schemas: get: tags: - - Subjects (v1) - summary: List subjects - description: Retrieves a list of registered subjects matching specified parameters. - operationId: list + - Schemas (v1) + summary: List schemas + description: Get the schemas matching the specified parameters. + operationId: getSchemas parameters: - name: subjectPrefix in: query - description: Subject name prefix + description: Filters results by the respective subject prefix schema: type: string - default: ':*:' + default: "" - name: deleted in: query - description: Whether to look up deleted subjects + description: Whether to return soft deleted schemas schema: type: boolean - - name: deletedOnly + default: false + - name: latestOnly in: query - description: Whether to return deleted subjects only + description: Whether to return latest schema versions only for each matching + subject schema: type: boolean + default: false + - name: offset + in: query + description: Pagination offset for results + schema: + type: integer + format: int32 + default: 0 + - name: limit + in: query + description: Pagination size for results. Ignored if negative + schema: + type: integer + format: int32 + default: -1 responses: "200": - description: List of subjects matching the specified parameters. + description: List of schemas matching the specified parameters. content: application/vnd.schemaregistry.v1+json: schema: type: array items: - type: string - example: User + $ref: '#/components/schemas/Schema' application/vnd.schemaregistry+json; qs=0.9: schema: type: array items: - type: string - example: User + $ref: '#/components/schemas/Schema' application/json; qs=0.5: schema: type: array items: - type: string - example: User + $ref: '#/components/schemas/Schema' "500": description: Internal Server Error. Error code 50001 indicates a failure in the backend data store. @@ -1335,64 +1201,56 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /subjects/{subject}: - post: + /schemas/ids/{id}/subjects: + get: tags: - - Subjects (v1) - summary: Lookup schema under subject - description: "Check if a schema has already been registered under the specified\ - \ subject. If so, this returns the schema string along with its globally unique\ - \ identifier, its version under this subject and the subject name." - operationId: lookUpSchemaUnderSubject + - Schemas (v1) + summary: List subjects associated to schema ID + description: Retrieves all the subjects associated with a particular schema + ID. + operationId: getSubjects parameters: - - name: subject + - name: id in: path - description: Subject under which the schema will be registered + description: Globally unique identifier of the schema required: true schema: - type: string - - name: normalize + type: integer + format: int32 + - name: subject in: query - description: Whether to normalize the given schema + description: Filters results by the respective subject schema: - type: boolean + type: string - name: deleted in: query - description: Whether to lookup deleted schemas + description: Whether to include subjects where the schema was deleted schema: type: boolean - requestBody: - description: Schema - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - application/vnd.schemaregistry+json: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - application/json: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - application/octet-stream: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - required: true responses: "200": - description: The schema. + description: List of subjects matching the specified parameters. content: application/vnd.schemaregistry.v1+json: schema: - $ref: '#/components/schemas/Schema' + type: array + items: + type: string + example: User application/vnd.schemaregistry+json; qs=0.9: schema: - $ref: '#/components/schemas/Schema' + type: array + items: + type: string + example: User application/json; qs=0.5: schema: - $ref: '#/components/schemas/Schema' + type: array + items: + type: string + example: User "404": - description: Not Found. Error code 40401 indicates subject not found. Error - code 40403 indicates schema not found. + description: Not Found. Error code 40403 indicates schema not found. content: application/vnd.schemaregistry.v1+json: schema: @@ -1404,7 +1262,8 @@ paths: schema: $ref: '#/components/schemas/ErrorMessage' "500": - description: Internal Server Error. + description: Internal Server Error. Error code 50001 indicates a failure + in the backend data store. content: application/vnd.schemaregistry.v1+json: schema: @@ -1415,53 +1274,52 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - delete: + /schemas/ids/{id}/versions: + get: tags: - - Subjects (v1) - summary: Delete subject - description: Deletes the specified subject and its associated compatibility - level if registered. It is recommended to use this API only when a topic needs - to be recycled or in development environment. - operationId: deleteSubject + - Schemas (v1) + summary: List subject-versions associated to schema ID + description: Get all the subject-version pairs associated with the input ID. + operationId: getVersions parameters: - - name: subject + - name: id in: path - description: Name of the subject + description: Globally unique identifier of the schema required: true + schema: + type: integer + format: int32 + - name: subject + in: query + description: Filters results by the respective subject schema: type: string - - name: permanent + - name: deleted in: query - description: Whether to perform a permanent delete + description: Whether to include subject versions where the schema was deleted schema: type: boolean responses: "200": - description: Operation succeeded. Returns list of schema versions deleted + description: List of subject versions matching the specified parameters. content: application/vnd.schemaregistry.v1+json: schema: type: array items: - type: integer - format: int32 - example: 1 + $ref: '#/components/schemas/SubjectVersion' application/vnd.schemaregistry+json; qs=0.9: schema: type: array items: - type: integer - format: int32 - example: 1 + $ref: '#/components/schemas/SubjectVersion' application/json; qs=0.5: schema: type: array items: - type: integer - format: int32 - example: 1 + $ref: '#/components/schemas/SubjectVersion' "404": - description: Not Found. Error code 40401 indicates subject not found. + description: Not Found. Error code 40403 indicates schema not found. content: application/vnd.schemaregistry.v1+json: schema: @@ -1485,169 +1343,26 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /subjects/{subject}/versions: + /v1/metadata/id: get: tags: - - Subjects (v1) - summary: List versions under subject - description: Retrieves a list of versions registered under the specified subject. - operationId: listVersions - parameters: - - name: subject - in: path - description: Name of the subject - required: true - schema: - type: string - - name: deleted - in: query - description: Whether to include deleted schemas - schema: - type: boolean - - name: deletedOnly - in: query - description: Whether to return deleted schemas only - schema: - type: boolean + - Server Metadata (v1) + summary: Get the server metadata + operationId: getClusterId responses: - "200": - description: List of version numbers matching the specified parameters. - content: - application/vnd.schemaregistry.v1+json: - schema: - type: array - items: - type: integer - format: int32 - example: 1 - application/vnd.schemaregistry+json; qs=0.9: - schema: - type: array - items: - type: integer - format: int32 - example: 1 - application/json; qs=0.5: - schema: - type: array - items: - type: integer - format: int32 - example: 1 - "404": - description: 'Not Found. Error code 40401 indicates subject not found. ' - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' "500": - description: Internal Server Error. Error code 50001 indicates a failure - in the backend data store. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' - post: + description: | + Error code 50001 -- Error in the backend data store + /v1/metadata/version: + get: tags: - - Subjects (v1) - summary: Register schema under a subject - description: |- - Register a new schema under the specified subject. If successfully registered, this returns the unique identifier of this schema in the registry. The returned identifier should be used to retrieve this schema from the schemas resource and is different from the schema's version which is associated with the subject. If the same schema is registered under a different subject, the same identifier will be returned. However, the version of the schema may be different under different subjects. - A schema should be compatible with the previously registered schema or schemas (if there are any) as per the configured compatibility level. The configured compatibility level can be obtained by issuing a GET http:get:: /config/(string: subject). If that returns null, then GET http:get:: /config - When there are multiple instances of Schema Registry running in the same cluster, the schema registration request will be forwarded to one of the instances designated as the primary. If the primary is not available, the client will get an error code indicating that the forwarding has failed. - operationId: register - parameters: - - name: subject - in: path - description: Name of the subject - required: true - schema: - type: string - - name: normalize - in: query - description: Whether to normalize the given schema - schema: - type: boolean - requestBody: - description: Schema - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - application/vnd.schemaregistry+json: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - application/json: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - application/octet-stream: - schema: - $ref: '#/components/schemas/RegisterSchemaRequest' - required: true + - Server Metadata (v1) + summary: Get Schema Registry server version + operationId: getSchemaRegistryVersion responses: - "200": - description: Schema successfully registered. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/RegisterSchemaResponse' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/RegisterSchemaResponse' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/RegisterSchemaResponse' - "409": - description: Conflict. Incompatible schema. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' - "422": - description: 'Unprocessable entity. Error code 42201 indicates an invalid - schema or schema type. ' - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' "500": - description: Internal Server Error. Error code 50001 indicates a failure - in the backend data store.Error code 50002 indicates operation timed out. - Error code 50003 indicates a failure forwarding the request to the primary. - content: - application/vnd.schemaregistry.v1+json: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/vnd.schemaregistry+json; qs=0.9: - schema: - $ref: '#/components/schemas/ErrorMessage' - application/json; qs=0.5: - schema: - $ref: '#/components/schemas/ErrorMessage' + description: | + Error code 50001 -- Error in the backend data store /subjects/{subject}/versions/{version}: get: tags: @@ -1916,7 +1631,7 @@ paths: summary: Get schema string by version description: Retrieves the schema for the specified version of this subject. Only the unescaped schema string is returned. - operationId: getSchemaOnly_2 + operationId: getSchemaOnly_1 parameters: - name: subject in: path @@ -1994,60 +1709,307 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /v1/metadata/id: + /subjects/{subject}/versions: get: tags: - - Server Metadata (v1) - summary: Get the server metadata - operationId: getClusterId + - Subjects (v1) + summary: List versions under subject + description: Retrieves a list of versions registered under the specified subject. + operationId: listVersions + parameters: + - name: subject + in: path + description: Name of the subject + required: true + schema: + type: string + - name: deleted + in: query + description: Whether to include deleted schemas + schema: + type: boolean + - name: deletedOnly + in: query + description: Whether to return deleted schemas only + schema: + type: boolean responses: + "200": + description: List of version numbers matching the specified parameters. + content: + application/vnd.schemaregistry.v1+json: + schema: + type: array + items: + type: integer + format: int32 + example: 1 + application/vnd.schemaregistry+json; qs=0.9: + schema: + type: array + items: + type: integer + format: int32 + example: 1 + application/json; qs=0.5: + schema: + type: array + items: + type: integer + format: int32 + example: 1 + "404": + description: 'Not Found. Error code 40401 indicates subject not found. ' + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' "500": - description: | - Error code 50001 -- Error in the backend data store - /schemas/ids/{id}/schema: - get: + description: Internal Server Error. Error code 50001 indicates a failure + in the backend data store. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' + post: tags: - - Schemas (v1) - summary: Get schema by ID - description: Retrieves the schema identified by the input ID. - operationId: getSchemaOnly + - Subjects (v1) + summary: Register schema under a subject + description: "Register a new schema under the specified subject. If successfully\ + \ registered, this returns the unique identifier of this schema in the registry.\ + \ The returned identifier should be used to retrieve this schema from the\ + \ schemas resource and is different from the schema's version which is associated\ + \ with the subject. If the same schema is registered under a different subject,\ + \ the same identifier will be returned. However, the version of the schema\ + \ may be different under different subjects.\nA schema should be compatible\ + \ with the previously registered schema or schemas (if there are any) as per\ + \ the configured compatibility level. The configured compatibility level can\ + \ be obtained by issuing a GET http:get:: /config/(string: subject). If that\ + \ returns null, then GET http:get:: /config\nWhen there are multiple instances\ + \ of Schema Registry running in the same cluster, the schema registration\ + \ request will be forwarded to one of the instances designated as the primary.\ + \ If the primary is not available, the client will get an error code indicating\ + \ that the forwarding has failed." + operationId: register parameters: - - name: id + - name: subject in: path - description: Globally unique identifier of the schema + description: Name of the subject required: true schema: - type: integer - format: int32 + type: string + - name: normalize + in: query + description: Whether to normalize the given schema + schema: + type: boolean + requestBody: + description: Schema + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + application/vnd.schemaregistry+json: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + application/json: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + application/octet-stream: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + required: true + responses: + "200": + description: Schema successfully registered. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/RegisterSchemaResponse' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/RegisterSchemaResponse' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/RegisterSchemaResponse' + "409": + description: Conflict. Incompatible schema. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' + "422": + description: 'Unprocessable entity. Error code 42201 indicates an invalid + schema or schema type. ' + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' + "500": + description: Internal Server Error. Error code 50001 indicates a failure + in the backend data store.Error code 50002 indicates operation timed out. + Error code 50003 indicates a failure forwarding the request to the primary. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' + /subjects/{subject}: + post: + tags: + - Subjects (v1) + summary: Lookup schema under subject + description: "Check if a schema has already been registered under the specified\ + \ subject. If so, this returns the schema string along with its globally unique\ + \ identifier, its version under this subject and the subject name." + operationId: lookUpSchemaUnderSubject + parameters: - name: subject + in: path + description: Subject under which the schema will be registered + required: true + schema: + type: string + - name: normalize + in: query + description: Whether to normalize the given schema + schema: + type: boolean + - name: deleted in: query + description: Whether to lookup deleted schemas + schema: + type: boolean + requestBody: + description: Schema + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + application/vnd.schemaregistry+json: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + application/json: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + application/octet-stream: + schema: + $ref: '#/components/schemas/RegisterSchemaRequest' + required: true + responses: + "200": + description: The schema. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/Schema' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/Schema' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/Schema' + "404": + description: Not Found. Error code 40401 indicates subject not found. Error + code 40403 indicates schema not found. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' + "500": + description: Internal Server Error. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' + delete: + tags: + - Subjects (v1) + summary: Delete subject + description: Deletes the specified subject and its associated compatibility + level if registered. It is recommended to use this API only when a topic needs + to be recycled or in development environment. + operationId: deleteSubject + parameters: + - name: subject + in: path description: Name of the subject + required: true schema: type: string - - name: format + - name: permanent in: query - description: "Desired output format, dependent on schema type" + description: Whether to perform a permanent delete schema: - type: string - default: "" + type: boolean responses: "200": - description: Raw schema string. + description: Operation succeeded. Returns list of schema versions deleted content: application/vnd.schemaregistry.v1+json: schema: - type: string - example: "{\"schema\": \"{\"type\": \"string\"}\"}" + type: array + items: + type: integer + format: int32 + example: 1 application/vnd.schemaregistry+json; qs=0.9: schema: - type: string - example: "{\"schema\": \"{\"type\": \"string\"}\"}" + type: array + items: + type: integer + format: int32 + example: 1 application/json; qs=0.5: schema: - type: string - example: "{\"schema\": \"{\"type\": \"string\"}\"}" + type: array + items: + type: integer + format: int32 + example: 1 "404": - description: Not Found. Error code 40403 indicates schema not found. + description: Not Found. Error code 40401 indicates subject not found. content: application/vnd.schemaregistry.v1+json: schema: @@ -2071,16 +2033,6 @@ paths: application/json; qs=0.5: schema: $ref: '#/components/schemas/ErrorMessage' - /v1/metadata/version: - get: - tags: - - Server Metadata (v1) - summary: Get Schema Registry server version - operationId: getSchemaRegistryVersion - responses: - "500": - description: | - Error code 50001 -- Error in the backend data store /subjects/{subject}/metadata: get: summary: Retrieve the latest version with the given metadata. @@ -2102,35 +2054,94 @@ paths: type: string - name: value in: query - description: The metadata value + description: The metadata value + schema: + type: array + items: + type: string + - name: deleted + in: query + description: Whether to lookup deleted schemas + schema: + type: boolean + responses: + "200": + description: The schema + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/Schema' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/Schema' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/Schema' + "404": + description: |- + Error code 40401 -- Subject not found + Error code 40403 -- Schema not found + "500": + description: Internal server error + /subjects: + get: + tags: + - Subjects (v1) + summary: List subjects + description: Retrieves a list of registered subjects matching specified parameters. + operationId: list + parameters: + - name: subjectPrefix + in: query + description: Subject name prefix schema: - type: array - items: - type: string + type: string + default: ':*:' - name: deleted in: query - description: Whether to lookup deleted schemas + description: Whether to look up deleted subjects + schema: + type: boolean + - name: deletedOnly + in: query + description: Whether to return deleted subjects only schema: type: boolean responses: "200": - description: The schema + description: List of subjects matching the specified parameters. content: application/vnd.schemaregistry.v1+json: schema: - $ref: '#/components/schemas/Schema' + type: array + items: + type: string + example: User application/vnd.schemaregistry+json; qs=0.9: schema: - $ref: '#/components/schemas/Schema' + type: array + items: + type: string + example: User application/json; qs=0.5: schema: - $ref: '#/components/schemas/Schema' - "404": - description: |- - Error code 40401 -- Subject not found - Error code 40403 -- Schema not found + type: array + items: + type: string + example: User "500": - description: Internal server error + description: Internal Server Error. Error code 50001 indicates a failure + in the backend data store. + content: + application/vnd.schemaregistry.v1+json: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/vnd.schemaregistry+json; qs=0.9: + schema: + $ref: '#/components/schemas/ErrorMessage' + application/json; qs=0.5: + schema: + $ref: '#/components/schemas/ErrorMessage' components: schemas: CompatibilityCheckResponse: @@ -2148,6 +2159,37 @@ components: description: Error messages example: "[]" description: Compatibility check response + ErrorMessage: + type: object + properties: + error_code: + type: integer + description: Error code + format: int32 + message: + type: string + description: Detailed error message + description: Error message + Metadata: + type: object + properties: + tags: + type: object + additionalProperties: + uniqueItems: true + type: array + items: + type: string + properties: + type: object + additionalProperties: + type: string + sensitive: + uniqueItems: true + type: array + items: + type: string + description: User-defined metadata RegisterSchemaRequest: type: object properties: @@ -2175,6 +2217,72 @@ components: type: string description: Schema definition string description: Schema register request + Rule: + type: object + properties: + name: + type: string + description: Rule name + doc: + type: string + description: Rule doc + kind: + type: string + description: Rule kind + enum: + - TRANSFORM + - CONDITION + mode: + type: string + description: Rule mode + enum: + - UPGRADE + - DOWNGRADE + - UPDOWN + - WRITE + - READ + - WRITEREAD + type: + type: string + description: Rule type + tags: + uniqueItems: true + type: array + description: The tags to which this rule applies + items: + type: string + description: The tags to which this rule applies + params: + type: object + additionalProperties: + type: string + description: Optional params for the rule + description: Optional params for the rule + expr: + type: string + description: Rule expression + onSuccess: + type: string + description: Rule action on success + onFailure: + type: string + description: Rule action on failure + disabled: + type: boolean + description: Whether the rule is disabled + description: Rule + RuleSet: + type: object + properties: + migrationRules: + type: array + items: + $ref: '#/components/schemas/Rule' + domainRules: + type: array + items: + $ref: '#/components/schemas/Rule' + description: Schema rule set SchemaReference: type: object properties: @@ -2355,26 +2463,6 @@ components: type: object id: type: string - RegisterSchemaResponse: - type: object - properties: - id: - type: integer - description: Globally unique identifier of the schema - format: int32 - example: 100001 - description: Schema register response - ErrorMessage: - type: object - properties: - error_code: - type: integer - description: Error code - format: int32 - message: - type: string - description: Detailed error message - description: Error message SchemaRegistryServerVersion: type: object properties: @@ -2382,89 +2470,12 @@ components: type: string commitId: type: string - Metadata: - type: object - properties: - tags: - type: object - additionalProperties: - uniqueItems: true - type: array - items: - type: string - properties: - type: object - additionalProperties: - type: string - sensitive: - uniqueItems: true - type: array - items: - type: string - description: User-defined metadata - Rule: - type: object - properties: - name: - type: string - description: Rule name - doc: - type: string - description: Rule doc - kind: - type: string - description: Rule kind - enum: - - TRANSFORM - - CONDITION - mode: - type: string - description: Rule mode - enum: - - UPGRADE - - DOWNGRADE - - UPDOWN - - WRITE - - READ - - WRITEREAD - type: - type: string - description: Rule type - tags: - uniqueItems: true - type: array - description: The tags to which this rule applies - items: - type: string - description: The tags to which this rule applies - params: - type: object - additionalProperties: - type: string - description: Optional params for the rule - description: Optional params for the rule - expr: - type: string - description: Rule expression - onSuccess: - type: string - description: Rule action on success - onFailure: - type: string - description: Rule action on failure - disabled: - type: boolean - description: Whether the rule is disabled - description: Rule - RuleSet: + RegisterSchemaResponse: type: object properties: - migrationRules: - type: array - items: - $ref: '#/components/schemas/Rule' - domainRules: - type: array - items: - $ref: '#/components/schemas/Rule' - description: Schema rule set + id: + type: integer + description: Globally unique identifier of the schema + format: int32 + example: 100001 + description: Schema register response diff --git a/core/pom.xml b/core/pom.xml index 4b6e62adf8a..790765b4100 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -311,7 +311,7 @@ ${project.basedir}/src/test/avro - ${project.basedir}/src/test/avro/subrecord.avsc + ${project.basedir}/src/test/avro/asubrecord.avsc diff --git a/core/src/main/resources/openapi.yaml b/core/src/main/resources/openapi.yaml new file mode 100644 index 00000000000..ec5cb53cf0a --- /dev/null +++ b/core/src/main/resources/openapi.yaml @@ -0,0 +1,8 @@ +resourcePackages: + - io.confluent.kafka.schemaregistry.rest.resources +prettyPrint: true +sortOutput: false +openAPI: + info: + title: Confluent Schema Registry + version: v1 diff --git a/core/src/main/resources/swagger-core-bazel.properties b/core/src/main/resources/swagger-core-bazel.properties new file mode 100644 index 00000000000..94fcddb12f6 --- /dev/null +++ b/core/src/main/resources/swagger-core-bazel.properties @@ -0,0 +1 @@ +configurationFilePath=openapi.yaml \ No newline at end of file diff --git a/core/src/test/avro/subrecord.avsc b/core/src/test/avro/asubrecord.avsc similarity index 100% rename from core/src/test/avro/subrecord.avsc rename to core/src/test/avro/asubrecord.avsc diff --git a/core/src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiTest.java b/core/src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiTest.java index 95cded772e2..5498c439bdb 100644 --- a/core/src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiTest.java +++ b/core/src/test/java/io/confluent/kafka/schemaregistry/rest/RestApiTest.java @@ -1786,7 +1786,7 @@ public void testDeleteSubjectPermanent() throws Exception { true)); for (Integer i : expectedResponse) { try { - restApp.restClient.lookUpSubjectVersion(schemas.get(i-i), subject, false); + restApp.restClient.lookUpSubjectVersion(schemas.get(0), subject, false); fail(String.format("Subject %s should not be found", subject)); } catch (RestClientException rce) { assertEquals("Subject Not Found", Errors.SUBJECT_NOT_FOUND_ERROR_CODE, rce.getErrorCode()); diff --git a/core/src/test/proto/BUILD.bazel b/core/src/test/proto/BUILD.bazel new file mode 100644 index 00000000000..f1572dfc3b6 --- /dev/null +++ b/core/src/test/proto/BUILD.bazel @@ -0,0 +1,26 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "io_confluent_kafka_serializers_protobuf_test_proto", + srcs = [ + "ref.proto", + "root.proto", + ], + strip_import_prefix = "/core/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "//protobuf-types/src/main/proto:confluent_proto", + ], +) + +java_proto_library( + name = "io_confluent_kafka_serializers_protobuf_test_java_proto", + deps = [":io_confluent_kafka_serializers_protobuf_test_proto"], +) + +java_library( + name = "io_confluent_kafka_serializers_protobuf_test_java_library", + visibility = ["//:__subpackages__"], + exports = [":io_confluent_kafka_serializers_protobuf_test_java_proto"], +) diff --git a/core/src/test/proto/ref.proto b/core/src/test/proto/ref.proto index b59eadc0cc3..f26e79c2c1e 100644 --- a/core/src/test/proto/ref.proto +++ b/core/src/test/proto/ref.proto @@ -5,4 +5,3 @@ message ReferencedMessage { string ref_id = 1; bool is_active = 2; } - diff --git a/findbugs/BUILD.bazel b/findbugs/BUILD.bazel new file mode 100644 index 00000000000..6f9d3148029 --- /dev/null +++ b/findbugs/BUILD.bazel @@ -0,0 +1,16 @@ +load("@contrib_rules_jvm//java:defs.bzl", "spotbugs_binary", "spotbugs_config") + +spotbugs_binary( + name = "spotbugs_cli", + runtime_deps = [ + "@maven//:com_github_spotbugs_spotbugs", + "@maven//:org_slf4j_slf4j_reload4j", + ], +) + +spotbugs_config( + name = "spotbugs_config", + exclude_filter = "findbugs-exclude.xml", + spotbugs_binary = ":spotbugs_cli", + visibility = ["//visibility:public"], +) diff --git a/json-schema-converter/BUILD.bazel b/json-schema-converter/BUILD.bazel new file mode 100644 index 00000000000..c871df62060 --- /dev/null +++ b/json-schema-converter/BUILD.bazel @@ -0,0 +1,67 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "json-schema-converter", + srcs = [ + "src/main/java/io/confluent/connect/json/JsonSchemaConverter.java", + "src/main/java/io/confluent/connect/json/JsonSchemaConverterConfig.java", + "src/main/java/io/confluent/connect/json/JsonSchemaData.java", + "src/main/java/io/confluent/connect/json/JsonSchemaDataConfig.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "//json-schema-provider", + "//json-schema-serializer", + "//schema-converter", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_connect_json", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "//client", + "//json-schema-provider", + "//json-schema-serializer", + "//schema-converter", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_github_erosb_everit_json_schema", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_connect_json", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_json_json", + ], +) + +java_test_suite( + name = "json-schema-converter-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/connect/json/AdditionalJsonSchemaDataTest.java", +# "src/test/java/io/confluent/connect/json/JsonSchemaConverterTest.java", +# "src/test/java/io/confluent/connect/json/JsonSchemaDataTest.java", +# "src/test/java/io/confluent/connect/json/ResourceLoader.java", +# ], + resources = glob(["src/test/resources/**/*"]), + tags = ["no-java-spotbugs"], + deps = [ + ":json-schema-converter", + "//avro-serializer", + "//client", + "//core", + "//json-schema-provider", + "//json-schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_github_erosb_everit_json_schema", + "@maven//:com_google_guava_guava", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_connect_json", + "@maven//:org_json_json", + ], +) diff --git a/json-schema-converter/src/test/java/io/confluent/connect/json/JsonSchemaConverterTest.java b/json-schema-converter/src/test/java/io/confluent/connect/json/JsonSchemaConverterTest.java index 3bdfe451090..0acd46d8a32 100644 --- a/json-schema-converter/src/test/java/io/confluent/connect/json/JsonSchemaConverterTest.java +++ b/json-schema-converter/src/test/java/io/confluent/connect/json/JsonSchemaConverterTest.java @@ -134,7 +134,7 @@ public void testComplex() { public void testComplexWithDefaults() { int dateDefVal = 100; int timeDefVal = 1000 * 60 * 60 * 2; - long tsDefVal = 1000 * 60 * 60 * 24 * 365 + 100; + long tsDefVal = 1000L * 60 * 60 * 24 * 365 + 100; java.util.Date dateDef = Date.toLogical(Date.SCHEMA, dateDefVal); java.util.Date timeDef = Time.toLogical(Time.SCHEMA, timeDefVal); java.util.Date tsDef = Timestamp.toLogical(Timestamp.SCHEMA, tsDefVal); diff --git a/json-schema-provider/BUILD.bazel b/json-schema-provider/BUILD.bazel new file mode 100644 index 00000000000..9657fd8cac6 --- /dev/null +++ b/json-schema-provider/BUILD.bazel @@ -0,0 +1,85 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +load("@rules_jvm_external//:defs.bzl", "java_export") +load("//:variables.bzl", "SCHEMA_REGISTRY_VERSION") +# gazelle:java_module_granularity module + +java_export( + name = "json-schema-provider", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/json/JsonNodeComparator.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/JsonSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/JsonSchemaComparator.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/JsonSchemaProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/JsonSchemaUtils.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/SpecificationVersion.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/ArraySchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/CombinedSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/Context.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/Difference.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/EnumSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/NotSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/NumberSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/ObjectSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/SchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/diff/StringSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/JSONArrayDeserializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/JSONArraySerializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/JSONBaseSerializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/JSONObjectDeserializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/JSONObjectSerializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/Jackson.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/jackson/JsonOrgModule.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/utils/Edge.java", + "src/main/java/io/confluent/kafka/schemaregistry/json/utils/MaximumCardinalityMatch.java", + ], + maven_coordinates = "io.confluent:kafka-json-schema-provider:" + SCHEMA_REGISTRY_VERSION, + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_github_erosb_everit_json_schema", + "@maven//:org_json_json", + ], + deps = [ + "//client", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_datatype_jackson_datatype_guava", + "@maven//:com_fasterxml_jackson_datatype_jackson_datatype_jdk8", + "@maven//:com_fasterxml_jackson_datatype_jackson_datatype_joda", + "@maven//:com_fasterxml_jackson_datatype_jackson_datatype_jsr310", + "@maven//:com_fasterxml_jackson_module_jackson_module_parameter_names", + "@maven//:com_github_erosb_everit_json_schema", + "@maven//:com_kjetland_mbknor_jackson_jsonschema_2_13", + "@maven//:org_apache_commons_commons_compress", + "@maven//:org_json_json", + "@maven//:org_slf4j_slf4j_api", + ], +) + +java_test_suite( + name = "json-schema-provider-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/json/JsonSchemaTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/json/TestSchemaValidation.java", +# "src/test/java/io/confluent/kafka/schemaregistry/json/TestSchemas.java", +# "src/test/java/io/confluent/kafka/schemaregistry/json/diff/SchemaDiffTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/json/utils/MaximumCardinalityMatchTest.java", +# ], + resources = glob(["src/test/resources/**/*"]), + tags = ["no-java-spotbugs"], + deps = [ + ":json-schema-provider", + "//client", + "//core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_github_erosb_everit_json_schema", + "@maven//:com_google_guava_guava", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:junit_junit", + "@maven//:org_hamcrest_hamcrest_core", + "@maven//:org_json_json", + ], +) diff --git a/json-schema-serde/BUILD.bazel b/json-schema-serde/BUILD.bazel new file mode 100644 index 00000000000..10fd76ae1ac --- /dev/null +++ b/json-schema-serde/BUILD.bazel @@ -0,0 +1,31 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "json-schema-serde", + srcs = ["src/main/java/io/confluent/kafka/streams/serdes/json/KafkaJsonSchemaSerde.java"], + visibility = ["//:__subpackages__"], + deps = [ + "//client", + "//json-schema-serializer", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "json-schema-serde-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = ["src/test/java/io/confluent/kafka/streams/serdes/json/KafkaJsonSchemaSerdeTest.java"], + deps = [ + ":json-schema-serde", + "//avro-serializer", + "//core", + "//json-schema-provider", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:junit_junit", + "@maven//:org_hamcrest_hamcrest_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/json-schema-serde/src/test/java/io/confluent/kafka/streams/serdes/json/KafkaJsonSchemaSerdeTest.java b/json-schema-serde/src/test/java/io/confluent/kafka/streams/serdes/json/KafkaJsonSchemaSerdeTest.java index a7a5de167c3..cc82f8634a2 100644 --- a/json-schema-serde/src/test/java/io/confluent/kafka/streams/serdes/json/KafkaJsonSchemaSerdeTest.java +++ b/json-schema-serde/src/test/java/io/confluent/kafka/streams/serdes/json/KafkaJsonSchemaSerdeTest.java @@ -70,6 +70,11 @@ public boolean equals(Object o) { return Objects.equals(string, that.string) && Objects.equals(number, that.number); } + + @Override + public int hashCode() { + return Objects.hash(this.string.hashCode(), this.number.hashCode()); + } } private Object createJsonRecord() throws IOException { diff --git a/json-schema-serializer/BUILD.bazel b/json-schema-serializer/BUILD.bazel new file mode 100644 index 00000000000..a1444c472c5 --- /dev/null +++ b/json-schema-serializer/BUILD.bazel @@ -0,0 +1,58 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "json-schema-serializer", + srcs = [ + "src/main/java/io/confluent/kafka/formatter/json/JsonSchemaMessageFormatter.java", + "src/main/java/io/confluent/kafka/formatter/json/JsonSchemaMessageReader.java", + "src/main/java/io/confluent/kafka/serializers/json/AbstractKafkaJsonSchemaDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/json/AbstractKafkaJsonSchemaSerializer.java", + "src/main/java/io/confluent/kafka/serializers/json/JsonSchemaAndValue.java", + "src/main/java/io/confluent/kafka/serializers/json/KafkaJsonSchemaDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/json/KafkaJsonSchemaDeserializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/json/KafkaJsonSchemaSerializer.java", + "src/main/java/io/confluent/kafka/serializers/json/KafkaJsonSchemaSerializerConfig.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "//json-schema-provider", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "//client", + "//json-schema-provider", + "//json-serializer", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_github_erosb_everit_json_schema", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "json-schema-serializer-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/formatter/json/KafkaJsonSchemaFormatterTest.java", +# "src/test/java/io/confluent/kafka/serializers/json/KafkaJsonSchemaSerializerTest.java", +# ], + deps = [ + ":json-schema-serializer", + "//client", + "//core", + "//json-schema-provider", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:com_kjetland_mbknor_jackson_jsonschema_2_13", + "@maven//:javax_validation_validation_api", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_kafka_clients", + ], + tags = ["no-java-spotbugs"], +) diff --git a/json-serializer/BUILD.bazel b/json-serializer/BUILD.bazel new file mode 100644 index 00000000000..3d24fe4957c --- /dev/null +++ b/json-serializer/BUILD.bazel @@ -0,0 +1,49 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "json-serializer", + srcs = [ + "src/main/java/io/confluent/kafka/serializers/KafkaJsonDecoder.java", + "src/main/java/io/confluent/kafka/serializers/KafkaJsonDecoderConfig.java", + "src/main/java/io/confluent/kafka/serializers/KafkaJsonDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/KafkaJsonDeserializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/KafkaJsonSerializer.java", + "src/main/java/io/confluent/kafka/serializers/KafkaJsonSerializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/jackson/Jackson.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_datatype_jackson_datatype_jdk8", + "@maven//:com_fasterxml_jackson_datatype_jackson_datatype_jsr310", + "@maven//:com_fasterxml_jackson_module_jackson_module_parameter_names", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "json-serializer-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/serializers/KafkaJsonDecoderTest.java", +# "src/test/java/io/confluent/kafka/serializers/KafkaJsonDeserializerTest.java", +# "src/test/java/io/confluent/kafka/serializers/KafkaJsonSerializerTest.java", +# ], + deps = [ + ":json-serializer", + "//avro-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + ], + tags = ["no-java-spotbugs"], +) diff --git a/maven-plugin/BUILD.bazel b/maven-plugin/BUILD.bazel new file mode 100644 index 00000000000..0a720f9ff44 --- /dev/null +++ b/maven-plugin/BUILD.bazel @@ -0,0 +1,109 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "maven-plugin", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/maven/CustomBasicComponentConfigurator.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/DeriveSchemaMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/DownloadSchemaRegistryMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/FixedMapConverter.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/Metadata.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/MojoUtils.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/Reference.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/RegisterSchemaRegistryMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/Rule.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/RuleSet.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/SchemaRegistryMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/SetCompatibilityMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/TestCompatibilitySchemaRegistryMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/TestLocalCompatibilityMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/UploadSchemaRegistryMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/ValidateSchemaRegistryMojo.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveAvroSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveJsonSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveProtobufSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveSchemaUtils.java", + ], + resources = glob(["src/main/resources/**/*"]), + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + ], + deps = [ + "//client", + "//json-schema-provider", + "//protobuf-provider", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_apache_maven_maven_plugin_api", + "@maven//:org_apache_maven_plugin_tools_maven_plugin_annotations", + "@maven//:org_codehaus_plexus_plexus_classworlds", + "@maven//:org_eclipse_sisu_org_eclipse_sisu_inject", + "@maven//:org_eclipse_sisu_org_eclipse_sisu_plexus", + ], +) + +java_library( + name = "test-utils", +# srcs = glob(["src/test/**/*.java"]), + srcs = [ + "src/test/java/io/confluent/kafka/schemaregistry/maven/SchemaRegistryTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveJsonSchemaTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveSchemaTest.java", + ], + deps = [ + ":maven-plugin", + "//json-schema-provider", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:junit_junit", + ], + tags = ["no-java-spotbugs"], +) + +java_test_suite( + name = "maven-plugin-tests", + srcs = glob(["src/test/**/*.java"], + exclude = [ + "src/test/java/io/confluent/kafka/schemaregistry/maven/SchemaRegistryTest.java", + "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveSchemaTest.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/maven/DeriveSchemaMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/DownloadSchemaRegistryMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/RegisterSchemaRegistryMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/SchemasWithDependenciesTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/SetCompatibilityMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/TestCompatibilitySchemaRegistryMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/TestLocalCompatibilityMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/ValidateSchemaRegistryMojoTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveAvroSchemaTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveJsonSchemaTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveProtoBufSchemaTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/maven/derive/schema/DeriveSchemaUtilsTest.java", +# ], + deps = [ + ":maven-plugin", + ":test-utils", + "//avro-serializer", + "//client", + "//core", + "//json-schema-provider", + "//protobuf-provider", + "//protobuf-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_maven_maven_plugin_api", + "@maven//:org_hamcrest_hamcrest_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 41aea95df89..eb1b6de7e88 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -4,12 +4,18 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + + io.confluent - kafka-schema-registry-parent - 7.5.0-0 + rest-utils-parent + [7.5.0-0, 7.5.1-0) + + + 7.5.0-0 + Apache License 2.0 @@ -18,6 +24,13 @@ + + + 7.5.999-0 + 3.6.0 + ../checkstyle/suppressions.xml + + kafka-schema-registry-maven-plugin maven-plugin maven-plugin @@ -31,7 +44,7 @@ org.apache.maven.plugin-tools maven-plugin-annotations - 3.6.0 + ${maven.plugin-tools.version} io.confluent @@ -48,11 +61,7 @@ kafka-protobuf-provider ${io.confluent.schema-registry.version} - - junit - junit - test - + io.confluent kafka-protobuf-serializer @@ -65,13 +74,18 @@ ${io.confluent.schema-registry.version} test + + junit + junit + test + maven-plugin-plugin - 3.6.0 + ${maven.plugin-tools.version} schema-registry diff --git a/maven_install.json b/maven_install.json new file mode 100644 index 00000000000..3b258b38b3f --- /dev/null +++ b/maven_install.json @@ -0,0 +1,16025 @@ +{ + "dependency_tree": { + "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", + "__INPUT_ARTIFACTS_HASH": -429289957, + "__RESOLVED_ARTIFACTS_HASH": 1216065132, + "conflict_resolution": { + "com.azure:azure-core:1.33.0": "com.azure:azure-core:1.35.0", + "com.fasterxml.jackson.core:jackson-databind:2.13.4.2": "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.google.api-client:google-api-client:1.35.2": "com.google.api-client:google-api-client:2.2.0", + "com.google.guava:guava:30.1.1-jre": "com.google.guava:guava:31.1-jre", + "com.google.protobuf:protobuf-java:3.19.6": "com.google.protobuf:protobuf-java:3.21.9", + "io.confluent:common-utils:7.5.0-355": "io.confluent:common-utils:7.5.0-620", + "io.swagger.core.v3:swagger-annotations:2.1.10": "io.swagger.core.v3:swagger-annotations:2.2.8", + "org.apache.zookeeper:zookeeper:3.6.3": "org.apache.zookeeper:zookeeper:3.6.4", + "org.hibernate.validator:hibernate-validator:6.1.7.Final": "org.hibernate.validator:hibernate-validator:6.2.0.Final", + "org.jetbrains.kotlin:kotlin-stdlib:1.6.0": "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.yaml:snakeyaml:1.32": "org.yaml:snakeyaml:1.33" + }, + "dependencies": [ + { + "coord": "androidx.annotation:annotation:1.3.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/maven.google.com/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "mirror_urls": [ + "https://maven.google.com/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://packages.confluent.io/maven/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://jitpack.io/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://repo1.maven.org/maven2/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar", + "https://repository.apache.org/snapshots/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar" + ], + "packages": [ + "androidx.annotation" + ], + "sha256": "97dc45afefe3a1e421da42b8b6e9f90491477c45fc6178203e3a5e8a05ee8553", + "url": "https://maven.google.com/androidx/annotation/annotation/1.3.0/annotation-1.3.0.jar" + }, + { + "coord": "ch.qos.reload4j:reload4j:1.2.22", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://packages.confluent.io/maven/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://jitpack.io/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://repo1.maven.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://repository.apache.org/snapshots/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar", + "https://maven.google.com/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar" + ], + "packages": [ + "org.apache.log4j", + "org.apache.log4j.chainsaw", + "org.apache.log4j.config", + "org.apache.log4j.helpers", + "org.apache.log4j.jdbc", + "org.apache.log4j.net", + "org.apache.log4j.or", + "org.apache.log4j.or.jms", + "org.apache.log4j.or.sax", + "org.apache.log4j.pattern", + "org.apache.log4j.rewrite", + "org.apache.log4j.spi", + "org.apache.log4j.varia", + "org.apache.log4j.xml" + ], + "sha256": "222f90d3e69541218ef6e70547749d693bd4c1846817e5bd7949b3e28950f99f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar" + }, + { + "coord": "com.amazonaws:aws-java-sdk-core:1.12.182", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:jar:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.12.6", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "joda-time:joda-time:2.10.8", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "software.amazon.ion:ion-java:1.0.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:jar:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.12.6", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "joda-time:joda-time:2.10.8", + "org.apache.httpcomponents:httpclient:4.5.14", + "software.amazon.ion:ion-java:1.0.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://packages.confluent.io/maven/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://jitpack.io/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://repository.apache.org/snapshots/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar", + "https://maven.google.com/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar" + ], + "packages": [ + "com.amazonaws", + "com.amazonaws.adapters.types", + "com.amazonaws.annotation", + "com.amazonaws.arn", + "com.amazonaws.auth", + "com.amazonaws.auth.internal", + "com.amazonaws.auth.policy", + "com.amazonaws.auth.policy.conditions", + "com.amazonaws.auth.policy.internal", + "com.amazonaws.auth.presign", + "com.amazonaws.auth.profile", + "com.amazonaws.auth.profile.internal", + "com.amazonaws.auth.profile.internal.securitytoken", + "com.amazonaws.cache", + "com.amazonaws.client", + "com.amazonaws.client.builder", + "com.amazonaws.endpointdiscovery", + "com.amazonaws.event", + "com.amazonaws.event.request", + "com.amazonaws.handlers", + "com.amazonaws.http", + "com.amazonaws.http.apache", + "com.amazonaws.http.apache.client.impl", + "com.amazonaws.http.apache.request.impl", + "com.amazonaws.http.apache.utils", + "com.amazonaws.http.client", + "com.amazonaws.http.conn", + "com.amazonaws.http.conn.ssl", + "com.amazonaws.http.conn.ssl.privileged", + "com.amazonaws.http.exception", + "com.amazonaws.http.impl.client", + "com.amazonaws.http.protocol", + "com.amazonaws.http.request", + "com.amazonaws.http.response", + "com.amazonaws.http.settings", + "com.amazonaws.http.timers", + "com.amazonaws.http.timers.client", + "com.amazonaws.http.timers.request", + "com.amazonaws.internal", + "com.amazonaws.internal.auth", + "com.amazonaws.internal.config", + "com.amazonaws.internal.http", + "com.amazonaws.jmx", + "com.amazonaws.jmx.spi", + "com.amazonaws.log", + "com.amazonaws.metrics", + "com.amazonaws.metrics.internal", + "com.amazonaws.monitoring", + "com.amazonaws.monitoring.internal", + "com.amazonaws.partitions", + "com.amazonaws.partitions.model", + "com.amazonaws.profile.path", + "com.amazonaws.profile.path.config", + "com.amazonaws.profile.path.cred", + "com.amazonaws.protocol", + "com.amazonaws.protocol.json", + "com.amazonaws.protocol.json.internal", + "com.amazonaws.regions", + "com.amazonaws.retry", + "com.amazonaws.retry.internal", + "com.amazonaws.retry.v2", + "com.amazonaws.transform", + "com.amazonaws.util", + "com.amazonaws.util.endpoint", + "com.amazonaws.util.json", + "com.amazonaws.waiters" + ], + "sha256": "c747b045ebab86fca389148b04d33fa726f67c328ba7522c30ef2a4186f704e2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/aws-java-sdk-core/1.12.182/aws-java-sdk-core-1.12.182.jar" + }, + { + "coord": "com.amazonaws:aws-java-sdk-kms:1.12.182", + "dependencies": [ + "com.amazonaws:aws-java-sdk-core:1.12.182", + "com.amazonaws:jmespath-java:1.12.182", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:jar:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.12.6", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "joda-time:joda-time:2.10.8", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "software.amazon.ion:ion-java:1.0.2" + ], + "directDependencies": [ + "com.amazonaws:aws-java-sdk-core:1.12.182", + "com.amazonaws:jmespath-java:1.12.182" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://packages.confluent.io/maven/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://jitpack.io/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://repository.apache.org/snapshots/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar", + "https://maven.google.com/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar" + ], + "packages": [ + "com.amazonaws.auth.policy.actions", + "com.amazonaws.services.kms", + "com.amazonaws.services.kms.model", + "com.amazonaws.services.kms.model.transform" + ], + "sha256": "2750944e6cf33b8672bc26f3488b9b19f605292dad37cf646b5383f9e647566e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/aws-java-sdk-kms/1.12.182/aws-java-sdk-kms-1.12.182.jar" + }, + { + "coord": "com.amazonaws:jmespath-java:1.12.182", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://packages.confluent.io/maven/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://jitpack.io/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://repo1.maven.org/maven2/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://repository.apache.org/snapshots/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar", + "https://maven.google.com/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar" + ], + "packages": [ + "com.amazonaws.jmespath" + ], + "sha256": "79ca0c0b977053debc975bbd37166ed5d64fdfaf0fbcab1a2940d72b68708f2c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/amazonaws/jmespath-java/1.12.182/jmespath-java-1.12.182.jar" + }, + { + "coord": "com.azure:azure-core-http-netty:1.12.8", + "dependencies": [ + "com.azure:azure-core:1.35.0", + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec-http2:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec-socks:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler-proxy:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final", + "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-classes-kqueue:4.1.86.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "io.projectreactor.netty:reactor-netty-core:1.0.26", + "io.projectreactor.netty:reactor-netty-http:1.0.26", + "io.projectreactor:reactor-core:3.4.26", + "org.codehaus.woodstox:stax2-api:4.2.1", + "org.reactivestreams:reactive-streams:1.0.4", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.azure:azure-core:1.35.0", + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-http2:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-handler-proxy:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.projectreactor.netty:reactor-netty-http:1.0.26" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://packages.confluent.io/maven/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://jitpack.io/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://repo1.maven.org/maven2/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://repository.apache.org/snapshots/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar", + "https://maven.google.com/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar" + ], + "packages": [ + "com.azure.core.http.netty", + "com.azure.core.http.netty.implementation" + ], + "sha256": "e43c36389ca7ea93569c8e977605b73ae6d74fa60af0e366f0a45beab212365b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-core-http-netty/1.12.8/azure-core-http-netty-1.12.8.jar" + }, + { + "coord": "com.azure:azure-core:1.35.0", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "io.projectreactor:reactor-core:3.4.26", + "org.codehaus.woodstox:stax2-api:4.2.1", + "org.reactivestreams:reactive-streams:1.0.4", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "io.projectreactor:reactor-core:3.4.26", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://packages.confluent.io/maven/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://jitpack.io/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://repo1.maven.org/maven2/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://repository.apache.org/snapshots/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar", + "https://maven.google.com/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar" + ], + "packages": [ + "com.azure.core.annotation", + "com.azure.core.client.traits", + "com.azure.core.credential", + "com.azure.core.cryptography", + "com.azure.core.exception", + "com.azure.core.http", + "com.azure.core.http.policy", + "com.azure.core.http.rest", + "com.azure.core.implementation", + "com.azure.core.implementation.annotation", + "com.azure.core.implementation.http", + "com.azure.core.implementation.http.rest", + "com.azure.core.implementation.jackson", + "com.azure.core.implementation.logging", + "com.azure.core.implementation.serializer", + "com.azure.core.implementation.util", + "com.azure.core.models", + "com.azure.core.util", + "com.azure.core.util.builder", + "com.azure.core.util.io", + "com.azure.core.util.logging", + "com.azure.core.util.metrics", + "com.azure.core.util.paging", + "com.azure.core.util.polling", + "com.azure.core.util.polling.implementation", + "com.azure.core.util.serializer", + "com.azure.core.util.tracing" + ], + "sha256": "3f8c4f4f2441cbcbb878d0891693b6523ecb4f1cda8a1701c53e7e1676e0c90c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-core/1.35.0/azure-core-1.35.0.jar" + }, + { + "coord": "com.azure:azure-identity:1.7.3", + "dependencies": [ + "com.azure:azure-core-http-netty:1.12.8", + "com.azure:azure-core:1.35.0", + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "com.github.stephenc.jcip:jcip-annotations:1.0-1", + "com.microsoft.azure:msal4j-persistence-extension:1.1.0", + "com.microsoft.azure:msal4j:1.13.3", + "com.nimbusds:content-type:2.2", + "com.nimbusds:lang-tag:1.6", + "com.nimbusds:nimbus-jose-jwt:9.22", + "com.nimbusds:oauth2-oidc-sdk:9.35", + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec-http2:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec-socks:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler-proxy:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final", + "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-classes-kqueue:4.1.86.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "io.projectreactor.netty:reactor-netty-core:1.0.26", + "io.projectreactor.netty:reactor-netty-http:1.0.26", + "io.projectreactor:reactor-core:3.4.26", + "net.java.dev.jna:jna-platform:5.6.0", + "net.java.dev.jna:jna:5.6.0", + "net.minidev:accessors-smart:2.4.8", + "net.minidev:json-smart:2.4.8", + "org.codehaus.woodstox:stax2-api:4.2.1", + "org.ow2.asm:asm:9.3", + "org.reactivestreams:reactive-streams:1.0.4", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.azure:azure-core-http-netty:1.12.8", + "com.azure:azure-core:1.35.0", + "com.microsoft.azure:msal4j-persistence-extension:1.1.0", + "com.microsoft.azure:msal4j:1.13.3", + "net.java.dev.jna:jna-platform:5.6.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://packages.confluent.io/maven/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://jitpack.io/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://repo1.maven.org/maven2/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://repository.apache.org/snapshots/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar", + "https://maven.google.com/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar" + ], + "packages": [ + "com.azure.identity", + "com.azure.identity.implementation", + "com.azure.identity.implementation.intellij", + "com.azure.identity.implementation.util" + ], + "sha256": "fc37b8c2de1f47479359799d30b08b0f2bd8119e3db326cb3d357ab104a8cf8a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-identity/1.7.3/azure-identity-1.7.3.jar" + }, + { + "coord": "com.azure:azure-security-keyvault-keys:4.5.1", + "dependencies": [ + "com.azure:azure-core-http-netty:1.12.8", + "com.azure:azure-core:1.35.0", + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "io.projectreactor:reactor-core:3.4.26", + "org.reactivestreams:reactive-streams:1.0.4", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.azure:azure-core-http-netty:1.12.8", + "com.azure:azure-core:1.35.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://packages.confluent.io/maven/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://jitpack.io/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://repo1.maven.org/maven2/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://repository.apache.org/snapshots/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar", + "https://maven.google.com/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar" + ], + "packages": [ + "com.azure.security.keyvault.keys", + "com.azure.security.keyvault.keys.cryptography", + "com.azure.security.keyvault.keys.cryptography.implementation", + "com.azure.security.keyvault.keys.cryptography.models", + "com.azure.security.keyvault.keys.implementation", + "com.azure.security.keyvault.keys.implementation.models", + "com.azure.security.keyvault.keys.models" + ], + "sha256": "a2d3c4bcc7bc199cbda089ad813b59ba7e29f4b553e050bea26c3004fa72c1b8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/azure/azure-security-keyvault-keys/4.5.1/azure-security-keyvault-keys-4.5.1.jar" + }, + { + "coord": "com.bettercloud:vault-java-driver:5.1.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://packages.confluent.io/maven/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://jitpack.io/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://repo1.maven.org/maven2/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://repository.apache.org/snapshots/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar", + "https://maven.google.com/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar" + ], + "packages": [ + "com.bettercloud.vault", + "com.bettercloud.vault.api", + "com.bettercloud.vault.api.database", + "com.bettercloud.vault.api.mounts", + "com.bettercloud.vault.api.pki", + "com.bettercloud.vault.json", + "com.bettercloud.vault.response", + "com.bettercloud.vault.rest" + ], + "sha256": "b5ef2f95b6acd5faa4ecb99d342df98ffc2f494f3397892d904e2a4f5d96d0ad", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/bettercloud/vault-java-driver/5.1.0/vault-java-driver-5.1.0.jar" + }, + { + "coord": "com.damnhandy:handy-uri-templates:2.1.8", + "dependencies": [ + "joda-time:joda-time:2.10.8" + ], + "directDependencies": [ + "joda-time:joda-time:2.10.8" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://packages.confluent.io/maven/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://jitpack.io/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://repo1.maven.org/maven2/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://repository.apache.org/snapshots/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar", + "https://maven.google.com/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar" + ], + "packages": [ + "com.damnhandy.uri.template", + "com.damnhandy.uri.template.impl", + "com.damnhandy.uri.template.jackson.datatype" + ], + "sha256": "6b83846f2ff61d0aaa66997b64b883ec7b65cf13b50a4d7f58250996d429be2e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar" + }, + { + "coord": "com.eclipsesource.minimal-json:minimal-json:0.9.5", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://packages.confluent.io/maven/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://jitpack.io/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://repo1.maven.org/maven2/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://repository.apache.org/snapshots/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar", + "https://maven.google.com/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar" + ], + "packages": [ + "com.eclipsesource.json" + ], + "sha256": "69ff84463d1d7cc5cfdb8baf2b6e5f7af153d351bf0dbee3bbc8916247afac74", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/eclipsesource/minimal-json/minimal-json/0.9.5/minimal-json-0.9.5.jar" + }, + { + "coord": "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://jitpack.io/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar", + "https://maven.google.com/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar" + ], + "packages": [ + "com.fasterxml.jackson.annotation" + ], + "sha256": "2c6869d505cf60dc066734b7d50339f975bd3adc635e26a78abb71acb4473c0d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar" + }, + { + "coord": "com.fasterxml.jackson.core:jackson-core:2.14.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://jitpack.io/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar", + "https://maven.google.com/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar" + ], + "packages": [ + "com.fasterxml.jackson.core", + "com.fasterxml.jackson.core.async", + "com.fasterxml.jackson.core.base", + "com.fasterxml.jackson.core.exc", + "com.fasterxml.jackson.core.filter", + "com.fasterxml.jackson.core.format", + "com.fasterxml.jackson.core.io", + "com.fasterxml.jackson.core.io.doubleparser", + "com.fasterxml.jackson.core.io.schubfach", + "com.fasterxml.jackson.core.json", + "com.fasterxml.jackson.core.json.async", + "com.fasterxml.jackson.core.sym", + "com.fasterxml.jackson.core.type", + "com.fasterxml.jackson.core.util" + ], + "sha256": "b5d37a77c88277b97e3593c8740925216c06df8e4172bbde058528df04ad3e7a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar" + }, + { + "coord": "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://jitpack.io/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar", + "https://maven.google.com/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar" + ], + "packages": [ + "com.fasterxml.jackson.databind", + "com.fasterxml.jackson.databind.annotation", + "com.fasterxml.jackson.databind.cfg", + "com.fasterxml.jackson.databind.deser", + "com.fasterxml.jackson.databind.deser.impl", + "com.fasterxml.jackson.databind.deser.std", + "com.fasterxml.jackson.databind.exc", + "com.fasterxml.jackson.databind.ext", + "com.fasterxml.jackson.databind.introspect", + "com.fasterxml.jackson.databind.jdk14", + "com.fasterxml.jackson.databind.json", + "com.fasterxml.jackson.databind.jsonFormatVisitors", + "com.fasterxml.jackson.databind.jsonschema", + "com.fasterxml.jackson.databind.jsontype", + "com.fasterxml.jackson.databind.jsontype.impl", + "com.fasterxml.jackson.databind.module", + "com.fasterxml.jackson.databind.node", + "com.fasterxml.jackson.databind.ser", + "com.fasterxml.jackson.databind.ser.impl", + "com.fasterxml.jackson.databind.ser.std", + "com.fasterxml.jackson.databind.type", + "com.fasterxml.jackson.databind.util", + "com.fasterxml.jackson.databind.util.internal" + ], + "sha256": "501d3abce4d18dcc381058ec593c5b94477906bba6efbac14dae40a642f77424", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar" + }, + { + "coord": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.12.6", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar", + "https://maven.google.com/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar" + ], + "packages": [ + "com.fasterxml.jackson.dataformat.cbor", + "com.fasterxml.jackson.dataformat.cbor.databind" + ], + "sha256": "cfa008d15f052e69221e8c3193056ff95c3c594271321ccac8d72dc1a770619c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.12.6/jackson-dataformat-cbor-2.12.6.jar" + }, + { + "coord": "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.dataformat.csv", + "com.fasterxml.jackson.dataformat.csv.impl" + ], + "sha256": "8716827190f48005b5cc7c07820eae484705d28bf0c30bfc92d4b7bc80ae011c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.13.4/jackson-dataformat-csv-2.13.4.jar" + }, + { + "coord": "com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf:2.14.1", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.squareup:protoparser:4.0.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.squareup:protoparser:4.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar", + "https://maven.google.com/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar" + ], + "packages": [ + "com.fasterxml.jackson.dataformat.protobuf", + "com.fasterxml.jackson.dataformat.protobuf.protoparser.protoparser", + "com.fasterxml.jackson.dataformat.protobuf.schema", + "com.fasterxml.jackson.dataformat.protobuf.schemagen" + ], + "sha256": "de0428f45be819ca280d2c849f5942cdaa2b1ddf731f8467c20cfff965f1b4c1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-protobuf/2.14.1/jackson-dataformat-protobuf-2.14.1.jar" + }, + { + "coord": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "org.codehaus.woodstox:stax2-api:4.2.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "org.codehaus.woodstox:stax2-api:4.2.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar", + "https://maven.google.com/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar" + ], + "packages": [ + "com.fasterxml.jackson.dataformat.xml", + "com.fasterxml.jackson.dataformat.xml.annotation", + "com.fasterxml.jackson.dataformat.xml.deser", + "com.fasterxml.jackson.dataformat.xml.jaxb", + "com.fasterxml.jackson.dataformat.xml.ser", + "com.fasterxml.jackson.dataformat.xml.util" + ], + "sha256": "90fa6199c194cf3bad58073d3913b3e8a812d06a5db16faa554ba10f5d859436", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.1/jackson-dataformat-xml-2.14.1.jar" + }, + { + "coord": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.yaml:snakeyaml:1.33" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.yaml:snakeyaml:1.33" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar", + "https://maven.google.com/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar" + ], + "packages": [ + "com.fasterxml.jackson.dataformat.yaml", + "com.fasterxml.jackson.dataformat.yaml.snakeyaml.error", + "com.fasterxml.jackson.dataformat.yaml.util" + ], + "sha256": "9e157e2625ed855ab73af7915e256f6823993a30982f4923c9ca82bb752a0303", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.14.1/jackson-dataformat-yaml-2.14.1.jar" + }, + { + "coord": "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.google.guava:guava:31.1-jre" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.google.guava:guava:31.1-jre" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.datatype.guava", + "com.fasterxml.jackson.datatype.guava.deser", + "com.fasterxml.jackson.datatype.guava.deser.multimap", + "com.fasterxml.jackson.datatype.guava.deser.multimap.list", + "com.fasterxml.jackson.datatype.guava.deser.multimap.set", + "com.fasterxml.jackson.datatype.guava.deser.util", + "com.fasterxml.jackson.datatype.guava.ser" + ], + "sha256": "95940804a022bb32a60cb516749717ede680daf33d11aea3b679c48ac7facd38", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar" + }, + { + "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.datatype.jdk8" + ], + "sha256": "fc568852020844d753d12d93c5ac25ef545792ac4926b3075e81c42ac32e606e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar" + }, + { + "coord": "com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "joda-time:joda-time:2.10.8" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "joda-time:joda-time:2.10.8" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.datatype.joda", + "com.fasterxml.jackson.datatype.joda.cfg", + "com.fasterxml.jackson.datatype.joda.deser", + "com.fasterxml.jackson.datatype.joda.deser.key", + "com.fasterxml.jackson.datatype.joda.ser" + ], + "sha256": "40a52d76781b32596a38928f5b99c6cf8c420fe971d5ba08bc6733f251eed1a3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.13.4/jackson-datatype-joda-2.13.4.jar" + }, + { + "coord": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.datatype.jsr310", + "com.fasterxml.jackson.datatype.jsr310.deser", + "com.fasterxml.jackson.datatype.jsr310.deser.key", + "com.fasterxml.jackson.datatype.jsr310.ser", + "com.fasterxml.jackson.datatype.jsr310.ser.key", + "com.fasterxml.jackson.datatype.jsr310.util" + ], + "sha256": "5ad75d210bacc17271925da28e1f393aaf8c83f6c92fbe5b2ed61954b84decf7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar" + }, + { + "coord": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.14.2", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://jitpack.io/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar", + "https://maven.google.com/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar" + ], + "packages": [ + "com.fasterxml.jackson.jaxrs.annotation", + "com.fasterxml.jackson.jaxrs.base", + "com.fasterxml.jackson.jaxrs.cfg", + "com.fasterxml.jackson.jaxrs.util" + ], + "sha256": "cc0689c44be8d235a643ab58b5d4fb638c8753ce5f8560c13c6fa5f14ac20b55", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.14.2/jackson-jaxrs-base-2.14.2.jar" + }, + { + "coord": "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.14.2", + "com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.14.2", + "jakarta.activation:jakarta.activation-api:1.2.2", + "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.14.2", + "com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://jitpack.io/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar", + "https://maven.google.com/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar" + ], + "packages": [ + "com.fasterxml.jackson.jaxrs.json", + "com.fasterxml.jackson.jaxrs.json.annotation" + ], + "sha256": "37e2ef9926b41724a1d725f962404e1ed8cac916aa0d466dbcbc7ea61a6881be", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.14.2/jackson-jaxrs-json-provider-2.14.2.jar" + }, + { + "coord": "com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.14.2", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "jakarta.activation:jakarta.activation-api:1.2.2", + "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "jakarta.activation:jakarta.activation-api:1.2.2", + "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://jitpack.io/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar", + "https://maven.google.com/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar" + ], + "packages": [ + "com.fasterxml.jackson.module.jaxb", + "com.fasterxml.jackson.module.jaxb.deser", + "com.fasterxml.jackson.module.jaxb.ser" + ], + "sha256": "3cc848dc4c370a76d8a36351505bd36fb025588d1ebbb00061af7f5d414b84fe", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.14.2/jackson-module-jaxb-annotations-2.14.2.jar" + }, + { + "coord": "com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.module.paramnames" + ], + "sha256": "e67856b02a988768784c5a675c0ad5c17e330cd78375ef39e740cbf04879d363", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar" + }, + { + "coord": "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.13.4", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.thoughtworks.paranamer:paranamer:2.8", + "org.scala-lang:scala-library:2.13.10" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.thoughtworks.paranamer:paranamer:2.8", + "org.scala-lang:scala-library:2.13.10" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://packages.confluent.io/maven/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://jitpack.io/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://repository.apache.org/snapshots/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar", + "https://maven.google.com/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar" + ], + "packages": [ + "com.fasterxml.jackson.module.scala", + "com.fasterxml.jackson.module.scala.deser", + "com.fasterxml.jackson.module.scala.experimental", + "com.fasterxml.jackson.module.scala.introspect", + "com.fasterxml.jackson.module.scala.modifiers", + "com.fasterxml.jackson.module.scala.ser", + "com.fasterxml.jackson.module.scala.util" + ], + "sha256": "c65346d753fb256b4bc81491ccc99c806231e00bf101c4f82bb8fe790432dd50", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/jackson/module/jackson-module-scala_2.13/2.13.4/jackson-module-scala_2.13-2.13.4.jar" + }, + { + "coord": "com.fasterxml.woodstox:woodstox-core:6.4.0", + "dependencies": [ + "org.codehaus.woodstox:stax2-api:4.2.1" + ], + "directDependencies": [ + "org.codehaus.woodstox:stax2-api:4.2.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://packages.confluent.io/maven/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://jitpack.io/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://repo1.maven.org/maven2/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://repository.apache.org/snapshots/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar", + "https://maven.google.com/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar" + ], + "packages": [ + "com.ctc.wstx.api", + "com.ctc.wstx.cfg", + "com.ctc.wstx.compat", + "com.ctc.wstx.dom", + "com.ctc.wstx.dtd", + "com.ctc.wstx.ent", + "com.ctc.wstx.evt", + "com.ctc.wstx.exc", + "com.ctc.wstx.io", + "com.ctc.wstx.msv", + "com.ctc.wstx.osgi", + "com.ctc.wstx.sax", + "com.ctc.wstx.shaded.msv.org_isorelax.catalog", + "com.ctc.wstx.shaded.msv.org_isorelax.dispatcher", + "com.ctc.wstx.shaded.msv.org_isorelax.dispatcher.impl", + "com.ctc.wstx.shaded.msv.org_isorelax.jaxp", + "com.ctc.wstx.shaded.msv.org_isorelax.verifier", + "com.ctc.wstx.shaded.msv.org_isorelax.verifier.impl", + "com.ctc.wstx.shaded.msv.org_jp_gr_xml.dom", + "com.ctc.wstx.shaded.msv.org_jp_gr_xml.sax", + "com.ctc.wstx.shaded.msv.org_jp_gr_xml.xml", + "com.ctc.wstx.shaded.msv.relaxng_datatype", + "com.ctc.wstx.shaded.msv.relaxng_datatype.helpers", + "com.ctc.wstx.shaded.msv.xsd_util", + "com.ctc.wstx.shaded.msv_core.datatype", + "com.ctc.wstx.shaded.msv_core.datatype.regexp", + "com.ctc.wstx.shaded.msv_core.datatype.xsd", + "com.ctc.wstx.shaded.msv_core.datatype.xsd.datetime", + "com.ctc.wstx.shaded.msv_core.datatype.xsd.ngimpl", + "com.ctc.wstx.shaded.msv_core.datatype.xsd.regex", + "com.ctc.wstx.shaded.msv_core.driver.textui", + "com.ctc.wstx.shaded.msv_core.grammar", + "com.ctc.wstx.shaded.msv_core.grammar.dtd", + "com.ctc.wstx.shaded.msv_core.grammar.relax", + "com.ctc.wstx.shaded.msv_core.grammar.relaxng", + "com.ctc.wstx.shaded.msv_core.grammar.relaxng.datatype", + "com.ctc.wstx.shaded.msv_core.grammar.trex", + "com.ctc.wstx.shaded.msv_core.grammar.trex.typed", + "com.ctc.wstx.shaded.msv_core.grammar.util", + "com.ctc.wstx.shaded.msv_core.grammar.xmlschema", + "com.ctc.wstx.shaded.msv_core.reader", + "com.ctc.wstx.shaded.msv_core.reader.datatype", + "com.ctc.wstx.shaded.msv_core.reader.datatype.xsd", + "com.ctc.wstx.shaded.msv_core.reader.dtd", + "com.ctc.wstx.shaded.msv_core.reader.relax", + "com.ctc.wstx.shaded.msv_core.reader.relax.core", + "com.ctc.wstx.shaded.msv_core.reader.relax.core.checker", + "com.ctc.wstx.shaded.msv_core.reader.trex", + "com.ctc.wstx.shaded.msv_core.reader.trex.classic", + "com.ctc.wstx.shaded.msv_core.reader.trex.ng", + "com.ctc.wstx.shaded.msv_core.reader.trex.ng.comp", + "com.ctc.wstx.shaded.msv_core.reader.trex.typed", + "com.ctc.wstx.shaded.msv_core.reader.util", + "com.ctc.wstx.shaded.msv_core.reader.xmlschema", + "com.ctc.wstx.shaded.msv_core.relaxns.grammar", + "com.ctc.wstx.shaded.msv_core.relaxns.grammar.relax", + "com.ctc.wstx.shaded.msv_core.relaxns.grammar.trex", + "com.ctc.wstx.shaded.msv_core.relaxns.reader", + "com.ctc.wstx.shaded.msv_core.relaxns.reader.relax", + "com.ctc.wstx.shaded.msv_core.relaxns.reader.trex", + "com.ctc.wstx.shaded.msv_core.relaxns.verifier", + "com.ctc.wstx.shaded.msv_core.scanner.dtd", + "com.ctc.wstx.shaded.msv_core.util", + "com.ctc.wstx.shaded.msv_core.util.xml", + "com.ctc.wstx.shaded.msv_core.verifier", + "com.ctc.wstx.shaded.msv_core.verifier.identity", + "com.ctc.wstx.shaded.msv_core.verifier.jarv", + "com.ctc.wstx.shaded.msv_core.verifier.jaxp", + "com.ctc.wstx.shaded.msv_core.verifier.psvi", + "com.ctc.wstx.shaded.msv_core.verifier.regexp", + "com.ctc.wstx.shaded.msv_core.verifier.regexp.xmlschema", + "com.ctc.wstx.shaded.msv_core.verifier.util", + "com.ctc.wstx.shaded.msv_core.writer", + "com.ctc.wstx.shaded.msv_core.writer.relaxng", + "com.ctc.wstx.sr", + "com.ctc.wstx.stax", + "com.ctc.wstx.sw", + "com.ctc.wstx.util" + ], + "sha256": "d6eb9f2f40049a7a808baf11ffba0737648e62ff52fde9271d808e5d57a27279", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/woodstox/woodstox-core/6.4.0/woodstox-core-6.4.0.jar" + }, + { + "coord": "com.fasterxml:classmate:1.5.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://packages.confluent.io/maven/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://jitpack.io/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://repo1.maven.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://repository.apache.org/snapshots/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar", + "https://maven.google.com/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar" + ], + "packages": [ + "com.fasterxml.classmate", + "com.fasterxml.classmate.members", + "com.fasterxml.classmate.types", + "com.fasterxml.classmate.util" + ], + "sha256": "aab4de3006808c09d25dd4ff4a3611cfb63c95463cfd99e73d2e1680d229a33b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar" + }, + { + "coord": "com.github.erosb:everit-json-schema:1.14.1", + "dependencies": [ + "com.damnhandy:handy-uri-templates:2.1.8", + "com.google.re2j:re2j:1.6", + "commons-collections:commons-collections:3.2.2", + "commons-digester:commons-digester:2.1", + "commons-logging:commons-logging:1.2", + "commons-validator:commons-validator:1.7", + "joda-time:joda-time:2.10.8", + "org.json:json:20220320" + ], + "directDependencies": [ + "com.damnhandy:handy-uri-templates:2.1.8", + "com.google.re2j:re2j:1.6", + "commons-validator:commons-validator:1.7", + "org.json:json:20220320" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://packages.confluent.io/maven/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://jitpack.io/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://repo1.maven.org/maven2/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://repository.apache.org/snapshots/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar", + "https://maven.google.com/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar" + ], + "packages": [ + "org.everit.json.schema", + "org.everit.json.schema.event", + "org.everit.json.schema.internal", + "org.everit.json.schema.loader", + "org.everit.json.schema.loader.internal", + "org.everit.json.schema.regexp" + ], + "sha256": "1201bdf920b77d9a3238096258e763eb3266224b7012dfe8c4debc3dc2388145", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/erosb/everit-json-schema/1.14.1/everit-json-schema-1.14.1.jar" + }, + { + "coord": "com.github.luben:zstd-jni:1.5.5-1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://packages.confluent.io/maven/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://jitpack.io/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://repo1.maven.org/maven2/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://repository.apache.org/snapshots/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar", + "https://maven.google.com/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar" + ], + "packages": [ + "com.github.luben.zstd", + "com.github.luben.zstd.util" + ], + "sha256": "f779fcd068ad91ac77aa0239104bd42793b0dce807fb1d73b51c635e0ea1e293", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/luben/zstd-jni/1.5.5-1/zstd-jni-1.5.5-1.jar" + }, + { + "coord": "com.github.spotbugs:spotbugs-annotations:4.7.1", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:3.0.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://packages.confluent.io/maven/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://jitpack.io/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://repository.apache.org/snapshots/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar", + "https://maven.google.com/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar" + ], + "packages": [ + "edu.umd.cs.findbugs.annotations" + ], + "sha256": "c267764c59c7cbd2e6becebeb7c848cd6dfe23a28a76ea3bc6ccea5cce60932e", + "url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.1/spotbugs-annotations-4.7.1.jar" + }, + { + "coord": "com.github.spotbugs:spotbugs:4.7.1", + "dependencies": [ + "com.github.spotbugs:spotbugs-annotations:4.7.1", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "jaxen:jaxen:1.2.0", + "net.jcip:jcip-annotations:1.0", + "net.sf.saxon:Saxon-HE:11.3", + "org.apache.bcel:bcel:6.5.0", + "org.apache.commons:commons-lang3:3.12.0", + "org.apache.commons:commons-text:1.10.0", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "org.dom4j:dom4j:2.1.3", + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-commons:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm-util:9.3", + "org.ow2.asm:asm:9.3", + "org.slf4j:slf4j-api:2.0.3", + "org.xmlresolver:xmlresolver:4.2.0", + "org.xmlresolver:xmlresolver:jar:data:4.2.0" + ], + "directDependencies": [ + "com.github.spotbugs:spotbugs-annotations:4.7.1", + "com.google.code.gson:gson:2.10", + "jaxen:jaxen:1.2.0", + "net.jcip:jcip-annotations:1.0", + "net.sf.saxon:Saxon-HE:11.3", + "org.apache.bcel:bcel:6.5.0", + "org.apache.commons:commons-lang3:3.12.0", + "org.apache.commons:commons-text:1.10.0", + "org.dom4j:dom4j:2.1.3", + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-commons:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm-util:9.3", + "org.ow2.asm:asm:9.3", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://packages.confluent.io/maven/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://jitpack.io/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://repository.apache.org/snapshots/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar", + "https://maven.google.com/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar" + ], + "packages": [ + "edu.umd.cs.findbugs", + "edu.umd.cs.findbugs.asm", + "edu.umd.cs.findbugs.ba", + "edu.umd.cs.findbugs.ba.bcp", + "edu.umd.cs.findbugs.ba.ca", + "edu.umd.cs.findbugs.ba.ch", + "edu.umd.cs.findbugs.ba.constant", + "edu.umd.cs.findbugs.ba.deref", + "edu.umd.cs.findbugs.ba.generic", + "edu.umd.cs.findbugs.ba.heap", + "edu.umd.cs.findbugs.ba.interproc", + "edu.umd.cs.findbugs.ba.jsr305", + "edu.umd.cs.findbugs.ba.npe", + "edu.umd.cs.findbugs.ba.obl", + "edu.umd.cs.findbugs.ba.type", + "edu.umd.cs.findbugs.ba.vna", + "edu.umd.cs.findbugs.bcel", + "edu.umd.cs.findbugs.bcel.generic", + "edu.umd.cs.findbugs.bugReporter", + "edu.umd.cs.findbugs.bytecode", + "edu.umd.cs.findbugs.charsets", + "edu.umd.cs.findbugs.classfile", + "edu.umd.cs.findbugs.classfile.analysis", + "edu.umd.cs.findbugs.classfile.engine", + "edu.umd.cs.findbugs.classfile.engine.asm", + "edu.umd.cs.findbugs.classfile.engine.bcel", + "edu.umd.cs.findbugs.classfile.impl", + "edu.umd.cs.findbugs.config", + "edu.umd.cs.findbugs.detect", + "edu.umd.cs.findbugs.filter", + "edu.umd.cs.findbugs.graph", + "edu.umd.cs.findbugs.gui", + "edu.umd.cs.findbugs.gui2", + "edu.umd.cs.findbugs.internalAnnotations", + "edu.umd.cs.findbugs.io", + "edu.umd.cs.findbugs.jaif", + "edu.umd.cs.findbugs.launchGUI", + "edu.umd.cs.findbugs.log", + "edu.umd.cs.findbugs.model", + "edu.umd.cs.findbugs.plan", + "edu.umd.cs.findbugs.plugins", + "edu.umd.cs.findbugs.props", + "edu.umd.cs.findbugs.sarif", + "edu.umd.cs.findbugs.sourceViewer", + "edu.umd.cs.findbugs.util", + "edu.umd.cs.findbugs.visitclass", + "edu.umd.cs.findbugs.workflow", + "edu.umd.cs.findbugs.xml" + ], + "sha256": "a6b689b6695fe64665a056875c0d57b55c07431d5d5193b2ae3971986a114d0e", + "url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.1/spotbugs-4.7.1.jar" + }, + { + "coord": "com.github.stephenc.jcip:jcip-annotations:1.0-1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://packages.confluent.io/maven/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://jitpack.io/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://repo1.maven.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://repository.apache.org/snapshots/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar", + "https://maven.google.com/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar" + ], + "packages": [ + "net.jcip.annotations" + ], + "sha256": "4fccff8382aafc589962c4edb262f6aa595e34f1e11e61057d1c6a96e8fc7323", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar" + }, + { + "coord": "com.google.api-client:google-api-client:2.2.0", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.http-client:google-http-client-apache-v2:1.42.3", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.oauth-client:google-oauth-client:1.34.1", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "org.checkerframework:checker-qual:3.12.0" + ], + "directDependencies": [ + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client-apache-v2:1.42.3", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3", + "com.google.oauth-client:google-oauth-client:1.34.1", + "commons-codec:commons-codec:1.15", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://packages.confluent.io/maven/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://jitpack.io/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://repo1.maven.org/maven2/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://repository.apache.org/snapshots/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar", + "https://maven.google.com/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar" + ], + "packages": [ + "com.google.api.client.googleapis", + "com.google.api.client.googleapis.apache.v2", + "com.google.api.client.googleapis.auth.oauth2", + "com.google.api.client.googleapis.batch", + "com.google.api.client.googleapis.batch.json", + "com.google.api.client.googleapis.compute", + "com.google.api.client.googleapis.javanet", + "com.google.api.client.googleapis.json", + "com.google.api.client.googleapis.media", + "com.google.api.client.googleapis.mtls", + "com.google.api.client.googleapis.notifications", + "com.google.api.client.googleapis.notifications.json", + "com.google.api.client.googleapis.services", + "com.google.api.client.googleapis.services.json", + "com.google.api.client.googleapis.testing", + "com.google.api.client.googleapis.testing.auth.oauth2", + "com.google.api.client.googleapis.testing.compute", + "com.google.api.client.googleapis.testing.json", + "com.google.api.client.googleapis.testing.notifications", + "com.google.api.client.googleapis.testing.services", + "com.google.api.client.googleapis.testing.services.json", + "com.google.api.client.googleapis.util" + ], + "sha256": "58eca9fb0a869391689ffc828b3bd0b19ac76042ff9fab4881eddf7fde76903f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/api-client/google-api-client/2.2.0/google-api-client-2.2.0.jar" + }, + { + "coord": "com.google.api.grpc:proto-google-common-protos:2.5.1", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.21.9" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.21.9" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://packages.confluent.io/maven/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://jitpack.io/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://repository.apache.org/snapshots/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar", + "https://maven.google.com/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar" + ], + "packages": [ + "com.google.api", + "com.google.cloud", + "com.google.cloud.audit", + "com.google.geo.type", + "com.google.logging.type", + "com.google.longrunning", + "com.google.rpc", + "com.google.rpc.context", + "com.google.type" + ], + "sha256": "6bc29d4b2da1cc9953d617b6a7cd4723e3ddc666d1c35dfdb4f11e7ebe3ae556", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/api/grpc/proto-google-common-protos/2.5.1/proto-google-common-protos-2.5.1.jar" + }, + { + "coord": "com.google.apis:google-api-services-cloudkms:v1-rev20221107-2.0.0", + "dependencies": [ + "com.google.api-client:google-api-client:2.2.0" + ], + "directDependencies": [ + "com.google.api-client:google-api-client:2.2.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://packages.confluent.io/maven/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://jitpack.io/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://repository.apache.org/snapshots/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar", + "https://maven.google.com/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar" + ], + "packages": [ + "com.google.api.services.cloudkms.v1", + "com.google.api.services.cloudkms.v1.model" + ], + "sha256": "6c98eb64a9b692127bc9f144837a6f70d5c391132ac198ebb92bfb326d3d2ab4", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/apis/google-api-services-cloudkms/v1-rev20221107-2.0.0/google-api-services-cloudkms-v1-rev20221107-2.0.0.jar" + }, + { + "coord": "com.google.auth:google-auth-library-credentials:1.5.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://packages.confluent.io/maven/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://jitpack.io/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://repository.apache.org/snapshots/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar", + "https://maven.google.com/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar" + ], + "packages": [ + "com.google.auth" + ], + "sha256": "7f6eaddde4fc20129472c76ba072b19c5a14cccd3a5784795975478c5d92a12c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auth/google-auth-library-credentials/1.5.3/google-auth-library-credentials-1.5.3.jar" + }, + { + "coord": "com.google.auth:google-auth-library-oauth2-http:1.5.3", + "dependencies": [ + "com.google.auth:google-auth-library-credentials:1.5.3", + "com.google.auto.value:auto-value-annotations:1.9", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3" + ], + "directDependencies": [ + "com.google.auth:google-auth-library-credentials:1.5.3", + "com.google.auto.value:auto-value-annotations:1.9", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://packages.confluent.io/maven/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://jitpack.io/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://repository.apache.org/snapshots/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar", + "https://maven.google.com/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar" + ], + "packages": [ + "com.google.auth.http", + "com.google.auth.oauth2" + ], + "sha256": "45073775620656b6c4ac5b4486928c3787d9f8de93fd3b446c2c377cc53a70e7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auth/google-auth-library-oauth2-http/1.5.3/google-auth-library-oauth2-http-1.5.3.jar" + }, + { + "coord": "com.google.auto.service:auto-service-annotations:1.0.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://packages.confluent.io/maven/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://jitpack.io/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://repository.apache.org/snapshots/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar", + "https://maven.google.com/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar" + ], + "packages": [ + "com.google.auto.service" + ], + "sha256": "c7bec54b7b5588b5967e870341091c5691181d954cf2039f1bf0a6eeb837473b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar" + }, + { + "coord": "com.google.auto.value:auto-value-annotations:1.9", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://packages.confluent.io/maven/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://jitpack.io/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://repository.apache.org/snapshots/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar", + "https://maven.google.com/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar" + ], + "packages": [ + "com.google.auto.value", + "com.google.auto.value.extension.memoized", + "com.google.auto.value.extension.serializable", + "com.google.auto.value.extension.toprettystring" + ], + "sha256": "fa5469f4c44ee598a2d8f033ab0a9dcbc6498a0c5e0c998dfa0c2adf51358044", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/auto/value/auto-value-annotations/1.9/auto-value-annotations-1.9.jar" + }, + { + "coord": "com.google.code.findbugs:jsr305:3.0.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://packages.confluent.io/maven/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://jitpack.io/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://repository.apache.org/snapshots/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar", + "https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" + ], + "packages": [ + "javax.annotation", + "javax.annotation.concurrent", + "javax.annotation.meta" + ], + "sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7", + "url": "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar" + }, + { + "coord": "com.google.code.gson:gson:2.10", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/code/gson/gson/2.10/gson-2.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://packages.confluent.io/maven/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://jitpack.io/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://repository.apache.org/snapshots/com/google/code/gson/gson/2.10/gson-2.10.jar", + "https://maven.google.com/com/google/code/gson/gson/2.10/gson-2.10.jar" + ], + "packages": [ + "com.google.gson", + "com.google.gson.annotations", + "com.google.gson.internal", + "com.google.gson.internal.bind", + "com.google.gson.internal.bind.util", + "com.google.gson.internal.reflect", + "com.google.gson.internal.sql", + "com.google.gson.reflect", + "com.google.gson.stream" + ], + "sha256": "0cdd163ce3598a20fc04eee71b140b24f6f2a3b35f0a499dbbdd9852e83fbfaf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/code/gson/gson/2.10/gson-2.10.jar" + }, + { + "coord": "com.google.crypto.tink:tink-awskms:1.8.0", + "dependencies": [ + "com.amazonaws:aws-java-sdk-core:1.12.182", + "com.amazonaws:aws-java-sdk-kms:1.12.182", + "com.amazonaws:jmespath-java:1.12.182", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:jar:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.12.6", + "com.google.auto.service:auto-service-annotations:1.0.1", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.crypto.tink:tink:1.8.0", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "joda-time:joda-time:2.10.8", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "org.checkerframework:checker-qual:3.12.0", + "software.amazon.ion:ion-java:1.0.2" + ], + "directDependencies": [ + "com.amazonaws:aws-java-sdk-core:1.12.182", + "com.amazonaws:aws-java-sdk-kms:1.12.182", + "com.google.auto.service:auto-service-annotations:1.0.1", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.crypto.tink:tink:1.8.0", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://packages.confluent.io/maven/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://jitpack.io/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://repo1.maven.org/maven2/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://repository.apache.org/snapshots/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar", + "https://maven.google.com/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar" + ], + "packages": [ + "com.google.crypto.tink.integration.awskms" + ], + "sha256": "ebd71ea3913b36d1e97dac37c4022e139f1bc1448c0356f689dab79b665a740a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink-awskms/1.8.0/tink-awskms-1.8.0.jar" + }, + { + "coord": "com.google.crypto.tink:tink-gcpkms:1.8.0", + "dependencies": [ + "com.google.api-client:google-api-client:2.2.0", + "com.google.apis:google-api-services-cloudkms:v1-rev20221107-2.0.0", + "com.google.auth:google-auth-library-credentials:1.5.3", + "com.google.auth:google-auth-library-oauth2-http:1.5.3", + "com.google.auto.service:auto-service-annotations:1.0.1", + "com.google.auto.value:auto-value-annotations:1.9", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.crypto.tink:tink:1.8.0", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.http-client:google-http-client-apache-v2:1.42.3", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.oauth-client:google-oauth-client:1.34.1", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "org.checkerframework:checker-qual:3.12.0" + ], + "directDependencies": [ + "com.google.api-client:google-api-client:2.2.0", + "com.google.apis:google-api-services-cloudkms:v1-rev20221107-2.0.0", + "com.google.auth:google-auth-library-oauth2-http:1.5.3", + "com.google.auto.service:auto-service-annotations:1.0.1", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.crypto.tink:tink:1.8.0", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3", + "com.google.oauth-client:google-oauth-client:1.34.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://packages.confluent.io/maven/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://jitpack.io/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://repo1.maven.org/maven2/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://repository.apache.org/snapshots/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar", + "https://maven.google.com/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar" + ], + "packages": [ + "com.google.crypto.tink.integration.gcpkms" + ], + "sha256": "6ff41f00d04ba35abf41a0af375c31d8de4af5d1398d76be9c3933ab7a7411b2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink-gcpkms/1.8.0/tink-gcpkms-1.8.0.jar" + }, + { + "coord": "com.google.crypto.tink:tink:1.8.0", + "dependencies": [ + "androidx.annotation:annotation:1.3.0", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client:1.42.3", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.protobuf:protobuf-java:3.21.9", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "joda-time:joda-time:2.10.8", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "androidx.annotation:annotation:1.3.0", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.http-client:google-http-client:1.42.3", + "com.google.protobuf:protobuf-java:3.21.9", + "joda-time:joda-time:2.10.8" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://packages.confluent.io/maven/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://jitpack.io/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://repo1.maven.org/maven2/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://repository.apache.org/snapshots/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar", + "https://maven.google.com/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar" + ], + "packages": [ + "com.google.crypto.tink", + "com.google.crypto.tink.aead", + "com.google.crypto.tink.aead.internal", + "com.google.crypto.tink.aead.subtle", + "com.google.crypto.tink.annotations", + "com.google.crypto.tink.config", + "com.google.crypto.tink.config.internal", + "com.google.crypto.tink.daead", + "com.google.crypto.tink.hybrid", + "com.google.crypto.tink.hybrid.internal", + "com.google.crypto.tink.hybrid.subtle", + "com.google.crypto.tink.internal", + "com.google.crypto.tink.jwt", + "com.google.crypto.tink.mac", + "com.google.crypto.tink.mac.internal", + "com.google.crypto.tink.monitoring", + "com.google.crypto.tink.prf", + "com.google.crypto.tink.proto", + "com.google.crypto.tink.signature", + "com.google.crypto.tink.signature.internal", + "com.google.crypto.tink.streamingaead", + "com.google.crypto.tink.subtle", + "com.google.crypto.tink.subtle.prf", + "com.google.crypto.tink.tinkkey", + "com.google.crypto.tink.tinkkey.internal", + "com.google.crypto.tink.util" + ], + "sha256": "92b8676c15b11a7faa15f3d1f05ed776a2897da3deba18c528ff32043339f248", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/crypto/tink/tink/1.8.0/tink-1.8.0.jar" + }, + { + "coord": "com.google.errorprone:error_prone_annotations:2.16", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://packages.confluent.io/maven/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://jitpack.io/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://repository.apache.org/snapshots/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar", + "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar" + ], + "packages": [ + "com.google.errorprone.annotations", + "com.google.errorprone.annotations.concurrent" + ], + "sha256": "2668536a354cda63d19885fcabdecd8d6298aec4260cdfdf34b722e964d60396", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar" + }, + { + "coord": "com.google.guava:failureaccess:1.0.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://packages.confluent.io/maven/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://jitpack.io/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://repository.apache.org/snapshots/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", + "https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" + ], + "packages": [ + "com.google.common.util.concurrent.internal" + ], + "sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26", + "url": "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar" + }, + { + "coord": "com.google.guava:guava-testlib:30.1.1-jre", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "junit:junit:4.13.2", + "org.checkerframework:checker-qual:3.12.0", + "org.hamcrest:hamcrest-core:1.3" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.j2objc:j2objc-annotations:1.3", + "junit:junit:4.13.2", + "org.checkerframework:checker-qual:3.12.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://packages.confluent.io/maven/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://jitpack.io/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://repo1.maven.org/maven2/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://repository.apache.org/snapshots/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar", + "https://maven.google.com/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar" + ], + "packages": [ + "com.google.common.collect.testing", + "com.google.common.collect.testing.features", + "com.google.common.collect.testing.google", + "com.google.common.collect.testing.testers", + "com.google.common.escape.testing", + "com.google.common.testing", + "com.google.common.util.concurrent.testing" + ], + "sha256": "8a7fc9adfa1e7441d1d30ca288c593ebc7c4a24c601d01169b781c398f24099b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/guava-testlib/30.1.1-jre/guava-testlib-30.1.1-jre.jar" + }, + { + "coord": "com.google.guava:guava:31.1-jre", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "org.checkerframework:checker-qual:3.12.0" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "org.checkerframework:checker-qual:3.12.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://packages.confluent.io/maven/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://jitpack.io/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://repository.apache.org/snapshots/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", + "https://maven.google.com/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar" + ], + "packages": [ + "com.google.common.annotations", + "com.google.common.base", + "com.google.common.base.internal", + "com.google.common.cache", + "com.google.common.collect", + "com.google.common.escape", + "com.google.common.eventbus", + "com.google.common.graph", + "com.google.common.hash", + "com.google.common.html", + "com.google.common.io", + "com.google.common.math", + "com.google.common.net", + "com.google.common.primitives", + "com.google.common.reflect", + "com.google.common.util.concurrent", + "com.google.common.xml", + "com.google.thirdparty.publicsuffix" + ], + "sha256": "a42edc9cab792e39fe39bb94f3fca655ed157ff87a8af78e1d6ba5b07c4a00ab", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar" + }, + { + "coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://packages.confluent.io/maven/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://jitpack.io/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://repository.apache.org/snapshots/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar", + "https://maven.google.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" + ], + "packages": [], + "sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99", + "url": "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar" + }, + { + "coord": "com.google.http-client:google-http-client-apache-v2:1.42.3", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client:1.42.3", + "com.google.j2objc:j2objc-annotations:1.3", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "com.google.http-client:google-http-client:1.42.3", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://packages.confluent.io/maven/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://jitpack.io/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://repository.apache.org/snapshots/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar", + "https://maven.google.com/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar" + ], + "packages": [ + "com.google.api.client.http.apache.v2" + ], + "sha256": "86d112c6f7e55c8f6d1bfbd47a02d25afd072c60a80dea8ef616fba278637600", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client-apache-v2/1.42.3/google-http-client-apache-v2-1.42.3.jar" + }, + { + "coord": "com.google.http-client:google-http-client-gson:1.42.3", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client:1.42.3", + "com.google.j2objc:j2objc-annotations:1.3", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "com.google.code.gson:gson:2.10", + "com.google.http-client:google-http-client:1.42.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://packages.confluent.io/maven/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://jitpack.io/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://repository.apache.org/snapshots/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar", + "https://maven.google.com/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar" + ], + "packages": [ + "com.google.api.client.json.gson" + ], + "sha256": "8196efaa89c5f73b00b2b48edad02fcd78524259407c37ab1860737988545cee", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client-gson/1.42.3/google-http-client-gson-1.42.3.jar" + }, + { + "coord": "com.google.http-client:google-http-client:1.42.3", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.j2objc:j2objc-annotations:1.3", + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.j2objc:j2objc-annotations:1.3", + "io.opencensus:opencensus-api:0.31.1", + "io.opencensus:opencensus-contrib-http-util:0.31.1", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://packages.confluent.io/maven/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://jitpack.io/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://repository.apache.org/snapshots/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar", + "https://maven.google.com/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar" + ], + "packages": [ + "com.google.api.client.http", + "com.google.api.client.http.apache", + "com.google.api.client.http.javanet", + "com.google.api.client.http.json", + "com.google.api.client.json", + "com.google.api.client.json.rpc2", + "com.google.api.client.json.webtoken", + "com.google.api.client.testing.http", + "com.google.api.client.testing.http.apache", + "com.google.api.client.testing.http.javanet", + "com.google.api.client.testing.json", + "com.google.api.client.testing.json.webtoken", + "com.google.api.client.testing.util", + "com.google.api.client.util", + "com.google.api.client.util.escape", + "com.google.api.client.util.store" + ], + "sha256": "e395dd1765e3e6bceb0c610706bcf4128de84bd6e65cf1d4adbf998b4114161c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/http-client/google-http-client/1.42.3/google-http-client-1.42.3.jar" + }, + { + "coord": "com.google.j2objc:j2objc-annotations:1.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://packages.confluent.io/maven/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://jitpack.io/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://repository.apache.org/snapshots/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar", + "https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar" + ], + "packages": [ + "com.google.j2objc.annotations" + ], + "sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b", + "url": "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar" + }, + { + "coord": "com.google.oauth-client:google-oauth-client:1.34.1", + "dependencies": [ + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3" + ], + "directDependencies": [ + "com.google.guava:guava:31.1-jre", + "com.google.http-client:google-http-client-gson:1.42.3", + "com.google.http-client:google-http-client:1.42.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://packages.confluent.io/maven/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://jitpack.io/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://repository.apache.org/snapshots/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar", + "https://maven.google.com/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar" + ], + "packages": [ + "com.google.api.client.auth.oauth", + "com.google.api.client.auth.oauth2", + "com.google.api.client.auth.openidconnect" + ], + "sha256": "193edf97aefa28b93c5892bdc598bac34fa4c396588030084f290b1440e8b98a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/oauth-client/google-oauth-client/1.34.1/google-oauth-client-1.34.1.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java-util:3.19.6", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.protobuf:protobuf-java:3.21.9" + ], + "directDependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.10", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:guava:31.1-jre", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.protobuf:protobuf-java:3.21.9" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://packages.confluent.io/maven/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://jitpack.io/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://repository.apache.org/snapshots/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar", + "https://maven.google.com/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar" + ], + "packages": [ + "com.google.protobuf.util" + ], + "sha256": "8c536b2ca85f4e0891b85060b9f697e9e61c074c3bcc887916904562d2ef8108", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/protobuf/protobuf-java-util/3.19.6/protobuf-java-util-3.19.6.jar" + }, + { + "coord": "com.google.protobuf:protobuf-java:3.21.9", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://packages.confluent.io/maven/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://jitpack.io/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://repository.apache.org/snapshots/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar", + "https://maven.google.com/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar" + ], + "packages": [ + "com.google.protobuf", + "com.google.protobuf.compiler" + ], + "sha256": "1b78b4a76a71512debfdff8f8fc5aef6bfd459f65758fecf7aff245e6e6301e4", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar" + }, + { + "coord": "com.google.re2j:re2j:1.6", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://packages.confluent.io/maven/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://jitpack.io/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://repo1.maven.org/maven2/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://repository.apache.org/snapshots/com/google/re2j/re2j/1.6/re2j-1.6.jar", + "https://maven.google.com/com/google/re2j/re2j/1.6/re2j-1.6.jar" + ], + "packages": [ + "com.google.re2j" + ], + "sha256": "c8b5c3472d4db594a865b2e47f835d07fb8b1415eeba559dccfb0a6945f033cd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/google/re2j/re2j/1.6/re2j-1.6.jar" + }, + { + "coord": "com.ibm.jsonata4java:JSONata4Java:2.2.5", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "com.google.code.gson:gson:2.10", + "org.antlr:antlr4-runtime:4.11.1", + "org.apache.commons:commons-lang3:3.12.0", + "org.apache.commons:commons-text:1.10.0", + "org.codehaus.woodstox:stax2-api:4.2.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.14.1", + "com.fasterxml.woodstox:woodstox-core:6.4.0", + "com.google.code.gson:gson:2.10", + "org.antlr:antlr4-runtime:4.11.1", + "org.apache.commons:commons-text:1.10.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://packages.confluent.io/maven/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://jitpack.io/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://repo1.maven.org/maven2/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://repository.apache.org/snapshots/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar", + "https://maven.google.com/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar" + ], + "packages": [ + "com.api.jsonata4java", + "com.api.jsonata4java.expressions", + "com.api.jsonata4java.expressions.functions", + "com.api.jsonata4java.expressions.generated", + "com.api.jsonata4java.expressions.path", + "com.api.jsonata4java.expressions.path.generated", + "com.api.jsonata4java.expressions.utils", + "com.api.jsonata4java.issues", + "com.api.jsonata4java.testerui" + ], + "sha256": "9cd95e532ca4085e86a45890c3b8e63a9c25335c9dca5f91270e24ce960e9cb8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/ibm/jsonata4java/JSONata4Java/2.2.5/JSONata4Java-2.2.5.jar" + }, + { + "coord": "com.kjetland:mbknor-jackson-jsonschema_2.13:1.0.39", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "io.github.classgraph:classgraph:4.8.21", + "javax.validation:validation-api:2.0.1.Final", + "org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.0", + "org.scala-lang:scala-library:2.13.10", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "io.github.classgraph:classgraph:4.8.21", + "javax.validation:validation-api:2.0.1.Final", + "org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.0", + "org.scala-lang:scala-library:2.13.10", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://packages.confluent.io/maven/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://jitpack.io/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://repo1.maven.org/maven2/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://repository.apache.org/snapshots/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar", + "https://maven.google.com/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar" + ], + "packages": [ + "com.kjetland.jackson.jsonSchema", + "com.kjetland.jackson.jsonSchema.annotations" + ], + "sha256": "f1d0cb875bcb398d10158ae68f962ea83499991445125779b8b999b6af969cd1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/kjetland/mbknor-jackson-jsonschema_2.13/1.0.39/mbknor-jackson-jsonschema_2.13-1.0.39.jar" + }, + { + "coord": "com.microsoft.azure:msal4j-persistence-extension:1.1.0", + "dependencies": [ + "com.microsoft.azure:msal4j:1.13.3", + "net.java.dev.jna:jna-platform:5.6.0", + "net.java.dev.jna:jna:5.6.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.microsoft.azure:msal4j:1.13.3", + "net.java.dev.jna:jna-platform:5.6.0", + "net.java.dev.jna:jna:5.6.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://packages.confluent.io/maven/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://jitpack.io/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://repo1.maven.org/maven2/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://repository.apache.org/snapshots/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar", + "https://maven.google.com/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar" + ], + "packages": [ + "com.microsoft.aad.msal4jextensions", + "com.microsoft.aad.msal4jextensions.persistence", + "com.microsoft.aad.msal4jextensions.persistence.linux", + "com.microsoft.aad.msal4jextensions.persistence.mac" + ], + "sha256": "fedf58b0f8e55a9ff06c8e197cf9c9c74417b894960316526c5452728f3d46d3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/microsoft/azure/msal4j-persistence-extension/1.1.0/msal4j-persistence-extension-1.1.0.jar" + }, + { + "coord": "com.microsoft.azure:msal4j:1.13.3", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.github.stephenc.jcip:jcip-annotations:1.0-1", + "com.nimbusds:content-type:2.2", + "com.nimbusds:lang-tag:1.6", + "com.nimbusds:nimbus-jose-jwt:9.22", + "com.nimbusds:oauth2-oidc-sdk:9.35", + "net.minidev:accessors-smart:2.4.8", + "net.minidev:json-smart:2.4.8", + "org.ow2.asm:asm:9.3", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.nimbusds:oauth2-oidc-sdk:9.35", + "net.minidev:json-smart:2.4.8", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://packages.confluent.io/maven/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://jitpack.io/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://repo1.maven.org/maven2/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://repository.apache.org/snapshots/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar", + "https://maven.google.com/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar" + ], + "packages": [ + "com.microsoft.aad.msal4j" + ], + "sha256": "a1bf775b679f2113b520f59166833867638e5d085565e0feeb8ae3adc14983cf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/microsoft/azure/msal4j/1.13.3/msal4j-1.13.3.jar" + }, + { + "coord": "com.nimbusds:content-type:2.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://packages.confluent.io/maven/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://jitpack.io/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://repo1.maven.org/maven2/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://repository.apache.org/snapshots/com/nimbusds/content-type/2.2/content-type-2.2.jar", + "https://maven.google.com/com/nimbusds/content-type/2.2/content-type-2.2.jar" + ], + "packages": [ + "com.nimbusds.common.contenttype" + ], + "sha256": "730f1816196145e88275093c147f2e6da3c3e541207acd3503a1b06129b9bea9", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/content-type/2.2/content-type-2.2.jar" + }, + { + "coord": "com.nimbusds:lang-tag:1.6", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://packages.confluent.io/maven/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://jitpack.io/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://repo1.maven.org/maven2/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://repository.apache.org/snapshots/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar", + "https://maven.google.com/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar" + ], + "packages": [ + "com.nimbusds.langtag" + ], + "sha256": "409d056d9e5f566ac267f980e82027257dd864731abde7af8eba1f65213fbf4c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/lang-tag/1.6/lang-tag-1.6.jar" + }, + { + "coord": "com.nimbusds:nimbus-jose-jwt:9.22", + "dependencies": [ + "com.github.stephenc.jcip:jcip-annotations:1.0-1" + ], + "directDependencies": [ + "com.github.stephenc.jcip:jcip-annotations:1.0-1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://packages.confluent.io/maven/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://jitpack.io/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://repo1.maven.org/maven2/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://repository.apache.org/snapshots/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar", + "https://maven.google.com/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar" + ], + "packages": [ + "com.nimbusds.jose", + "com.nimbusds.jose.crypto", + "com.nimbusds.jose.crypto.bc", + "com.nimbusds.jose.crypto.factories", + "com.nimbusds.jose.crypto.impl", + "com.nimbusds.jose.crypto.opts", + "com.nimbusds.jose.crypto.utils", + "com.nimbusds.jose.jca", + "com.nimbusds.jose.jwk", + "com.nimbusds.jose.jwk.gen", + "com.nimbusds.jose.jwk.source", + "com.nimbusds.jose.mint", + "com.nimbusds.jose.proc", + "com.nimbusds.jose.produce", + "com.nimbusds.jose.shaded.asm", + "com.nimbusds.jose.shaded.asm.ex", + "com.nimbusds.jose.shaded.json", + "com.nimbusds.jose.shaded.json.annotate", + "com.nimbusds.jose.shaded.json.parser", + "com.nimbusds.jose.shaded.json.reader", + "com.nimbusds.jose.shaded.json.writer", + "com.nimbusds.jose.shaded.ow2asm", + "com.nimbusds.jose.shaded.ow2asm.signature", + "com.nimbusds.jose.util", + "com.nimbusds.jwt", + "com.nimbusds.jwt.proc", + "com.nimbusds.jwt.util" + ], + "sha256": "f7c80eb70d5163e13452f76e85d4e4782e4ae2d8dc46fec3165d63a88f2c0799", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/nimbus-jose-jwt/9.22/nimbus-jose-jwt-9.22.jar" + }, + { + "coord": "com.nimbusds:oauth2-oidc-sdk:9.35", + "dependencies": [ + "com.github.stephenc.jcip:jcip-annotations:1.0-1", + "com.nimbusds:content-type:2.2", + "com.nimbusds:lang-tag:1.6", + "com.nimbusds:nimbus-jose-jwt:9.22", + "net.minidev:json-smart:2.4.8" + ], + "directDependencies": [ + "com.github.stephenc.jcip:jcip-annotations:1.0-1", + "com.nimbusds:content-type:2.2", + "com.nimbusds:lang-tag:1.6", + "com.nimbusds:nimbus-jose-jwt:9.22", + "net.minidev:json-smart:2.4.8" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://packages.confluent.io/maven/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://jitpack.io/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://repo1.maven.org/maven2/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://repository.apache.org/snapshots/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar", + "https://maven.google.com/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar" + ], + "packages": [ + "com.nimbusds.oauth2.sdk", + "com.nimbusds.oauth2.sdk.as", + "com.nimbusds.oauth2.sdk.assertions", + "com.nimbusds.oauth2.sdk.assertions.jwt", + "com.nimbusds.oauth2.sdk.assertions.saml2", + "com.nimbusds.oauth2.sdk.auth", + "com.nimbusds.oauth2.sdk.auth.verifier", + "com.nimbusds.oauth2.sdk.ciba", + "com.nimbusds.oauth2.sdk.client", + "com.nimbusds.oauth2.sdk.device", + "com.nimbusds.oauth2.sdk.dpop", + "com.nimbusds.oauth2.sdk.dpop.verifiers", + "com.nimbusds.oauth2.sdk.http", + "com.nimbusds.oauth2.sdk.id", + "com.nimbusds.oauth2.sdk.jarm", + "com.nimbusds.oauth2.sdk.jose", + "com.nimbusds.oauth2.sdk.pkce", + "com.nimbusds.oauth2.sdk.token", + "com.nimbusds.oauth2.sdk.tokenexchange", + "com.nimbusds.oauth2.sdk.util", + "com.nimbusds.oauth2.sdk.util.date", + "com.nimbusds.oauth2.sdk.util.singleuse", + "com.nimbusds.oauth2.sdk.util.tls", + "com.nimbusds.openid.connect.sdk", + "com.nimbusds.openid.connect.sdk.assurance", + "com.nimbusds.openid.connect.sdk.assurance.claims", + "com.nimbusds.openid.connect.sdk.assurance.evidences", + "com.nimbusds.openid.connect.sdk.assurance.evidences.attachment", + "com.nimbusds.openid.connect.sdk.assurance.request", + "com.nimbusds.openid.connect.sdk.claims", + "com.nimbusds.openid.connect.sdk.federation.api", + "com.nimbusds.openid.connect.sdk.federation.config", + "com.nimbusds.openid.connect.sdk.federation.entities", + "com.nimbusds.openid.connect.sdk.federation.policy", + "com.nimbusds.openid.connect.sdk.federation.policy.factories", + "com.nimbusds.openid.connect.sdk.federation.policy.language", + "com.nimbusds.openid.connect.sdk.federation.policy.operations", + "com.nimbusds.openid.connect.sdk.federation.registration", + "com.nimbusds.openid.connect.sdk.federation.trust", + "com.nimbusds.openid.connect.sdk.federation.trust.constraints", + "com.nimbusds.openid.connect.sdk.federation.trust.marks", + "com.nimbusds.openid.connect.sdk.id", + "com.nimbusds.openid.connect.sdk.op", + "com.nimbusds.openid.connect.sdk.rp", + "com.nimbusds.openid.connect.sdk.rp.statement", + "com.nimbusds.openid.connect.sdk.token", + "com.nimbusds.openid.connect.sdk.validators", + "com.nimbusds.secevent.sdk.claims" + ], + "sha256": "95a5b7a5054fc281061b81d2354d0b7b66a862183e7d85d75a82c5ddb8867293", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/nimbusds/oauth2-oidc-sdk/9.35/oauth2-oidc-sdk-9.35.jar" + }, + { + "coord": "com.squareup.okio:okio-jvm:3.0.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://packages.confluent.io/maven/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://jitpack.io/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://repo1.maven.org/maven2/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://repository.apache.org/snapshots/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar", + "https://maven.google.com/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar" + ], + "packages": [ + "okio", + "okio.internal" + ], + "sha256": "be64a0cc1f28ea9cd5c970dd7e7557af72c808d738c495b397bf897c9921e907", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar" + }, + { + "coord": "com.squareup.okio:okio:3.0.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://packages.confluent.io/maven/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://jitpack.io/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://repo1.maven.org/maven2/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://repository.apache.org/snapshots/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar", + "https://maven.google.com/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar" + ], + "packages": [], + "sha256": "dcbe63ed43b2c90c325e9e6a0863e2e7605980bff5e728c6de1088be5574979e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/okio/okio/3.0.0/okio-3.0.0.jar" + }, + { + "coord": "com.squareup.wire:wire-runtime-jvm:4.4.3", + "dependencies": [ + "com.squareup.okio:okio:3.0.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "com.squareup.okio:okio:3.0.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://packages.confluent.io/maven/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://jitpack.io/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://repo1.maven.org/maven2/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://repository.apache.org/snapshots/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar", + "https://maven.google.com/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar" + ], + "packages": [ + "com.squareup.wire", + "com.squareup.wire.internal" + ], + "sha256": "d3c0cc527e7a3dcaf59e3ae41e382dd0f62dfef3043911a7768e3787dc0b6335", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/wire/wire-runtime-jvm/4.4.3/wire-runtime-jvm-4.4.3.jar" + }, + { + "coord": "com.squareup.wire:wire-schema-jvm:4.4.3", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "com.squareup.okio:okio:3.0.0", + "com.squareup.wire:wire-runtime-jvm:4.4.3", + "com.squareup:javapoet:1.13.0", + "com.squareup:kotlinpoet:1.12.0", + "org.checkerframework:checker-qual:3.12.0", + "org.jetbrains.kotlin:kotlin-reflect:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "com.google.guava:guava:31.1-jre", + "com.squareup.okio:okio:3.0.0", + "com.squareup.wire:wire-runtime-jvm:4.4.3", + "com.squareup:javapoet:1.13.0", + "com.squareup:kotlinpoet:1.12.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://packages.confluent.io/maven/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://jitpack.io/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://repo1.maven.org/maven2/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://repository.apache.org/snapshots/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar", + "https://maven.google.com/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar" + ], + "packages": [ + "com.squareup.wire", + "com.squareup.wire.schema", + "com.squareup.wire.schema.internal", + "com.squareup.wire.schema.internal.parser" + ], + "sha256": "8c1c0cf41ca426ac018416326b6b2d938b2545a562a661c47ac468239177ce69", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/wire/wire-schema-jvm/4.4.3/wire-schema-jvm-4.4.3.jar" + }, + { + "coord": "com.squareup:javapoet:1.13.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://packages.confluent.io/maven/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://jitpack.io/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://repository.apache.org/snapshots/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar", + "https://maven.google.com/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar" + ], + "packages": [ + "com.squareup.javapoet" + ], + "sha256": "4c7517e848a71b36d069d12bb3bf46a70fd4cda3105d822b0ed2e19c00b69291", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar" + }, + { + "coord": "com.squareup:kotlinpoet:1.12.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-reflect:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-reflect:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://packages.confluent.io/maven/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://jitpack.io/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://repo1.maven.org/maven2/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://repository.apache.org/snapshots/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar", + "https://maven.google.com/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar" + ], + "packages": [ + "com.squareup.kotlinpoet", + "com.squareup.kotlinpoet.jvm", + "com.squareup.kotlinpoet.tags" + ], + "sha256": "8e3f7849cdfb5376c87aca4cd40a6b96fbb02ddf060b6211099f5d15211171ce", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/kotlinpoet/1.12.0/kotlinpoet-1.12.0.jar" + }, + { + "coord": "com.squareup:protoparser:4.0.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://packages.confluent.io/maven/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://jitpack.io/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://repo1.maven.org/maven2/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://repository.apache.org/snapshots/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar", + "https://maven.google.com/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar" + ], + "packages": [ + "com.squareup.protoparser" + ], + "sha256": "3fb82ea4d0b8c9cd4858c8e42d0355028b696ce99c4c8b89568f8a74d63f9855", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/squareup/protoparser/4.0.3/protoparser-4.0.3.jar" + }, + { + "coord": "com.thoughtworks.paranamer:paranamer:2.8", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://packages.confluent.io/maven/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://jitpack.io/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://repo1.maven.org/maven2/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://repository.apache.org/snapshots/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar", + "https://maven.google.com/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar" + ], + "packages": [ + "com.thoughtworks.paranamer" + ], + "sha256": "688cb118a6021d819138e855208c956031688be4b47a24bb615becc63acedf07", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar" + }, + { + "coord": "com.typesafe.scala-logging:scala-logging_2.13:3.9.4", + "dependencies": [ + "org.scala-lang:scala-library:2.13.10", + "org.scala-lang:scala-reflect:2.13.10", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.10", + "org.scala-lang:scala-reflect:2.13.10", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://packages.confluent.io/maven/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://jitpack.io/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://repo1.maven.org/maven2/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://repository.apache.org/snapshots/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar", + "https://maven.google.com/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar" + ], + "packages": [ + "com.typesafe.scalalogging" + ], + "sha256": "4366f59b97c6ffc617787d81e494b62d9aecf424dafb1ce9d39d855c5171b18a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/typesafe/scala-logging/scala-logging_2.13/3.9.4/scala-logging_2.13-3.9.4.jar" + }, + { + "coord": "com.yammer.metrics:metrics-core:2.2.0", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://packages.confluent.io/maven/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://jitpack.io/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://repo1.maven.org/maven2/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://repository.apache.org/snapshots/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar", + "https://maven.google.com/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar" + ], + "packages": [ + "com.yammer.metrics", + "com.yammer.metrics.core", + "com.yammer.metrics.reporting", + "com.yammer.metrics.stats", + "com.yammer.metrics.util" + ], + "sha256": "6b7a14a6f34c10f8683f7b5e2f39df0f07b58c7dff0e468ebbc713905c46979c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar" + }, + { + "coord": "commons-beanutils:commons-beanutils:1.9.4", + "dependencies": [ + "commons-collections:commons-collections:3.2.2", + "commons-logging:commons-logging:1.2" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "commons-logging:commons-logging:1.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://packages.confluent.io/maven/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://jitpack.io/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://repository.apache.org/snapshots/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar", + "https://maven.google.com/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar" + ], + "packages": [ + "org.apache.commons.beanutils", + "org.apache.commons.beanutils.converters", + "org.apache.commons.beanutils.expression", + "org.apache.commons.beanutils.locale", + "org.apache.commons.beanutils.locale.converters" + ], + "sha256": "7d938c81789028045c08c065e94be75fc280527620d5bd62b519d5838532368a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar" + }, + { + "coord": "commons-cli:commons-cli:1.4", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://packages.confluent.io/maven/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://jitpack.io/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://repo1.maven.org/maven2/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://repository.apache.org/snapshots/commons-cli/commons-cli/1.4/commons-cli-1.4.jar", + "https://maven.google.com/commons-cli/commons-cli/1.4/commons-cli-1.4.jar" + ], + "packages": [ + "org.apache.commons.cli" + ], + "sha256": "fd3c7c9545a9cdb2051d1f9155c4f76b1e4ac5a57304404a6eedb578ffba7328", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-cli/commons-cli/1.4/commons-cli-1.4.jar" + }, + { + "coord": "commons-codec:commons-codec:1.15", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://packages.confluent.io/maven/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://jitpack.io/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://repository.apache.org/snapshots/commons-codec/commons-codec/1.15/commons-codec-1.15.jar", + "https://maven.google.com/commons-codec/commons-codec/1.15/commons-codec-1.15.jar" + ], + "packages": [ + "org.apache.commons.codec", + "org.apache.commons.codec.binary", + "org.apache.commons.codec.cli", + "org.apache.commons.codec.digest", + "org.apache.commons.codec.language", + "org.apache.commons.codec.language.bm", + "org.apache.commons.codec.net" + ], + "sha256": "b3e9f6d63a790109bf0d056611fbed1cf69055826defeb9894a71369d246ed63", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-codec/commons-codec/1.15/commons-codec-1.15.jar" + }, + { + "coord": "commons-collections:commons-collections:3.2.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://packages.confluent.io/maven/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://jitpack.io/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://repository.apache.org/snapshots/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar", + "https://maven.google.com/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" + ], + "packages": [ + "org.apache.commons.collections", + "org.apache.commons.collections.bag", + "org.apache.commons.collections.bidimap", + "org.apache.commons.collections.buffer", + "org.apache.commons.collections.collection", + "org.apache.commons.collections.comparators", + "org.apache.commons.collections.functors", + "org.apache.commons.collections.iterators", + "org.apache.commons.collections.keyvalue", + "org.apache.commons.collections.list", + "org.apache.commons.collections.map", + "org.apache.commons.collections.set" + ], + "sha256": "eeeae917917144a68a741d4c0dff66aa5c5c5fd85593ff217bced3fc8ca783b8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" + }, + { + "coord": "commons-digester:commons-digester:2.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "commons-beanutils:commons-beanutils", + "commons-logging:commons-logging", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://packages.confluent.io/maven/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://jitpack.io/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://repo1.maven.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://repository.apache.org/snapshots/commons-digester/commons-digester/2.1/commons-digester-2.1.jar", + "https://maven.google.com/commons-digester/commons-digester/2.1/commons-digester-2.1.jar" + ], + "packages": [ + "org.apache.commons.digester", + "org.apache.commons.digester.annotations", + "org.apache.commons.digester.annotations.handlers", + "org.apache.commons.digester.annotations.internal", + "org.apache.commons.digester.annotations.providers", + "org.apache.commons.digester.annotations.reflect", + "org.apache.commons.digester.annotations.rules", + "org.apache.commons.digester.annotations.spi", + "org.apache.commons.digester.annotations.utils", + "org.apache.commons.digester.parser", + "org.apache.commons.digester.plugins", + "org.apache.commons.digester.plugins.strategies", + "org.apache.commons.digester.substitution", + "org.apache.commons.digester.xmlrules" + ], + "sha256": "e0b2b980a84fc6533c5ce291f1917b32c507f62bcad64198fff44368c2196a3d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-digester/commons-digester/2.1/commons-digester-2.1.jar" + }, + { + "coord": "commons-io:commons-io:2.4", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-io/commons-io/2.4/commons-io-2.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://packages.confluent.io/maven/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://jitpack.io/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://repo1.maven.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://repository.apache.org/snapshots/commons-io/commons-io/2.4/commons-io-2.4.jar", + "https://maven.google.com/commons-io/commons-io/2.4/commons-io-2.4.jar" + ], + "packages": [ + "org.apache.commons.io", + "org.apache.commons.io.comparator", + "org.apache.commons.io.filefilter", + "org.apache.commons.io.input", + "org.apache.commons.io.monitor", + "org.apache.commons.io.output" + ], + "sha256": "cc6a41dc3eaacc9e440a6bd0d2890b20d36b4ee408fe2d67122f328bb6e01581", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-io/commons-io/2.4/commons-io-2.4.jar" + }, + { + "coord": "commons-lang:commons-lang:2.6", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://packages.confluent.io/maven/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://jitpack.io/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://repo1.maven.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://repository.apache.org/snapshots/commons-lang/commons-lang/2.6/commons-lang-2.6.jar", + "https://maven.google.com/commons-lang/commons-lang/2.6/commons-lang-2.6.jar" + ], + "packages": [ + "org.apache.commons.lang", + "org.apache.commons.lang.builder", + "org.apache.commons.lang.enum", + "org.apache.commons.lang.enums", + "org.apache.commons.lang.exception", + "org.apache.commons.lang.math", + "org.apache.commons.lang.mutable", + "org.apache.commons.lang.reflect", + "org.apache.commons.lang.text", + "org.apache.commons.lang.time" + ], + "sha256": "50f11b09f877c294d56f24463f47d28f929cf5044f648661c0f0cfbae9a2f49c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-lang/commons-lang/2.6/commons-lang-2.6.jar" + }, + { + "coord": "commons-logging:commons-logging:1.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://packages.confluent.io/maven/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://jitpack.io/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://repository.apache.org/snapshots/commons-logging/commons-logging/1.2/commons-logging-1.2.jar", + "https://maven.google.com/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" + ], + "packages": [ + "org.apache.commons.logging", + "org.apache.commons.logging.impl" + ], + "sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636", + "url": "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" + }, + { + "coord": "commons-pool:commons-pool:1.6", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://packages.confluent.io/maven/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://jitpack.io/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://repo1.maven.org/maven2/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://repository.apache.org/snapshots/commons-pool/commons-pool/1.6/commons-pool-1.6.jar", + "https://maven.google.com/commons-pool/commons-pool/1.6/commons-pool-1.6.jar" + ], + "packages": [ + "org.apache.commons.pool", + "org.apache.commons.pool.impl" + ], + "sha256": "46c42b4a38dc6b2db53a9ee5c92c63db103665d56694e2cfce2c95d51a6860cc", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-pool/commons-pool/1.6/commons-pool-1.6.jar" + }, + { + "coord": "commons-validator:commons-validator:1.7", + "dependencies": [ + "commons-beanutils:commons-beanutils:1.9.4", + "commons-collections:commons-collections:3.2.2", + "commons-digester:commons-digester:2.1", + "commons-logging:commons-logging:1.2" + ], + "directDependencies": [ + "commons-beanutils:commons-beanutils:1.9.4", + "commons-collections:commons-collections:3.2.2", + "commons-digester:commons-digester:2.1", + "commons-logging:commons-logging:1.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://packages.confluent.io/maven/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://jitpack.io/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://oss.sonatype.org/content/repositories/snapshots/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://repository.apache.org/snapshots/commons-validator/commons-validator/1.7/commons-validator-1.7.jar", + "https://maven.google.com/commons-validator/commons-validator/1.7/commons-validator-1.7.jar" + ], + "packages": [ + "org.apache.commons.validator", + "org.apache.commons.validator.routines", + "org.apache.commons.validator.routines.checkdigit", + "org.apache.commons.validator.util" + ], + "sha256": "4d74f4ce4fb68b2617edad086df6defdf9338467d2377d2c62e69038e1c4f02f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/commons-validator/commons-validator/1.7/commons-validator-1.7.jar" + }, + { + "coord": "io.confluent:common-config:7.5.0-355", + "dependencies": [ + "io.confluent:common-utils:7.5.0-620", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "io.confluent:common-utils:7.5.0-620", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://packages.confluent.io/maven/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://jitpack.io/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://repo1.maven.org/maven2/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://repository.apache.org/snapshots/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar", + "https://maven.google.com/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar" + ], + "packages": [ + "io.confluent.common.config", + "io.confluent.common.config.types" + ], + "sha256": "80447816892d3bd8fbf42574e7fb637cdfc356f500b3df9ac39ef953812d5585", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/common-config/7.5.0-355/common-config-7.5.0-355.jar" + }, + { + "coord": "io.confluent:common-utils:7.5.0-620", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://packages.confluent.io/maven/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://jitpack.io/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://repo1.maven.org/maven2/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://repository.apache.org/snapshots/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar", + "https://maven.google.com/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar" + ], + "packages": [ + "io.confluent.common", + "io.confluent.common.utils" + ], + "sha256": "b5f981f7ff281e211c4b4bfa34a2233f7ad30dad381d1eec5e4a9c7530dde401", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/common-utils/7.5.0-620/common-utils-7.5.0-620.jar" + }, + { + "coord": "io.confluent:logredactor-metrics:1.0.11", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://packages.confluent.io/maven/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://jitpack.io/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://repo1.maven.org/maven2/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://repository.apache.org/snapshots/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar", + "https://maven.google.com/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar" + ], + "packages": [ + "io.confluent.log4j.redactor" + ], + "sha256": "50e050c892861cce94930d81fd6cfe48acf5e3038cc2479b293559d5f448b7a2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/logredactor-metrics/1.0.11/logredactor-metrics-1.0.11.jar" + }, + { + "coord": "io.confluent:logredactor:1.0.11", + "dependencies": [ + "com.eclipsesource.minimal-json:minimal-json:0.9.5", + "com.google.re2j:re2j:1.6", + "io.confluent:logredactor-metrics:1.0.11" + ], + "directDependencies": [ + "com.eclipsesource.minimal-json:minimal-json:0.9.5", + "com.google.re2j:re2j:1.6", + "io.confluent:logredactor-metrics:1.0.11" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://packages.confluent.io/maven/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://jitpack.io/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://repo1.maven.org/maven2/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://repository.apache.org/snapshots/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar", + "https://maven.google.com/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar" + ], + "packages": [ + "io.confluent.log4j.redactor", + "io.confluent.log4j2.redactor", + "io.confluent.logredactor.internal" + ], + "sha256": "d878b66b9ddc9bef509f0a5f273643a70ef0c325e304f5107851944c316aef4d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/logredactor/1.0.11/logredactor-1.0.11.jar" + }, + { + "coord": "io.confluent:rest-utils:7.5.0-344", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.14.2", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.14.2", + "com.fasterxml:classmate:1.5.1", + "com.github.luben:zstd-jni:1.5.5-1", + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "io.confluent:common-utils:7.5.0-620", + "jakarta.activation:jakarta.activation-api:1.2.2", + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.el:jakarta.el-api:3.0.3", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3", + "javax.activation:activation:1.1.1", + "javax.annotation:javax.annotation-api:1.3.2", + "javax.servlet:javax.servlet-api:3.1.0", + "javax.websocket:javax.websocket-api:1.0", + "javax.websocket:javax.websocket-client-api:1.0", + "javax.xml.bind:jaxb-api:2.3.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.checkerframework:checker-qual:3.12.0", + "org.conscrypt:conscrypt-openjdk-uber:2.5.2", + "org.eclipse.jetty.http2:http2-common:9.4.48.v20220622", + "org.eclipse.jetty.http2:http2-hpack:9.4.48.v20220622", + "org.eclipse.jetty.http2:http2-server:9.4.48.v20220622", + "org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.48.v20220622", + "org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-alpn-conscrypt-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-alpn-java-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-annotations:9.4.48.v20220622", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-continuation:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jaas:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jmx:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jndi:9.4.48.v20220622", + "org.eclipse.jetty:jetty-plus:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlets:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "org.eclipse.jetty:jetty-xml:9.4.48.v20220622", + "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:hk2-api:2.6.1", + "org.glassfish.hk2:hk2-locator:2.6.1", + "org.glassfish.hk2:hk2-utils:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.containers:jersey-container-servlet-core:2.36", + "org.glassfish.jersey.containers:jersey-container-servlet:2.36", + "org.glassfish.jersey.core:jersey-client:2.36", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36", + "org.glassfish.jersey.ext:jersey-bean-validation:2.36", + "org.glassfish.jersey.inject:jersey-hk2:2.36", + "org.glassfish:jakarta.el:3.0.4", + "org.hibernate.validator:hibernate-validator:6.2.0.Final", + "org.javassist:javassist:3.27.0-GA", + "org.jboss.logging:jboss-logging:3.4.1.Final", + "org.lz4:lz4-java:1.8.0", + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-commons:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.14.2", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "com.google.guava:guava:31.1-jre", + "io.confluent:common-utils:7.5.0-620", + "javax.activation:activation:1.1.1", + "javax.xml.bind:jaxb-api:2.3.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.conscrypt:conscrypt-openjdk-uber:2.5.2", + "org.eclipse.jetty.http2:http2-server:9.4.48.v20220622", + "org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.48.v20220622", + "org.eclipse.jetty:jetty-alpn-conscrypt-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-alpn-java-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jaas:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jmx:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlets:9.4.48.v20220622", + "org.glassfish.jersey.containers:jersey-container-servlet:2.36", + "org.glassfish.jersey.ext:jersey-bean-validation:2.36", + "org.glassfish.jersey.inject:jersey-hk2:2.36", + "org.hibernate.validator:hibernate-validator:6.2.0.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://packages.confluent.io/maven/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://jitpack.io/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://repo1.maven.org/maven2/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://repository.apache.org/snapshots/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar", + "https://maven.google.com/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar" + ], + "packages": [ + "io.confluent.rest", + "io.confluent.rest.annotations", + "io.confluent.rest.auth", + "io.confluent.rest.entities", + "io.confluent.rest.errorhandlers", + "io.confluent.rest.exceptions", + "io.confluent.rest.extension", + "io.confluent.rest.filters", + "io.confluent.rest.metrics", + "io.confluent.rest.validation" + ], + "sha256": "3f4833f339a8b169e957e9b201f96d04bd995e38b5c9cd239786d116efb31af0", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/confluent/rest-utils/7.5.0-344/rest-utils-7.5.0-344.jar" + }, + { + "coord": "io.dropwizard.metrics:metrics-core:4.1.12.1", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://packages.confluent.io/maven/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://jitpack.io/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://repo1.maven.org/maven2/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://repository.apache.org/snapshots/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar", + "https://maven.google.com/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar" + ], + "packages": [ + "com.codahale.metrics" + ], + "sha256": "cec34936faa625039f4e46123eccaa10a9eb9d9a40c6075830cd81330e259cf9", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/dropwizard/metrics/metrics-core/4.1.12.1/metrics-core-4.1.12.1.jar" + }, + { + "coord": "io.github.classgraph:classgraph:4.8.21", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://packages.confluent.io/maven/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://jitpack.io/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://repo1.maven.org/maven2/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://repository.apache.org/snapshots/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar", + "https://maven.google.com/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar" + ], + "packages": [ + "io.github.classgraph", + "nonapi.io.github.classgraph", + "nonapi.io.github.classgraph.classloaderhandler", + "nonapi.io.github.classgraph.classpath", + "nonapi.io.github.classgraph.concurrency", + "nonapi.io.github.classgraph.fastzipfilereader", + "nonapi.io.github.classgraph.json", + "nonapi.io.github.classgraph.recycler", + "nonapi.io.github.classgraph.types", + "nonapi.io.github.classgraph.utils" + ], + "sha256": "4cdfbb73c4c3e79b6707ec4f7520adb5d23c27baecdc39cfb145ff529ce5c151", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/github/classgraph/classgraph/4.8.21/classgraph-4.8.21.jar" + }, + { + "coord": "io.grpc:grpc-context:1.27.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://packages.confluent.io/maven/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://jitpack.io/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://repository.apache.org/snapshots/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar", + "https://maven.google.com/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar" + ], + "packages": [ + "io.grpc" + ], + "sha256": "bcbf9055dff453fd6508bd7cca2a0aa2d5f059a9c94beed1f5fda1dc015607b8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar" + }, + { + "coord": "io.kcache:kcache:4.0.11", + "dependencies": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.errorprone:error_prone_annotations:2.16", + "com.google.guava:failureaccess:1.0.1", + "com.google.guava:guava:31.1-jre", + "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava", + "com.google.j2objc:j2objc-annotations:1.3", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.checkerframework:checker-qual:3.12.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.google.guava:guava:31.1-jre", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://packages.confluent.io/maven/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://jitpack.io/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://repo1.maven.org/maven2/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://repository.apache.org/snapshots/io/kcache/kcache/4.0.11/kcache-4.0.11.jar", + "https://maven.google.com/io/kcache/kcache/4.0.11/kcache-4.0.11.jar" + ], + "packages": [ + "io.kcache", + "io.kcache.exceptions", + "io.kcache.utils" + ], + "sha256": "eb94aa3016dfef392b1e65dcd80e6b1b8b6b489c54426ea853cc37edb4b77dbc", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/kcache/kcache/4.0.11/kcache-4.0.11.jar" + }, + { + "coord": "io.netty:netty-buffer:4.1.86.Final", + "dependencies": [ + "io.netty:netty-common:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-common:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.buffer", + "io.netty.buffer.search" + ], + "sha256": "e42e15f47c865266b1faa6e038ebfd7ddadcf9f4ae9e6617edd4881dbd4abe88", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-codec-dns:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "commons-logging:commons-logging", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.codec.dns" + ], + "sha256": "a6d5247960b1a81604506a752c997e8817c6a73c64a0c30fc8e72a1afb1e1502", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-dns/4.1.86.Final/netty-codec-dns-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-codec-http2:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.codec.http2" + ], + "sha256": "e8e8e28e6ab6bb989aed904778922045f388cfb420bc1eb37abf4df8801db167", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-codec-http:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.codec.http", + "io.netty.handler.codec.http.cookie", + "io.netty.handler.codec.http.cors", + "io.netty.handler.codec.http.multipart", + "io.netty.handler.codec.http.websocketx", + "io.netty.handler.codec.http.websocketx.extensions", + "io.netty.handler.codec.http.websocketx.extensions.compression", + "io.netty.handler.codec.rtsp", + "io.netty.handler.codec.spdy" + ], + "sha256": "3f6ceb3112cfcf7b70545eb5111220ce57db54d593f23f64c38333bb22c40b84", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-codec-socks:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.codec.socks", + "io.netty.handler.codec.socksx", + "io.netty.handler.codec.socksx.v4", + "io.netty.handler.codec.socksx.v5" + ], + "sha256": "838a2f46678e84abb7ed766247d038cb85dfafc480ff8c2c5e42d91d99c5ff4d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec-socks/4.1.86.Final/netty-codec-socks-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-codec:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.codec", + "io.netty.handler.codec.base64", + "io.netty.handler.codec.bytes", + "io.netty.handler.codec.compression", + "io.netty.handler.codec.json", + "io.netty.handler.codec.marshalling", + "io.netty.handler.codec.protobuf", + "io.netty.handler.codec.serialization", + "io.netty.handler.codec.string", + "io.netty.handler.codec.xml" + ], + "sha256": "0456840b5c851dad6cab881cd1a9ad5d916db65d81048145df1d9a6d03325bea", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-common:4.1.86.Final", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.util", + "io.netty.util.collection", + "io.netty.util.concurrent", + "io.netty.util.internal", + "io.netty.util.internal.logging", + "io.netty.util.internal.shaded.org.jctools.queues", + "io.netty.util.internal.shaded.org.jctools.queues.atomic", + "io.netty.util.internal.shaded.org.jctools.util", + "io.netty.util.internal.svm" + ], + "sha256": "a35a3f16e7cd45c5d8529aa3e7702d4ef3b36213ea332db59744ea348fc2ae99", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-handler-proxy:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec-socks:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec-socks:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.proxy" + ], + "sha256": "b812fe7d72c84fbc84e53b4f26764d82f76b06a65f331f0fbd9543aa73e18f91", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-handler-proxy/4.1.86.Final/netty-handler-proxy-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-handler:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.handler.address", + "io.netty.handler.flow", + "io.netty.handler.flush", + "io.netty.handler.ipfilter", + "io.netty.handler.logging", + "io.netty.handler.pcap", + "io.netty.handler.ssl", + "io.netty.handler.ssl.ocsp", + "io.netty.handler.ssl.util", + "io.netty.handler.stream", + "io.netty.handler.timeout", + "io.netty.handler.traffic" + ], + "sha256": "e69b42292929b278dc522e25177ddf7c54025484b55879f8227349adfbe1c04d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final" + ], + "exclusions": [ + "commons-logging:commons-logging", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.resolver.dns.macos" + ], + "sha256": "92f61256ed9b469d4cd8adf90afa59b40f311214ec5f65f3dfdaff59bd85b366", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns-classes-macos/4.1.86.Final/netty-resolver-dns-classes-macos-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final" + ], + "exclusions": [ + "commons-logging:commons-logging", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://jitpack.io/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar", + "https://maven.google.com/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar" + ], + "packages": [], + "sha256": "1ed4804785f35813ddf6e850eb7cdd5e5ccc270778082dd6bc598a2c2dd131fc", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns-native-macos/4.1.86.Final/netty-resolver-dns-native-macos-4.1.86.Final-osx-x86_64.jar" + }, + { + "coord": "io.netty:netty-resolver-dns:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "commons-logging:commons-logging", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.resolver.dns" + ], + "sha256": "49b05d90233abb62ce8ffeb5147db54719be1ccec530f70e4d62b1f3727c1285", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver-dns/4.1.86.Final/netty-resolver-dns-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-resolver:4.1.86.Final", + "dependencies": [ + "io.netty:netty-common:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-common:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.resolver" + ], + "sha256": "7628a1309d7f2443dc41d8923a7f269e2981b9616f80a999eb7264ae6bcbfdba", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-tcnative-boringssl-static:2.0.54.Final", + "dependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "directDependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://jitpack.io/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar", + "https://maven.google.com/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar" + ], + "packages": [], + "sha256": "1b9aeee2a775314eb972f97e30e93dcc1472c09f0e4a43c3fe7afa922e669dea", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final.jar" + }, + { + "coord": "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "dependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "directDependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://jitpack.io/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar", + "https://maven.google.com/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar" + ], + "packages": [], + "sha256": "4cc801f39a8fa71769fd4913fb98890e27a3fe16f3f9457ebba45cc30bdaed5e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-aarch_64.jar" + }, + { + "coord": "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "dependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "directDependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://jitpack.io/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar", + "https://maven.google.com/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar" + ], + "packages": [], + "sha256": "41f50bb80e9b6d6716f1ac95087384d2ae1f2062959651a2178c007e513ed541", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-linux-x86_64.jar" + }, + { + "coord": "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "dependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "directDependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://jitpack.io/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar", + "https://maven.google.com/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar" + ], + "packages": [], + "sha256": "28d5554ef2d1a680e5f871704c7f97cddb6b391b6ed17659ef0d6d6e01df7869", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-aarch_64.jar" + }, + { + "coord": "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "dependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "directDependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://jitpack.io/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar", + "https://maven.google.com/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar" + ], + "packages": [], + "sha256": "49b6cdca6dade47ab29ce5317baf32c2671f56304b6e40074f7950718e4275fd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-osx-x86_64.jar" + }, + { + "coord": "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "dependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "directDependencies": [ + "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.54.Final", + "io.netty:netty-tcnative-classes:2.0.54.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://jitpack.io/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar", + "https://maven.google.com/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar" + ], + "packages": [], + "sha256": "7af3a38de275c58281e1f18593a523331db69890baabf5c5734d805dd1dddb71", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-boringssl-static/2.0.54.Final/netty-tcnative-boringssl-static-2.0.54.Final-windows-x86_64.jar" + }, + { + "coord": "io.netty:netty-tcnative-classes:2.0.54.Final", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "io.netty:netty-jni-util", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://jitpack.io/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar", + "https://maven.google.com/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar" + ], + "packages": [ + "io.netty.internal.tcnative" + ], + "sha256": "98977e279a66778e816f0ed25ea5b7d20b1cffc6469de73e5e3e9accda2aceb4", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-tcnative-classes/2.0.54.Final/netty-tcnative-classes-2.0.54.Final.jar" + }, + { + "coord": "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.channel.epoll" + ], + "sha256": "3cc7eb87d85d6b4bf3d596a172a92df09f8d746c2b283c85543c95795b51edda", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-classes-epoll/4.1.86.Final/netty-transport-classes-epoll-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-transport-classes-kqueue:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.channel.kqueue" + ], + "sha256": "8059837d5304e5d0cab6afa010d4c319dfe8444ca936df28031d2ed636b2ebab", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-classes-kqueue/4.1.86.Final/netty-transport-classes-kqueue-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-transport-native-epoll:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar" + ], + "packages": [], + "sha256": "bbbd9d367cb7371a34b39f75f4422d0a09667c72007dfb861e6cdd4b5b4a35cf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://jitpack.io/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar", + "https://maven.google.com/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar" + ], + "packages": [], + "sha256": "e1a5dd2e02e6d05b0d91409732a54f8cc827ff4b7042a7ffaf7464b1460ef858", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final-linux-x86_64.jar" + }, + { + "coord": "io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-kqueue:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport-classes-kqueue:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://jitpack.io/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar", + "https://maven.google.com/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar" + ], + "packages": [], + "sha256": "1a683858286cc300134b65c51dfcb3ba6f1848eb7e977c3ac1d161f064697b56", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-kqueue/4.1.86.Final/netty-transport-native-kqueue-4.1.86.Final-osx-x86_64.jar" + }, + { + "coord": "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.channel.unix" + ], + "sha256": "ec26d03a06565791d57e997f793677ee4d3fc47b290b7951898c2ecd0232f115", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar" + }, + { + "coord": "io.netty:netty-transport:4.1.86.Final", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final" + ], + "directDependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://packages.confluent.io/maven/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://jitpack.io/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://repository.apache.org/snapshots/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar", + "https://maven.google.com/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar" + ], + "packages": [ + "io.netty.bootstrap", + "io.netty.channel", + "io.netty.channel.embedded", + "io.netty.channel.group", + "io.netty.channel.internal", + "io.netty.channel.local", + "io.netty.channel.nio", + "io.netty.channel.oio", + "io.netty.channel.pool", + "io.netty.channel.socket", + "io.netty.channel.socket.nio", + "io.netty.channel.socket.oio" + ], + "sha256": "f6726dcd54e4922b46b3b4f4467b443a70a30eb08a62620c8fe502d8cb802c9f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar" + }, + { + "coord": "io.opencensus:opencensus-api:0.31.1", + "dependencies": [ + "io.grpc:grpc-context:1.27.2" + ], + "directDependencies": [ + "io.grpc:grpc-context:1.27.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://packages.confluent.io/maven/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://jitpack.io/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://repo1.maven.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://repository.apache.org/snapshots/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar", + "https://maven.google.com/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar" + ], + "packages": [ + "io.opencensus.common", + "io.opencensus.internal", + "io.opencensus.metrics", + "io.opencensus.metrics.data", + "io.opencensus.metrics.export", + "io.opencensus.resource", + "io.opencensus.stats", + "io.opencensus.tags", + "io.opencensus.tags.propagation", + "io.opencensus.tags.unsafe", + "io.opencensus.trace", + "io.opencensus.trace.config", + "io.opencensus.trace.export", + "io.opencensus.trace.internal", + "io.opencensus.trace.propagation", + "io.opencensus.trace.samplers", + "io.opencensus.trace.unsafe" + ], + "sha256": "f1474d47f4b6b001558ad27b952e35eda5cc7146788877fc52938c6eba24b382", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar" + }, + { + "coord": "io.opencensus:opencensus-contrib-http-util:0.31.1", + "dependencies": [ + "com.google.guava:guava:31.1-jre", + "io.grpc:grpc-context:1.27.2", + "io.opencensus:opencensus-api:0.31.1" + ], + "directDependencies": [ + "com.google.guava:guava:31.1-jre", + "io.opencensus:opencensus-api:0.31.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://packages.confluent.io/maven/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://jitpack.io/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://repository.apache.org/snapshots/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar", + "https://maven.google.com/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar" + ], + "packages": [ + "io.opencensus.contrib.http", + "io.opencensus.contrib.http.util" + ], + "sha256": "3ea995b55a4068be22989b70cc29a4d788c2d328d1d50613a7a9afd13fdd2d0a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar" + }, + { + "coord": "io.projectreactor.netty:reactor-netty-core:1.0.26", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec-socks:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler-proxy:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final", + "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "io.projectreactor:reactor-core:3.4.26", + "org.reactivestreams:reactive-streams:1.0.4" + ], + "directDependencies": [ + "io.netty:netty-handler-proxy:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.projectreactor:reactor-core:3.4.26" + ], + "exclusions": [ + "commons-logging:commons-logging", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://packages.confluent.io/maven/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://jitpack.io/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://repo1.maven.org/maven2/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://repository.apache.org/snapshots/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar", + "https://maven.google.com/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar" + ], + "packages": [ + "reactor.netty", + "reactor.netty.channel", + "reactor.netty.contextpropagation", + "reactor.netty.internal.shaded.reactor.pool", + "reactor.netty.internal.shaded.reactor.pool.decorators", + "reactor.netty.internal.shaded.reactor.pool.introspection", + "reactor.netty.internal.util", + "reactor.netty.resources", + "reactor.netty.tcp", + "reactor.netty.transport", + "reactor.netty.transport.logging", + "reactor.netty.udp" + ], + "sha256": "3a3c33b3a3e4e58cfe534f01937872eacd7f7f36f7892a4f0f49a4a66eba6348", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/netty/reactor-netty-core/1.0.26/reactor-netty-core-1.0.26.jar" + }, + { + "coord": "io.projectreactor.netty:reactor-netty-http:1.0.26", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec-dns:4.1.86.Final", + "io.netty:netty-codec-http2:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-codec-socks:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler-proxy:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver-dns-classes-macos:4.1.86.Final", + "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "io.projectreactor.netty:reactor-netty-core:1.0.26", + "io.projectreactor:reactor-core:3.4.26", + "org.reactivestreams:reactive-streams:1.0.4" + ], + "directDependencies": [ + "io.netty:netty-codec-http2:4.1.86.Final", + "io.netty:netty-codec-http:4.1.86.Final", + "io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.86.Final", + "io.netty:netty-resolver-dns:4.1.86.Final", + "io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.86.Final", + "io.projectreactor.netty:reactor-netty-core:1.0.26", + "io.projectreactor:reactor-core:3.4.26" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://packages.confluent.io/maven/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://jitpack.io/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://repo1.maven.org/maven2/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://repository.apache.org/snapshots/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar", + "https://maven.google.com/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar" + ], + "packages": [ + "reactor.netty.http", + "reactor.netty.http.client", + "reactor.netty.http.logging", + "reactor.netty.http.server", + "reactor.netty.http.server.logging", + "reactor.netty.http.websocket" + ], + "sha256": "ffc01339627ca0c17df1902bd05920cadfeac08cfc9277e30003eb11129c33aa", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/netty/reactor-netty-http/1.0.26/reactor-netty-http-1.0.26.jar" + }, + { + "coord": "io.projectreactor:reactor-core:3.4.26", + "dependencies": [ + "org.reactivestreams:reactive-streams:1.0.4" + ], + "directDependencies": [ + "org.reactivestreams:reactive-streams:1.0.4" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://packages.confluent.io/maven/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://jitpack.io/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://repo1.maven.org/maven2/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://repository.apache.org/snapshots/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar", + "https://maven.google.com/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar" + ], + "packages": [ + "reactor.adapter", + "reactor.core", + "reactor.core.publisher", + "reactor.core.scheduler", + "reactor.util", + "reactor.util.annotation", + "reactor.util.concurrent", + "reactor.util.context", + "reactor.util.function", + "reactor.util.retry" + ], + "sha256": "336b01e6affd60329cc7c92d8418888a662d22683c57bcb924d2549267b93d9a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/projectreactor/reactor-core/3.4.26/reactor-core-3.4.26.jar" + }, + { + "coord": "io.swagger.core.v3:swagger-annotations:2.2.8", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://packages.confluent.io/maven/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://jitpack.io/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://repo1.maven.org/maven2/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://repository.apache.org/snapshots/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar", + "https://maven.google.com/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar" + ], + "packages": [ + "io.swagger.v3.oas.annotations", + "io.swagger.v3.oas.annotations.callbacks", + "io.swagger.v3.oas.annotations.enums", + "io.swagger.v3.oas.annotations.extensions", + "io.swagger.v3.oas.annotations.headers", + "io.swagger.v3.oas.annotations.info", + "io.swagger.v3.oas.annotations.links", + "io.swagger.v3.oas.annotations.media", + "io.swagger.v3.oas.annotations.parameters", + "io.swagger.v3.oas.annotations.responses", + "io.swagger.v3.oas.annotations.security", + "io.swagger.v3.oas.annotations.servers", + "io.swagger.v3.oas.annotations.tags" + ], + "sha256": "0afcdfe4a7775fcce51d105b8f7c8ca514676c16bea571423503d838777f11dd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-annotations/2.2.8/swagger-annotations-2.2.8.jar" + }, + { + "coord": "io.swagger.core.v3:swagger-core:2.1.10", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "io.swagger.core.v3:swagger-annotations:2.2.8", + "io.swagger.core.v3:swagger-models:2.1.10", + "jakarta.activation:jakarta.activation-api:1.2.2", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3", + "org.apache.commons:commons-lang3:3.12.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1", + "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4", + "io.swagger.core.v3:swagger-annotations:2.2.8", + "io.swagger.core.v3:swagger-models:2.1.10", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3", + "org.apache.commons:commons-lang3:3.12.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://packages.confluent.io/maven/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://jitpack.io/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://repo1.maven.org/maven2/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://repository.apache.org/snapshots/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar", + "https://maven.google.com/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar" + ], + "packages": [ + "io.swagger.v3.core.converter", + "io.swagger.v3.core.filter", + "io.swagger.v3.core.jackson", + "io.swagger.v3.core.jackson.mixin", + "io.swagger.v3.core.model", + "io.swagger.v3.core.util" + ], + "sha256": "d59efb1f1fb3d83cda3b73b812cfb65b30eb850767d8b9e9b9339f8552f02d7e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-core/2.1.10/swagger-core-2.1.10.jar" + }, + { + "coord": "io.swagger.core.v3:swagger-models:2.1.10", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://packages.confluent.io/maven/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://jitpack.io/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://repo1.maven.org/maven2/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://repository.apache.org/snapshots/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar", + "https://maven.google.com/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar" + ], + "packages": [ + "io.swagger.v3.oas.models", + "io.swagger.v3.oas.models.callbacks", + "io.swagger.v3.oas.models.examples", + "io.swagger.v3.oas.models.headers", + "io.swagger.v3.oas.models.info", + "io.swagger.v3.oas.models.links", + "io.swagger.v3.oas.models.media", + "io.swagger.v3.oas.models.parameters", + "io.swagger.v3.oas.models.responses", + "io.swagger.v3.oas.models.security", + "io.swagger.v3.oas.models.servers", + "io.swagger.v3.oas.models.tags" + ], + "sha256": "a90a71cd7ce02c24258306653d59e1fb5d36cb16ebc4f65a6754527c2cfe53c1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/io/swagger/core/v3/swagger-models/2.1.10/swagger-models-2.1.10.jar" + }, + { + "coord": "jakarta.activation:jakarta.activation-api:1.2.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://packages.confluent.io/maven/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://jitpack.io/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://repo1.maven.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://repository.apache.org/snapshots/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar", + "https://maven.google.com/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar" + ], + "packages": [ + "javax.activation" + ], + "sha256": "a187a939103aef5849a7af84bd7e27be2d120c410af291437375ffe061f4f09d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar" + }, + { + "coord": "jakarta.annotation:jakarta.annotation-api:1.3.5", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://packages.confluent.io/maven/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://jitpack.io/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://repo1.maven.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://repository.apache.org/snapshots/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar", + "https://maven.google.com/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar" + ], + "packages": [ + "javax.annotation", + "javax.annotation.security", + "javax.annotation.sql" + ], + "sha256": "85fb03fc054cdf4efca8efd9b6712bbb418e1ab98241c4539c8585bbc23e1b8a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar" + }, + { + "coord": "jakarta.el:jakarta.el-api:3.0.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://packages.confluent.io/maven/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://jitpack.io/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://repo1.maven.org/maven2/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://repository.apache.org/snapshots/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar", + "https://maven.google.com/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar" + ], + "packages": [ + "javax.el" + ], + "sha256": "47ae0a91fb6dd32fdaa5d9bda63df043ac8148e00c297ccce8ab9c56b95cf261", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/el/jakarta.el-api/3.0.3/jakarta.el-api-3.0.3.jar" + }, + { + "coord": "jakarta.validation:jakarta.validation-api:2.0.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://packages.confluent.io/maven/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://jitpack.io/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://repo1.maven.org/maven2/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://repository.apache.org/snapshots/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar", + "https://maven.google.com/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar" + ], + "packages": [ + "javax.validation", + "javax.validation.bootstrap", + "javax.validation.constraints", + "javax.validation.constraintvalidation", + "javax.validation.executable", + "javax.validation.groups", + "javax.validation.metadata", + "javax.validation.spi", + "javax.validation.valueextraction" + ], + "sha256": "b42d42428f3d922c892a909fa043287d577c0c5b165ad9b7d568cebf87fc9ea4", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar" + }, + { + "coord": "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://packages.confluent.io/maven/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://jitpack.io/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://repo1.maven.org/maven2/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://repository.apache.org/snapshots/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar", + "https://maven.google.com/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar" + ], + "packages": [ + "javax.ws.rs", + "javax.ws.rs.client", + "javax.ws.rs.container", + "javax.ws.rs.core", + "javax.ws.rs.ext", + "javax.ws.rs.sse" + ], + "sha256": "4cea299c846c8a6e6470cbfc2f7c391bc29b9caa2f9264ac1064ba91691f4adf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar" + }, + { + "coord": "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3", + "dependencies": [ + "jakarta.activation:jakarta.activation-api:1.2.2" + ], + "directDependencies": [ + "jakarta.activation:jakarta.activation-api:1.2.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://packages.confluent.io/maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://jitpack.io/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://repo1.maven.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://repository.apache.org/snapshots/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar", + "https://maven.google.com/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar" + ], + "packages": [ + "javax.xml.bind", + "javax.xml.bind.annotation", + "javax.xml.bind.annotation.adapters", + "javax.xml.bind.attachment", + "javax.xml.bind.helpers", + "javax.xml.bind.util" + ], + "sha256": "c04539f472e9a6dd0c7685ea82d677282269ab8e7baca2e14500e381e0c6cec5", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar" + }, + { + "coord": "javax.activation:activation:1.1.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://packages.confluent.io/maven/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://jitpack.io/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://repo1.maven.org/maven2/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://repository.apache.org/snapshots/javax/activation/activation/1.1.1/activation-1.1.1.jar", + "https://maven.google.com/javax/activation/activation/1.1.1/activation-1.1.1.jar" + ], + "packages": [ + "com.sun.activation.registries", + "com.sun.activation.viewers", + "javax.activation" + ], + "sha256": "ae475120e9fcd99b4b00b38329bd61cdc5eb754eee03fe66c01f50e137724f99", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/activation/activation/1.1.1/activation-1.1.1.jar" + }, + { + "coord": "javax.annotation:javax.annotation-api:1.3.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://packages.confluent.io/maven/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://jitpack.io/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://repository.apache.org/snapshots/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar", + "https://maven.google.com/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + ], + "packages": [ + "javax.annotation", + "javax.annotation.security", + "javax.annotation.sql" + ], + "sha256": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b", + "url": "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar" + }, + { + "coord": "javax.annotation:jsr250-api:1.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "javax.el:el-api", + "xml-apis:xml-apis", + "org.jboss.ejb3:jboss-ejb3-api", + "org.jboss.interceptor:jboss-interceptor-api", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://packages.confluent.io/maven/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://jitpack.io/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://repo1.maven.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://repository.apache.org/snapshots/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar", + "https://maven.google.com/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar" + ], + "packages": [ + "javax.annotation", + "javax.annotation.security" + ], + "sha256": "a1a922d0d9b6d183ed3800dfac01d1e1eb159f0e8c6f94736931c1def54a941f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar" + }, + { + "coord": "javax.enterprise:cdi-api:1.0", + "dependencies": [ + "javax.annotation:jsr250-api:1.0", + "javax.inject:javax.inject:1" + ], + "directDependencies": [ + "javax.annotation:jsr250-api:1.0", + "javax.inject:javax.inject:1" + ], + "exclusions": [ + "javax.el:el-api", + "xml-apis:xml-apis", + "org.jboss.ejb3:jboss-ejb3-api", + "org.jboss.interceptor:jboss-interceptor-api", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://packages.confluent.io/maven/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://jitpack.io/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://repo1.maven.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://repository.apache.org/snapshots/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar", + "https://maven.google.com/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar" + ], + "packages": [ + "javax.decorator", + "javax.enterprise.context", + "javax.enterprise.context.spi", + "javax.enterprise.event", + "javax.enterprise.inject", + "javax.enterprise.inject.spi", + "javax.enterprise.util" + ], + "sha256": "1f10b2204cc77c919301f20ff90461c3df1b6e6cb148be1c2d22107f4851d423", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar" + }, + { + "coord": "javax.inject:javax.inject:1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "javax.el:el-api", + "xml-apis:xml-apis", + "org.jboss.ejb3:jboss-ejb3-api", + "org.jboss.interceptor:jboss-interceptor-api", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/inject/javax.inject/1/javax.inject-1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://packages.confluent.io/maven/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://jitpack.io/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://repo1.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://repository.apache.org/snapshots/javax/inject/javax.inject/1/javax.inject-1.jar", + "https://maven.google.com/javax/inject/javax.inject/1/javax.inject-1.jar" + ], + "packages": [ + "javax.inject" + ], + "sha256": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/inject/javax.inject/1/javax.inject-1.jar" + }, + { + "coord": "javax.servlet:javax.servlet-api:3.1.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://packages.confluent.io/maven/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://jitpack.io/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://repository.apache.org/snapshots/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar", + "https://maven.google.com/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar" + ], + "packages": [ + "javax.servlet", + "javax.servlet.annotation", + "javax.servlet.descriptor", + "javax.servlet.http" + ], + "sha256": "af456b2dd41c4e82cf54f3e743bc678973d9fe35bd4d3071fa05c7e5333b8482", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar" + }, + { + "coord": "javax.validation:validation-api:2.0.1.Final", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://packages.confluent.io/maven/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://jitpack.io/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://repo1.maven.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://repository.apache.org/snapshots/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar", + "https://maven.google.com/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" + ], + "packages": [ + "javax.validation", + "javax.validation.bootstrap", + "javax.validation.constraints", + "javax.validation.constraintvalidation", + "javax.validation.executable", + "javax.validation.groups", + "javax.validation.metadata", + "javax.validation.spi", + "javax.validation.valueextraction" + ], + "sha256": "9873b46df1833c9ee8f5bc1ff6853375115dadd8897bcb5a0dffb5848835ee6c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" + }, + { + "coord": "javax.websocket:javax.websocket-api:1.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://packages.confluent.io/maven/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://jitpack.io/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://repo1.maven.org/maven2/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://repository.apache.org/snapshots/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar", + "https://maven.google.com/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar" + ], + "packages": [ + "javax.websocket", + "javax.websocket.server" + ], + "sha256": "dd93009fb5aa3798bcd9ab0492a292ddae0f0b1ed2e45a75867a9925c90e747a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar" + }, + { + "coord": "javax.websocket:javax.websocket-client-api:1.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://packages.confluent.io/maven/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://jitpack.io/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://repo1.maven.org/maven2/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://repository.apache.org/snapshots/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar", + "https://maven.google.com/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar" + ], + "packages": [ + "javax.websocket" + ], + "sha256": "0102ee41121ed7b8834f1efc6ef1a0dbaf610c1ad8f0d941ad721662b17bd27e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar" + }, + { + "coord": "javax.ws.rs:javax.ws.rs-api:2.1.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://packages.confluent.io/maven/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://jitpack.io/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://repo1.maven.org/maven2/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://repository.apache.org/snapshots/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar", + "https://maven.google.com/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar" + ], + "packages": [ + "javax.ws.rs", + "javax.ws.rs.client", + "javax.ws.rs.container", + "javax.ws.rs.core", + "javax.ws.rs.ext", + "javax.ws.rs.sse" + ], + "sha256": "2c309eb2c9455ffee9da8518c70a3b6d46be2a269b2e2a101c806a537efe79a4", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/ws/rs/javax.ws.rs-api/2.1.1/javax.ws.rs-api-2.1.1.jar" + }, + { + "coord": "javax.xml.bind:jaxb-api:2.3.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://packages.confluent.io/maven/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://jitpack.io/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://repo1.maven.org/maven2/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://repository.apache.org/snapshots/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar", + "https://maven.google.com/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar" + ], + "packages": [ + "javax.xml.bind", + "javax.xml.bind.annotation", + "javax.xml.bind.annotation.adapters", + "javax.xml.bind.attachment", + "javax.xml.bind.helpers", + "javax.xml.bind.util" + ], + "sha256": "883007989d373d19f352ba9792b25dec21dc7d0e205a710a93a3815101bb3d03", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar" + }, + { + "coord": "javax.xml.soap:javax.xml.soap-api:1.4.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://packages.confluent.io/maven/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://jitpack.io/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://repo1.maven.org/maven2/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://repository.apache.org/snapshots/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar", + "https://maven.google.com/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar" + ], + "packages": [ + "javax.xml.soap" + ], + "sha256": "141374e33be99768611a2d42b9d33571a0c5b9763beca9c2dc90900d8cc8f767", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/soap/javax.xml.soap-api/1.4.0/javax.xml.soap-api-1.4.0.jar" + }, + { + "coord": "javax.xml.ws:jaxws-api:2.3.0", + "dependencies": [ + "javax.xml.bind:jaxb-api:2.3.0", + "javax.xml.soap:javax.xml.soap-api:1.4.0" + ], + "directDependencies": [ + "javax.xml.bind:jaxb-api:2.3.0", + "javax.xml.soap:javax.xml.soap-api:1.4.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://packages.confluent.io/maven/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://jitpack.io/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://repo1.maven.org/maven2/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://repository.apache.org/snapshots/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar", + "https://maven.google.com/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar" + ], + "packages": [ + "javax.xml.ws", + "javax.xml.ws.handler", + "javax.xml.ws.handler.soap", + "javax.xml.ws.http", + "javax.xml.ws.soap", + "javax.xml.ws.spi", + "javax.xml.ws.spi.http", + "javax.xml.ws.wsaddressing" + ], + "sha256": "c261f75c1a25ecb17d1936efe34a34236b5d0e79415b34ffb9324359a30a8c08", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/javax/xml/ws/jaxws-api/2.3.0/jaxws-api-2.3.0.jar" + }, + { + "coord": "jaxen:jaxen:1.2.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://packages.confluent.io/maven/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://jitpack.io/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://repository.apache.org/snapshots/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar", + "https://maven.google.com/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar" + ], + "packages": [ + "org.jaxen", + "org.jaxen.dom", + "org.jaxen.dom4j", + "org.jaxen.expr", + "org.jaxen.expr.iter", + "org.jaxen.function", + "org.jaxen.function.ext", + "org.jaxen.function.xslt", + "org.jaxen.javabean", + "org.jaxen.jdom", + "org.jaxen.pattern", + "org.jaxen.saxpath", + "org.jaxen.saxpath.base", + "org.jaxen.saxpath.helpers", + "org.jaxen.util", + "org.jaxen.xom" + ], + "sha256": "70feef9dd75ad064def05a3ce8975aeba515ee7d1be146d12199c8828a64174c", + "url": "https://repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar" + }, + { + "coord": "joda-time:joda-time:2.10.8", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://packages.confluent.io/maven/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://jitpack.io/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://repo1.maven.org/maven2/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://repository.apache.org/snapshots/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar", + "https://maven.google.com/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar" + ], + "packages": [ + "org.joda.time", + "org.joda.time.base", + "org.joda.time.chrono", + "org.joda.time.convert", + "org.joda.time.field", + "org.joda.time.format", + "org.joda.time.tz" + ], + "sha256": "da04572b431597f0a42e6a7f44973f2bdc975776c25ad3cdb2ba92d17c554a66", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/joda-time/joda-time/2.10.8/joda-time-2.10.8.jar" + }, + { + "coord": "junit:junit:4.13.2", + "dependencies": [ + "org.hamcrest:hamcrest-core:1.3" + ], + "directDependencies": [ + "org.hamcrest:hamcrest-core:1.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/junit/junit/4.13.2/junit-4.13.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/junit/junit/4.13.2/junit-4.13.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/junit/junit/4.13.2/junit-4.13.2.jar", + "https://packages.confluent.io/maven/junit/junit/4.13.2/junit-4.13.2.jar", + "https://jitpack.io/junit/junit/4.13.2/junit-4.13.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/junit/junit/4.13.2/junit-4.13.2.jar", + "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar", + "https://repository.apache.org/snapshots/junit/junit/4.13.2/junit-4.13.2.jar", + "https://maven.google.com/junit/junit/4.13.2/junit-4.13.2.jar" + ], + "packages": [ + "junit.extensions", + "junit.framework", + "junit.runner", + "junit.textui", + "org.junit", + "org.junit.experimental", + "org.junit.experimental.categories", + "org.junit.experimental.max", + "org.junit.experimental.results", + "org.junit.experimental.runners", + "org.junit.experimental.theories", + "org.junit.experimental.theories.internal", + "org.junit.experimental.theories.suppliers", + "org.junit.function", + "org.junit.internal", + "org.junit.internal.builders", + "org.junit.internal.management", + "org.junit.internal.matchers", + "org.junit.internal.requests", + "org.junit.internal.runners", + "org.junit.internal.runners.model", + "org.junit.internal.runners.rules", + "org.junit.internal.runners.statements", + "org.junit.matchers", + "org.junit.rules", + "org.junit.runner", + "org.junit.runner.manipulation", + "org.junit.runner.notification", + "org.junit.runners", + "org.junit.runners.model", + "org.junit.runners.parameterized", + "org.junit.validator" + ], + "sha256": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/junit/junit/4.13.2/junit-4.13.2.jar" + }, + { + "coord": "net.bytebuddy:byte-buddy-agent:1.12.10", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://packages.confluent.io/maven/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://jitpack.io/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://repository.apache.org/snapshots/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar", + "https://maven.google.com/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar" + ], + "packages": [ + "net.bytebuddy.agent", + "net.bytebuddy.agent.utility.nullability" + ], + "sha256": "5e8606d14a844c1ec70d2eb8f50c4009fb16138905dee8ca50a328116c041257", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/bytebuddy/byte-buddy-agent/1.12.10/byte-buddy-agent-1.12.10.jar" + }, + { + "coord": "net.bytebuddy:byte-buddy:1.12.10", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://packages.confluent.io/maven/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://jitpack.io/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://repository.apache.org/snapshots/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar", + "https://maven.google.com/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar" + ], + "packages": [ + "net.bytebuddy", + "net.bytebuddy.agent.builder", + "net.bytebuddy.asm", + "net.bytebuddy.build", + "net.bytebuddy.description", + "net.bytebuddy.description.annotation", + "net.bytebuddy.description.enumeration", + "net.bytebuddy.description.field", + "net.bytebuddy.description.method", + "net.bytebuddy.description.modifier", + "net.bytebuddy.description.type", + "net.bytebuddy.dynamic", + "net.bytebuddy.dynamic.loading", + "net.bytebuddy.dynamic.scaffold", + "net.bytebuddy.dynamic.scaffold.inline", + "net.bytebuddy.dynamic.scaffold.subclass", + "net.bytebuddy.implementation", + "net.bytebuddy.implementation.attribute", + "net.bytebuddy.implementation.auxiliary", + "net.bytebuddy.implementation.bind", + "net.bytebuddy.implementation.bind.annotation", + "net.bytebuddy.implementation.bytecode", + "net.bytebuddy.implementation.bytecode.assign", + "net.bytebuddy.implementation.bytecode.assign.primitive", + "net.bytebuddy.implementation.bytecode.assign.reference", + "net.bytebuddy.implementation.bytecode.collection", + "net.bytebuddy.implementation.bytecode.constant", + "net.bytebuddy.implementation.bytecode.member", + "net.bytebuddy.jar.asm", + "net.bytebuddy.jar.asm.commons", + "net.bytebuddy.jar.asm.signature", + "net.bytebuddy.matcher", + "net.bytebuddy.pool", + "net.bytebuddy.utility", + "net.bytebuddy.utility.dispatcher", + "net.bytebuddy.utility.nullability", + "net.bytebuddy.utility.privilege", + "net.bytebuddy.utility.visitor" + ], + "sha256": "1a1ac9ce65eddcea54ead958387bb0b3863d02a2ffe856ab6a57ac79737c19cf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar" + }, + { + "coord": "net.java.dev.jna:jna-platform:5.6.0", + "dependencies": [ + "net.java.dev.jna:jna:5.6.0" + ], + "directDependencies": [ + "net.java.dev.jna:jna:5.6.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://packages.confluent.io/maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://jitpack.io/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://repository.apache.org/snapshots/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar", + "https://maven.google.com/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar" + ], + "packages": [ + "com.sun.jna.platform", + "com.sun.jna.platform.dnd", + "com.sun.jna.platform.linux", + "com.sun.jna.platform.mac", + "com.sun.jna.platform.unix", + "com.sun.jna.platform.unix.solaris", + "com.sun.jna.platform.win32", + "com.sun.jna.platform.win32.COM", + "com.sun.jna.platform.win32.COM.tlb", + "com.sun.jna.platform.win32.COM.tlb.imp", + "com.sun.jna.platform.win32.COM.util", + "com.sun.jna.platform.win32.COM.util.annotation", + "com.sun.jna.platform.wince" + ], + "sha256": "9ecea8bf2b1b39963939d18b70464eef60c508fed8820f9dcaba0c35518eabf7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar" + }, + { + "coord": "net.java.dev.jna:jna:5.6.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://packages.confluent.io/maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://jitpack.io/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://repository.apache.org/snapshots/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar", + "https://maven.google.com/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar" + ], + "packages": [ + "com.sun.jna", + "com.sun.jna.internal", + "com.sun.jna.ptr", + "com.sun.jna.win32" + ], + "sha256": "5557e235a8aa2f9766d5dc609d67948f2a8832c2d796cea9ef1d6cbe0b3b7eaf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/java/dev/jna/jna/5.6.0/jna-5.6.0.jar" + }, + { + "coord": "net.jcip:jcip-annotations:1.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://packages.confluent.io/maven/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://jitpack.io/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://repository.apache.org/snapshots/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar", + "https://maven.google.com/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar" + ], + "packages": [ + "net.jcip.annotations" + ], + "sha256": "be5805392060c71474bf6c9a67a099471274d30b83eef84bfc4e0889a4f1dcc0", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar" + }, + { + "coord": "net.minidev:accessors-smart:2.4.8", + "dependencies": [ + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "org.ow2.asm:asm:9.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://packages.confluent.io/maven/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://jitpack.io/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://repo1.maven.org/maven2/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://repository.apache.org/snapshots/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar", + "https://maven.google.com/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar" + ], + "packages": [ + "net.minidev.asm", + "net.minidev.asm.ex" + ], + "sha256": "7dd705aa1ac0e030f8ee2624e8e77239ae1eef6ccc2621c0b8c189866ee1c42c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar" + }, + { + "coord": "net.minidev:json-smart:2.4.8", + "dependencies": [ + "net.minidev:accessors-smart:2.4.8", + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "net.minidev:accessors-smart:2.4.8" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://packages.confluent.io/maven/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://jitpack.io/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://repo1.maven.org/maven2/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://repository.apache.org/snapshots/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar", + "https://maven.google.com/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar" + ], + "packages": [ + "net.minidev.json", + "net.minidev.json.annotate", + "net.minidev.json.parser", + "net.minidev.json.reader", + "net.minidev.json.writer" + ], + "sha256": "174a9ad578b56644e62b3965d8bf94ac3a76e707c6343b8abac9d3671438b4b2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar" + }, + { + "coord": "net.sf.ehcache:ehcache:2.8.5", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://packages.confluent.io/maven/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://jitpack.io/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://repo1.maven.org/maven2/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://repository.apache.org/snapshots/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar", + "https://maven.google.com/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar" + ], + "packages": [ + "com.terracotta.entity", + "com.terracotta.entity.ehcache", + "com.terracotta.entity.internal", + "net.sf.ehcache", + "net.sf.ehcache.bootstrap", + "net.sf.ehcache.cluster", + "net.sf.ehcache.concurrent", + "net.sf.ehcache.config", + "net.sf.ehcache.config.generator", + "net.sf.ehcache.config.generator.model", + "net.sf.ehcache.config.generator.model.elements", + "net.sf.ehcache.constructs", + "net.sf.ehcache.constructs.blocking", + "net.sf.ehcache.constructs.classloader", + "net.sf.ehcache.constructs.eventual", + "net.sf.ehcache.constructs.nonstop", + "net.sf.ehcache.constructs.nonstop.concurrency", + "net.sf.ehcache.constructs.nonstop.util", + "net.sf.ehcache.constructs.readthrough", + "net.sf.ehcache.constructs.refreshahead", + "net.sf.ehcache.constructs.scheduledrefresh", + "net.sf.ehcache.constructs.web", + "net.sf.ehcache.distribution", + "net.sf.ehcache.event", + "net.sf.ehcache.exceptionhandler", + "net.sf.ehcache.extension", + "net.sf.ehcache.hibernate", + "net.sf.ehcache.hibernate.ccs", + "net.sf.ehcache.hibernate.management.api", + "net.sf.ehcache.hibernate.management.impl", + "net.sf.ehcache.hibernate.nonstop", + "net.sf.ehcache.hibernate.regions", + "net.sf.ehcache.hibernate.strategy", + "net.sf.ehcache.loader", + "net.sf.ehcache.management", + "net.sf.ehcache.management.provider", + "net.sf.ehcache.management.sampled", + "net.sf.ehcache.pool", + "net.sf.ehcache.pool.impl", + "net.sf.ehcache.pool.sizeof", + "net.sf.ehcache.pool.sizeof.annotations", + "net.sf.ehcache.pool.sizeof.filter", + "net.sf.ehcache.search", + "net.sf.ehcache.search.aggregator", + "net.sf.ehcache.search.attribute", + "net.sf.ehcache.search.expression", + "net.sf.ehcache.search.impl", + "net.sf.ehcache.search.parser", + "net.sf.ehcache.search.query", + "net.sf.ehcache.statistics", + "net.sf.ehcache.statistics.beans", + "net.sf.ehcache.statistics.extended", + "net.sf.ehcache.store", + "net.sf.ehcache.store.cachingtier", + "net.sf.ehcache.store.chm", + "net.sf.ehcache.store.compound", + "net.sf.ehcache.store.disk", + "net.sf.ehcache.store.disk.ods", + "net.sf.ehcache.terracotta", + "net.sf.ehcache.transaction", + "net.sf.ehcache.transaction.local", + "net.sf.ehcache.transaction.manager", + "net.sf.ehcache.transaction.manager.selector", + "net.sf.ehcache.transaction.xa", + "net.sf.ehcache.transaction.xa.commands", + "net.sf.ehcache.transaction.xa.processor", + "net.sf.ehcache.util", + "net.sf.ehcache.util.concurrent", + "net.sf.ehcache.util.counter", + "net.sf.ehcache.util.counter.sampled", + "net.sf.ehcache.util.lang", + "net.sf.ehcache.writer", + "net.sf.ehcache.writer.writebehind", + "net.sf.ehcache.writer.writebehind.operations", + "net.sf.ehcache.writer.writethrough", + "org.terracotta.context", + "org.terracotta.context.annotations", + "org.terracotta.context.extractor", + "org.terracotta.context.query", + "org.terracotta.modules.ehcache", + "org.terracotta.modules.ehcache.async", + "org.terracotta.modules.ehcache.async.exceptions", + "org.terracotta.modules.ehcache.async.scatterpolicies", + "org.terracotta.modules.ehcache.collections", + "org.terracotta.modules.ehcache.concurrency", + "org.terracotta.modules.ehcache.event", + "org.terracotta.modules.ehcache.store", + "org.terracotta.modules.ehcache.store.nonstop", + "org.terracotta.modules.ehcache.transaction", + "org.terracotta.modules.ehcache.transaction.xa", + "org.terracotta.modules.ehcache.wan", + "org.terracotta.modules.ehcache.writebehind", + "org.terracotta.modules.ehcache.writebehind.operations", + "org.terracotta.statistics", + "org.terracotta.statistics.archive", + "org.terracotta.statistics.derived", + "org.terracotta.statistics.jsr166e", + "org.terracotta.statistics.observer", + "org.terracotta.statistics.util" + ], + "sha256": "1160a0a0c0562dcb83afb5cdb8c11deb75778614110a0e6f18e38e89e54ee041", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/ehcache/ehcache/2.8.5/ehcache-2.8.5.jar" + }, + { + "coord": "net.sf.jopt-simple:jopt-simple:5.0.4", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://packages.confluent.io/maven/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://jitpack.io/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://repo1.maven.org/maven2/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://repository.apache.org/snapshots/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", + "https://maven.google.com/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar" + ], + "packages": [ + "joptsimple", + "joptsimple.internal", + "joptsimple.util" + ], + "sha256": "df26cc58f235f477db07f753ba5a3ab243ebe5789d9f89ecf68dd62ea9a66c28", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar" + }, + { + "coord": "net.sf.saxon:Saxon-HE:11.3", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16", + "org.xmlresolver:xmlresolver:4.2.0", + "org.xmlresolver:xmlresolver:jar:data:4.2.0" + ], + "directDependencies": [ + "org.xmlresolver:xmlresolver:4.2.0", + "org.xmlresolver:xmlresolver:jar:data:4.2.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://packages.confluent.io/maven/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://jitpack.io/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://repository.apache.org/snapshots/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar", + "https://maven.google.com/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar" + ], + "packages": [ + "net.sf.saxon", + "net.sf.saxon.dom", + "net.sf.saxon.event", + "net.sf.saxon.expr", + "net.sf.saxon.expr.accum", + "net.sf.saxon.expr.compat", + "net.sf.saxon.expr.flwor", + "net.sf.saxon.expr.instruct", + "net.sf.saxon.expr.number", + "net.sf.saxon.expr.oper", + "net.sf.saxon.expr.parser", + "net.sf.saxon.expr.sort", + "net.sf.saxon.functions", + "net.sf.saxon.functions.hof", + "net.sf.saxon.functions.registry", + "net.sf.saxon.gizmo", + "net.sf.saxon.java", + "net.sf.saxon.jaxp", + "net.sf.saxon.lib", + "net.sf.saxon.ma", + "net.sf.saxon.ma.arrays", + "net.sf.saxon.ma.json", + "net.sf.saxon.ma.map", + "net.sf.saxon.ma.parray", + "net.sf.saxon.ma.trie", + "net.sf.saxon.ma.zeno", + "net.sf.saxon.om", + "net.sf.saxon.pattern", + "net.sf.saxon.pull", + "net.sf.saxon.query", + "net.sf.saxon.regex", + "net.sf.saxon.regex.charclass", + "net.sf.saxon.resource", + "net.sf.saxon.s9api", + "net.sf.saxon.s9api.push", + "net.sf.saxon.s9api.streams", + "net.sf.saxon.sapling", + "net.sf.saxon.serialize", + "net.sf.saxon.serialize.charcode", + "net.sf.saxon.stax", + "net.sf.saxon.str", + "net.sf.saxon.style", + "net.sf.saxon.sxpath", + "net.sf.saxon.trace", + "net.sf.saxon.trans", + "net.sf.saxon.trans.packages", + "net.sf.saxon.trans.rules", + "net.sf.saxon.transpile", + "net.sf.saxon.tree", + "net.sf.saxon.tree.iter", + "net.sf.saxon.tree.jiter", + "net.sf.saxon.tree.linked", + "net.sf.saxon.tree.tiny", + "net.sf.saxon.tree.util", + "net.sf.saxon.tree.wrapper", + "net.sf.saxon.type", + "net.sf.saxon.value", + "net.sf.saxon.xpath", + "net.sf.saxon.z" + ], + "sha256": "e62e1a283b1aa610605fde18e9368a9ec6f24d878320eb74cfc1c1f2d432e8a6", + "url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/11.3/Saxon-HE-11.3.jar" + }, + { + "coord": "net.sourceforge.argparse4j:argparse4j:0.7.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://packages.confluent.io/maven/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://jitpack.io/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://repo1.maven.org/maven2/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://repository.apache.org/snapshots/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar", + "https://maven.google.com/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar" + ], + "packages": [ + "net.sourceforge.argparse4j", + "net.sourceforge.argparse4j.annotation", + "net.sourceforge.argparse4j.helper", + "net.sourceforge.argparse4j.impl", + "net.sourceforge.argparse4j.impl.action", + "net.sourceforge.argparse4j.impl.choice", + "net.sourceforge.argparse4j.impl.type", + "net.sourceforge.argparse4j.inf", + "net.sourceforge.argparse4j.internal" + ], + "sha256": "65ceb669d88f63306c680f8088bbf765bbca72d288a61a03703000076c3d3f56", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/net/sourceforge/argparse4j/argparse4j/0.7.0/argparse4j-0.7.0.jar" + }, + { + "coord": "org.agrona:agrona:1.17.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://packages.confluent.io/maven/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://jitpack.io/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://repo1.maven.org/maven2/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://repository.apache.org/snapshots/org/agrona/agrona/1.17.1/agrona-1.17.1.jar", + "https://maven.google.com/org/agrona/agrona/1.17.1/agrona-1.17.1.jar" + ], + "packages": [ + "org.agrona", + "org.agrona.collections", + "org.agrona.concurrent", + "org.agrona.concurrent.broadcast", + "org.agrona.concurrent.errors", + "org.agrona.concurrent.ringbuffer", + "org.agrona.concurrent.status", + "org.agrona.console", + "org.agrona.generation", + "org.agrona.hints", + "org.agrona.io", + "org.agrona.nio", + "org.agrona.sbe" + ], + "sha256": "ca6ff763fd93ddcf5dd2b8b9f60dc977a2d644f1f1666ffd9cf7fd637ab6d3fd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/agrona/agrona/1.17.1/agrona-1.17.1.jar" + }, + { + "coord": "org.antlr:antlr4-runtime:4.11.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://packages.confluent.io/maven/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://jitpack.io/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://repository.apache.org/snapshots/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar", + "https://maven.google.com/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar" + ], + "packages": [ + "org.antlr.v4.runtime", + "org.antlr.v4.runtime.atn", + "org.antlr.v4.runtime.dfa", + "org.antlr.v4.runtime.misc", + "org.antlr.v4.runtime.tree", + "org.antlr.v4.runtime.tree.pattern", + "org.antlr.v4.runtime.tree.xpath" + ], + "sha256": "e06c6553c1ccc14d36052ec4b0fc6f13b808cf957b5b1dc3f61bf401996ada59", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar" + }, + { + "coord": "org.apache.avro:avro:1.11.0", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.apache.commons:commons-compress:1.21", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.apache.commons:commons-compress:1.21", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://packages.confluent.io/maven/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://jitpack.io/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://repo1.maven.org/maven2/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://repository.apache.org/snapshots/org/apache/avro/avro/1.11.0/avro-1.11.0.jar", + "https://maven.google.com/org/apache/avro/avro/1.11.0/avro-1.11.0.jar" + ], + "packages": [ + "org.apache.avro", + "org.apache.avro.data", + "org.apache.avro.file", + "org.apache.avro.generic", + "org.apache.avro.io", + "org.apache.avro.io.parsing", + "org.apache.avro.message", + "org.apache.avro.reflect", + "org.apache.avro.specific", + "org.apache.avro.util", + "org.apache.avro.util.internal" + ], + "sha256": "b3e42815a3dddb0d9432035aa133122c3dffc03affea49493d46fcc2e7581a74", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/avro/avro/1.11.0/avro-1.11.0.jar" + }, + { + "coord": "org.apache.bcel:bcel:6.5.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://packages.confluent.io/maven/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://jitpack.io/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://repository.apache.org/snapshots/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar", + "https://maven.google.com/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar" + ], + "packages": [ + "org.apache.bcel", + "org.apache.bcel.classfile", + "org.apache.bcel.generic", + "org.apache.bcel.util", + "org.apache.bcel.verifier", + "org.apache.bcel.verifier.exc", + "org.apache.bcel.verifier.statics", + "org.apache.bcel.verifier.structurals" + ], + "sha256": "bdeb381d0d19999e221e6a0f8d8bf44f5b19c2e57eabf68b70dc098652aefaf5", + "url": "https://repo1.maven.org/maven2/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.jar" + }, + { + "coord": "org.apache.commons:commons-compress:1.21", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://packages.confluent.io/maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://jitpack.io/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://repo1.maven.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://repository.apache.org/snapshots/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", + "https://maven.google.com/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar" + ], + "packages": [ + "org.apache.commons.compress", + "org.apache.commons.compress.archivers", + "org.apache.commons.compress.archivers.ar", + "org.apache.commons.compress.archivers.arj", + "org.apache.commons.compress.archivers.cpio", + "org.apache.commons.compress.archivers.dump", + "org.apache.commons.compress.archivers.examples", + "org.apache.commons.compress.archivers.jar", + "org.apache.commons.compress.archivers.sevenz", + "org.apache.commons.compress.archivers.tar", + "org.apache.commons.compress.archivers.zip", + "org.apache.commons.compress.changes", + "org.apache.commons.compress.compressors", + "org.apache.commons.compress.compressors.brotli", + "org.apache.commons.compress.compressors.bzip2", + "org.apache.commons.compress.compressors.deflate", + "org.apache.commons.compress.compressors.deflate64", + "org.apache.commons.compress.compressors.gzip", + "org.apache.commons.compress.compressors.lz4", + "org.apache.commons.compress.compressors.lz77support", + "org.apache.commons.compress.compressors.lzma", + "org.apache.commons.compress.compressors.lzw", + "org.apache.commons.compress.compressors.pack200", + "org.apache.commons.compress.compressors.snappy", + "org.apache.commons.compress.compressors.xz", + "org.apache.commons.compress.compressors.z", + "org.apache.commons.compress.compressors.zstandard", + "org.apache.commons.compress.harmony.archive.internal.nls", + "org.apache.commons.compress.harmony.pack200", + "org.apache.commons.compress.harmony.unpack200", + "org.apache.commons.compress.harmony.unpack200.bytecode", + "org.apache.commons.compress.harmony.unpack200.bytecode.forms", + "org.apache.commons.compress.java.util.jar", + "org.apache.commons.compress.parallel", + "org.apache.commons.compress.utils" + ], + "sha256": "6aecfd5459728a595601cfa07258d131972ffc39b492eb48bdd596577a2f244a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar" + }, + { + "coord": "org.apache.commons:commons-lang3:3.12.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://packages.confluent.io/maven/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://jitpack.io/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://repository.apache.org/snapshots/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", + "https://maven.google.com/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar" + ], + "packages": [ + "org.apache.commons.lang3", + "org.apache.commons.lang3.arch", + "org.apache.commons.lang3.builder", + "org.apache.commons.lang3.compare", + "org.apache.commons.lang3.concurrent", + "org.apache.commons.lang3.concurrent.locks", + "org.apache.commons.lang3.event", + "org.apache.commons.lang3.exception", + "org.apache.commons.lang3.function", + "org.apache.commons.lang3.math", + "org.apache.commons.lang3.mutable", + "org.apache.commons.lang3.reflect", + "org.apache.commons.lang3.stream", + "org.apache.commons.lang3.text", + "org.apache.commons.lang3.text.translate", + "org.apache.commons.lang3.time", + "org.apache.commons.lang3.tuple" + ], + "sha256": "d919d904486c037f8d193412da0c92e22a9fa24230b9d67a57855c5c31c7e94e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar" + }, + { + "coord": "org.apache.commons:commons-math3:3.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://packages.confluent.io/maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://jitpack.io/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://repository.apache.org/snapshots/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar", + "https://maven.google.com/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar" + ], + "packages": [ + "org.apache.commons.math3", + "org.apache.commons.math3.analysis", + "org.apache.commons.math3.analysis.differentiation", + "org.apache.commons.math3.analysis.function", + "org.apache.commons.math3.analysis.integration", + "org.apache.commons.math3.analysis.integration.gauss", + "org.apache.commons.math3.analysis.interpolation", + "org.apache.commons.math3.analysis.polynomials", + "org.apache.commons.math3.analysis.solvers", + "org.apache.commons.math3.complex", + "org.apache.commons.math3.dfp", + "org.apache.commons.math3.distribution", + "org.apache.commons.math3.distribution.fitting", + "org.apache.commons.math3.exception", + "org.apache.commons.math3.exception.util", + "org.apache.commons.math3.filter", + "org.apache.commons.math3.fitting", + "org.apache.commons.math3.fraction", + "org.apache.commons.math3.genetics", + "org.apache.commons.math3.geometry", + "org.apache.commons.math3.geometry.euclidean.oned", + "org.apache.commons.math3.geometry.euclidean.threed", + "org.apache.commons.math3.geometry.euclidean.twod", + "org.apache.commons.math3.geometry.partitioning", + "org.apache.commons.math3.geometry.partitioning.utilities", + "org.apache.commons.math3.linear", + "org.apache.commons.math3.ml.clustering", + "org.apache.commons.math3.ml.distance", + "org.apache.commons.math3.ode", + "org.apache.commons.math3.ode.events", + "org.apache.commons.math3.ode.nonstiff", + "org.apache.commons.math3.ode.sampling", + "org.apache.commons.math3.optim", + "org.apache.commons.math3.optim.linear", + "org.apache.commons.math3.optim.nonlinear.scalar", + "org.apache.commons.math3.optim.nonlinear.scalar.gradient", + "org.apache.commons.math3.optim.nonlinear.scalar.noderiv", + "org.apache.commons.math3.optim.nonlinear.vector", + "org.apache.commons.math3.optim.nonlinear.vector.jacobian", + "org.apache.commons.math3.optim.univariate", + "org.apache.commons.math3.optimization", + "org.apache.commons.math3.optimization.direct", + "org.apache.commons.math3.optimization.fitting", + "org.apache.commons.math3.optimization.general", + "org.apache.commons.math3.optimization.linear", + "org.apache.commons.math3.optimization.univariate", + "org.apache.commons.math3.primes", + "org.apache.commons.math3.random", + "org.apache.commons.math3.special", + "org.apache.commons.math3.stat", + "org.apache.commons.math3.stat.clustering", + "org.apache.commons.math3.stat.correlation", + "org.apache.commons.math3.stat.descriptive", + "org.apache.commons.math3.stat.descriptive.moment", + "org.apache.commons.math3.stat.descriptive.rank", + "org.apache.commons.math3.stat.descriptive.summary", + "org.apache.commons.math3.stat.inference", + "org.apache.commons.math3.stat.ranking", + "org.apache.commons.math3.stat.regression", + "org.apache.commons.math3.transform", + "org.apache.commons.math3.util" + ], + "sha256": "6268a9a0ea3e769fc493a21446664c0ef668e48c93d126791f6f3f757978fee2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar" + }, + { + "coord": "org.apache.commons:commons-text:1.10.0", + "dependencies": [ + "org.apache.commons:commons-lang3:3.12.0" + ], + "directDependencies": [ + "org.apache.commons:commons-lang3:3.12.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://packages.confluent.io/maven/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://jitpack.io/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://repository.apache.org/snapshots/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar", + "https://maven.google.com/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar" + ], + "packages": [ + "org.apache.commons.text", + "org.apache.commons.text.diff", + "org.apache.commons.text.io", + "org.apache.commons.text.lookup", + "org.apache.commons.text.matcher", + "org.apache.commons.text.numbers", + "org.apache.commons.text.similarity", + "org.apache.commons.text.translate" + ], + "sha256": "770cd903fa7b604d1f7ef7ba17f84108667294b2b478be8ed1af3bffb4ae0018", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar" + }, + { + "coord": "org.apache.directory.api:api-all:1.0.0-M33", + "dependencies": [ + "commons-collections:commons-collections:3.2.2", + "commons-io:commons-io:2.4", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.dom4j:1.6.1_5", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.xpp3:1.1.4c_6", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "commons-io:commons-io:2.4", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.dom4j:1.6.1_5", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.xpp3:1.1.4c_6", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://jitpack.io/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar", + "https://maven.google.com/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar" + ], + "packages": [ + "org.apache.directory.api.asn1", + "org.apache.directory.api.asn1.actions", + "org.apache.directory.api.asn1.ber", + "org.apache.directory.api.asn1.ber.grammar", + "org.apache.directory.api.asn1.ber.tlv", + "org.apache.directory.api.asn1.util", + "org.apache.directory.api.dsmlv2", + "org.apache.directory.api.dsmlv2.actions", + "org.apache.directory.api.dsmlv2.engine", + "org.apache.directory.api.dsmlv2.request", + "org.apache.directory.api.dsmlv2.response", + "org.apache.directory.api.i18n", + "org.apache.directory.api.ldap.aci", + "org.apache.directory.api.ldap.aci.protectedItem", + "org.apache.directory.api.ldap.codec", + "org.apache.directory.api.ldap.codec.actions", + "org.apache.directory.api.ldap.codec.actions.abandonRequest", + "org.apache.directory.api.ldap.codec.actions.addRequest", + "org.apache.directory.api.ldap.codec.actions.addResponse", + "org.apache.directory.api.ldap.codec.actions.bindRequest", + "org.apache.directory.api.ldap.codec.actions.bindResponse", + "org.apache.directory.api.ldap.codec.actions.compareRequest", + "org.apache.directory.api.ldap.codec.actions.compareResponse", + "org.apache.directory.api.ldap.codec.actions.controls", + "org.apache.directory.api.ldap.codec.actions.delRequest", + "org.apache.directory.api.ldap.codec.actions.delResponse", + "org.apache.directory.api.ldap.codec.actions.extendedRequest", + "org.apache.directory.api.ldap.codec.actions.extendedResponse", + "org.apache.directory.api.ldap.codec.actions.intermediateResponse", + "org.apache.directory.api.ldap.codec.actions.ldapMessage", + "org.apache.directory.api.ldap.codec.actions.ldapResult", + "org.apache.directory.api.ldap.codec.actions.modifyDnRequest", + "org.apache.directory.api.ldap.codec.actions.modifyDnResponse", + "org.apache.directory.api.ldap.codec.actions.modifyRequest", + "org.apache.directory.api.ldap.codec.actions.modifyResponse", + "org.apache.directory.api.ldap.codec.actions.searchRequest", + "org.apache.directory.api.ldap.codec.actions.searchRequest.filter", + "org.apache.directory.api.ldap.codec.actions.searchResultDone", + "org.apache.directory.api.ldap.codec.actions.searchResultEntry", + "org.apache.directory.api.ldap.codec.actions.searchResultReference", + "org.apache.directory.api.ldap.codec.actions.unbindRequest", + "org.apache.directory.api.ldap.codec.api", + "org.apache.directory.api.ldap.codec.controls.cascade", + "org.apache.directory.api.ldap.codec.controls.manageDsaIT", + "org.apache.directory.api.ldap.codec.controls.proxiedauthz", + "org.apache.directory.api.ldap.codec.controls.search.entryChange", + "org.apache.directory.api.ldap.codec.controls.search.pagedSearch", + "org.apache.directory.api.ldap.codec.controls.search.persistentSearch", + "org.apache.directory.api.ldap.codec.controls.search.subentries", + "org.apache.directory.api.ldap.codec.controls.sort", + "org.apache.directory.api.ldap.codec.decorators", + "org.apache.directory.api.ldap.codec.osgi", + "org.apache.directory.api.ldap.codec.protocol.mina", + "org.apache.directory.api.ldap.codec.search", + "org.apache.directory.api.ldap.codec.standalone", + "org.apache.directory.api.ldap.extras", + "org.apache.directory.api.ldap.extras.controls", + "org.apache.directory.api.ldap.extras.controls.ad", + "org.apache.directory.api.ldap.extras.controls.ad_impl", + "org.apache.directory.api.ldap.extras.controls.ppolicy", + "org.apache.directory.api.ldap.extras.controls.ppolicy_impl", + "org.apache.directory.api.ldap.extras.controls.syncrepl.syncDone", + "org.apache.directory.api.ldap.extras.controls.syncrepl.syncInfoValue", + "org.apache.directory.api.ldap.extras.controls.syncrepl.syncState", + "org.apache.directory.api.ldap.extras.controls.syncrepl_impl", + "org.apache.directory.api.ldap.extras.controls.vlv", + "org.apache.directory.api.ldap.extras.controls.vlv_impl", + "org.apache.directory.api.ldap.extras.extended.ads_impl.cancel", + "org.apache.directory.api.ldap.extras.extended.ads_impl.certGeneration", + "org.apache.directory.api.ldap.extras.extended.ads_impl.gracefulDisconnect", + "org.apache.directory.api.ldap.extras.extended.ads_impl.gracefulShutdown", + "org.apache.directory.api.ldap.extras.extended.ads_impl.pwdModify", + "org.apache.directory.api.ldap.extras.extended.ads_impl.startTls", + "org.apache.directory.api.ldap.extras.extended.ads_impl.storedProcedure", + "org.apache.directory.api.ldap.extras.extended.ads_impl.whoAmI", + "org.apache.directory.api.ldap.extras.extended.cancel", + "org.apache.directory.api.ldap.extras.extended.certGeneration", + "org.apache.directory.api.ldap.extras.extended.gracefulDisconnect", + "org.apache.directory.api.ldap.extras.extended.gracefulShutdown", + "org.apache.directory.api.ldap.extras.extended.pwdModify", + "org.apache.directory.api.ldap.extras.extended.startTls", + "org.apache.directory.api.ldap.extras.extended.storedProcedure", + "org.apache.directory.api.ldap.extras.extended.whoAmI", + "org.apache.directory.api.ldap.model.constants", + "org.apache.directory.api.ldap.model.csn", + "org.apache.directory.api.ldap.model.cursor", + "org.apache.directory.api.ldap.model.entry", + "org.apache.directory.api.ldap.model.exception", + "org.apache.directory.api.ldap.model.filter", + "org.apache.directory.api.ldap.model.ldif", + "org.apache.directory.api.ldap.model.ldif.anonymizer", + "org.apache.directory.api.ldap.model.message", + "org.apache.directory.api.ldap.model.message.controls", + "org.apache.directory.api.ldap.model.message.extended", + "org.apache.directory.api.ldap.model.name", + "org.apache.directory.api.ldap.model.password", + "org.apache.directory.api.ldap.model.schema", + "org.apache.directory.api.ldap.model.schema.comparators", + "org.apache.directory.api.ldap.model.schema.normalizers", + "org.apache.directory.api.ldap.model.schema.parsers", + "org.apache.directory.api.ldap.model.schema.registries", + "org.apache.directory.api.ldap.model.schema.registries.helper", + "org.apache.directory.api.ldap.model.schema.syntaxCheckers", + "org.apache.directory.api.ldap.model.schema.syntaxes", + "org.apache.directory.api.ldap.model.subtree", + "org.apache.directory.api.ldap.model.url", + "org.apache.directory.api.ldap.schema.converter", + "org.apache.directory.api.ldap.schema.extractor", + "org.apache.directory.api.ldap.schema.extractor.impl", + "org.apache.directory.api.ldap.schema.loader", + "org.apache.directory.api.ldap.schema.manager.impl", + "org.apache.directory.api.ldap.sp", + "org.apache.directory.api.ldap.trigger", + "org.apache.directory.api.ldap.util", + "org.apache.directory.api.ldap.util.tree", + "org.apache.directory.api.util", + "org.apache.directory.api.util.exception", + "org.apache.directory.ldap.client.api", + "org.apache.directory.ldap.client.api.callback", + "org.apache.directory.ldap.client.api.exception", + "org.apache.directory.ldap.client.api.future", + "org.apache.directory.ldap.client.api.search", + "org.apache.directory.ldap.client.template", + "org.apache.directory.ldap.client.template.exception" + ], + "sha256": "0960f6b3919a46956b7f602bc82649922ff67ec9555814a97729a0309af2730a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-all/1.0.0-M33/api-all-1.0.0-M33.jar" + }, + { + "coord": "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "dependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1" + ], + "directDependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.asn1", + "org.apache.directory.api.asn1.util" + ], + "sha256": "c2cb9b4d9975e5f51381c77f2b287ea429236d0bc4ed3f3ff08ee30fea4010c0", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-asn1-api/1.0.0-RC1/api-asn1-api-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "dependencies": [ + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.asn1.actions", + "org.apache.directory.api.asn1.ber", + "org.apache.directory.api.asn1.ber.grammar", + "org.apache.directory.api.asn1.ber.tlv" + ], + "sha256": "53ca9598466a9fe9a3ede87cc0742dc2c8a497fe629fc71511430d2ebb973bd2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-asn1-ber/1.0.0-RC1/api-asn1-ber-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-i18n:1.0.0-RC1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.i18n" + ], + "sha256": "1b928b5b35d8fd3ac84c071ee49f866febe6c7fcffb4a4d4af4854110b9a159f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-i18n/1.0.0-RC1/api-i18n-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-pool:commons-pool:1.6", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.ldap.client.api", + "org.apache.directory.ldap.client.api.callback", + "org.apache.directory.ldap.client.api.exception", + "org.apache.directory.ldap.client.api.future", + "org.apache.directory.ldap.client.api.search", + "org.apache.directory.ldap.client.template", + "org.apache.directory.ldap.client.template.exception" + ], + "sha256": "675f8641357b5844526e5fc5fd1819a5b0ecf9d5157bc0892a994693c810a0df", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-client-api/1.0.0-RC1/api-ldap-client-api-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.codec", + "org.apache.directory.api.ldap.codec.actions", + "org.apache.directory.api.ldap.codec.actions.abandonRequest", + "org.apache.directory.api.ldap.codec.actions.addRequest", + "org.apache.directory.api.ldap.codec.actions.addResponse", + "org.apache.directory.api.ldap.codec.actions.bindRequest", + "org.apache.directory.api.ldap.codec.actions.bindResponse", + "org.apache.directory.api.ldap.codec.actions.compareRequest", + "org.apache.directory.api.ldap.codec.actions.compareResponse", + "org.apache.directory.api.ldap.codec.actions.controls", + "org.apache.directory.api.ldap.codec.actions.delRequest", + "org.apache.directory.api.ldap.codec.actions.delResponse", + "org.apache.directory.api.ldap.codec.actions.extendedRequest", + "org.apache.directory.api.ldap.codec.actions.extendedResponse", + "org.apache.directory.api.ldap.codec.actions.intermediateResponse", + "org.apache.directory.api.ldap.codec.actions.ldapMessage", + "org.apache.directory.api.ldap.codec.actions.ldapResult", + "org.apache.directory.api.ldap.codec.actions.modifyDnRequest", + "org.apache.directory.api.ldap.codec.actions.modifyDnResponse", + "org.apache.directory.api.ldap.codec.actions.modifyRequest", + "org.apache.directory.api.ldap.codec.actions.modifyResponse", + "org.apache.directory.api.ldap.codec.actions.searchRequest", + "org.apache.directory.api.ldap.codec.actions.searchRequest.filter", + "org.apache.directory.api.ldap.codec.actions.searchResultDone", + "org.apache.directory.api.ldap.codec.actions.searchResultEntry", + "org.apache.directory.api.ldap.codec.actions.searchResultReference", + "org.apache.directory.api.ldap.codec.actions.unbindRequest", + "org.apache.directory.api.ldap.codec.api", + "org.apache.directory.api.ldap.codec.controls.cascade", + "org.apache.directory.api.ldap.codec.controls.manageDsaIT", + "org.apache.directory.api.ldap.codec.controls.proxiedauthz", + "org.apache.directory.api.ldap.codec.controls.search.entryChange", + "org.apache.directory.api.ldap.codec.controls.search.pagedSearch", + "org.apache.directory.api.ldap.codec.controls.search.persistentSearch", + "org.apache.directory.api.ldap.codec.controls.search.subentries", + "org.apache.directory.api.ldap.codec.controls.sort", + "org.apache.directory.api.ldap.codec.decorators", + "org.apache.directory.api.ldap.codec.osgi", + "org.apache.directory.api.ldap.codec.search" + ], + "sha256": "06b5160fce9ea9594df25ff840457d5292d4947f1d6859b87b35e62e0144de15", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-codec-core/1.0.0-RC1/api-ldap-codec-core-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.aci", + "org.apache.directory.api.ldap.aci.protectedItem" + ], + "sha256": "11fdacd39c2b1ac151a94161d4f97f4255dcac85c78d24f8fed3b10e8a6ed13e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-aci/1.0.0-RC1/api-ldap-extras-aci-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.extras.controls", + "org.apache.directory.api.ldap.extras.controls.ad", + "org.apache.directory.api.ldap.extras.controls.changeNotifications", + "org.apache.directory.api.ldap.extras.controls.permissiveModify", + "org.apache.directory.api.ldap.extras.controls.ppolicy", + "org.apache.directory.api.ldap.extras.controls.syncrepl.syncDone", + "org.apache.directory.api.ldap.extras.controls.syncrepl.syncInfoValue", + "org.apache.directory.api.ldap.extras.controls.syncrepl.syncState", + "org.apache.directory.api.ldap.extras.controls.vlv", + "org.apache.directory.api.ldap.extras.extended.cancel", + "org.apache.directory.api.ldap.extras.extended.certGeneration", + "org.apache.directory.api.ldap.extras.extended.gracefulDisconnect", + "org.apache.directory.api.ldap.extras.extended.gracefulShutdown", + "org.apache.directory.api.ldap.extras.extended.pwdModify", + "org.apache.directory.api.ldap.extras.extended.startTls", + "org.apache.directory.api.ldap.extras.extended.storedProcedure", + "org.apache.directory.api.ldap.extras.extended.whoAmI" + ], + "sha256": "a1b6e1533378bad664c911ee2f620ff4dd891eb60945e0909f9b5ed084337d87", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-codec-api/1.0.0-RC1/api-ldap-extras-codec-api-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.extras", + "org.apache.directory.api.ldap.extras.controls.ad_impl", + "org.apache.directory.api.ldap.extras.controls.changeNotifications_impl", + "org.apache.directory.api.ldap.extras.controls.permissiveModify_impl", + "org.apache.directory.api.ldap.extras.controls.ppolicy_impl", + "org.apache.directory.api.ldap.extras.controls.syncrepl_impl", + "org.apache.directory.api.ldap.extras.controls.vlv_impl", + "org.apache.directory.api.ldap.extras.extended.ads_impl.cancel", + "org.apache.directory.api.ldap.extras.extended.ads_impl.certGeneration", + "org.apache.directory.api.ldap.extras.extended.ads_impl.gracefulDisconnect", + "org.apache.directory.api.ldap.extras.extended.ads_impl.gracefulShutdown", + "org.apache.directory.api.ldap.extras.extended.ads_impl.pwdModify", + "org.apache.directory.api.ldap.extras.extended.ads_impl.startTls", + "org.apache.directory.api.ldap.extras.extended.ads_impl.storedProcedure", + "org.apache.directory.api.ldap.extras.extended.ads_impl.whoAmI" + ], + "sha256": "4b979d7a37793a009251461a29b09ffa896e6474bfb452d40cbb7b03278cf0c6", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-codec/1.0.0-RC1/api-ldap-extras-codec-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-extras-sp:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.sp" + ], + "sha256": "4e8e25a7c04a42d48ca43aaa7b8c8b7c098425d345f71b970e19627f2fb38f1c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-sp/1.0.0-RC1/api-ldap-extras-sp-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-extras-trigger:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.trigger" + ], + "sha256": "44af0f8ad28adb455ce76f9612e3fbbc84b376a0a36c353a0dd335d81771288b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-trigger/1.0.0-RC1/api-ldap-extras-trigger-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.util", + "org.apache.directory.api.ldap.util.tree" + ], + "sha256": "2670704d330f70c6ead4ad0e7d0395ff2e9e96a96ef42fb66cb3862e3b14fd32", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-extras-util/1.0.0-RC1/api-ldap-extras-util-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.ldap.model.constants", + "org.apache.directory.api.ldap.model.csn", + "org.apache.directory.api.ldap.model.cursor", + "org.apache.directory.api.ldap.model.entry", + "org.apache.directory.api.ldap.model.exception", + "org.apache.directory.api.ldap.model.filter", + "org.apache.directory.api.ldap.model.ldif", + "org.apache.directory.api.ldap.model.ldif.anonymizer", + "org.apache.directory.api.ldap.model.message", + "org.apache.directory.api.ldap.model.message.controls", + "org.apache.directory.api.ldap.model.message.extended", + "org.apache.directory.api.ldap.model.name", + "org.apache.directory.api.ldap.model.password", + "org.apache.directory.api.ldap.model.schema", + "org.apache.directory.api.ldap.model.schema.comparators", + "org.apache.directory.api.ldap.model.schema.normalizers", + "org.apache.directory.api.ldap.model.schema.parsers", + "org.apache.directory.api.ldap.model.schema.registries", + "org.apache.directory.api.ldap.model.schema.registries.helper", + "org.apache.directory.api.ldap.model.schema.syntaxCheckers", + "org.apache.directory.api.ldap.model.schema.syntaxes", + "org.apache.directory.api.ldap.model.subtree", + "org.apache.directory.api.ldap.model.url" + ], + "sha256": "2f441865cc7766e156c59be6cd7a6153b52c18e537de59025c22e8d585abc8be", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-ldap-model/1.0.0-RC1/api-ldap-model-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.api:api-util:1.0.0-RC1", + "dependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://packages.confluent.io/maven/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://jitpack.io/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://repo1.maven.org/maven2/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://repository.apache.org/snapshots/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar", + "https://maven.google.com/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar" + ], + "packages": [ + "org.apache.directory.api.util", + "org.apache.directory.api.util.exception" + ], + "sha256": "8196b4a71d01c04c321d38da32649add8cd8485d2a52ffc32f8b130b9ecfee51", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/api/api-util/1.0.0-RC1/api-util-1.0.0-RC1.jar" + }, + { + "coord": "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://packages.confluent.io/maven/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://jitpack.io/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://repo1.maven.org/maven2/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://repository.apache.org/snapshots/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar", + "https://maven.google.com/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar" + ], + "packages": [ + "jdbm", + "jdbm.btree", + "jdbm.helper", + "jdbm.htree", + "jdbm.recman" + ], + "sha256": "9eeab7949fb6a1589164aee185bdbf89156fa20c3fd5d155b424069485d0ff78", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/jdbm/apacheds-jdbm1/2.0.0-M3/apacheds-jdbm1-2.0.0-M3.jar" + }, + { + "coord": "org.apache.directory.mavibot:mavibot:1.0.0-M8", + "dependencies": [ + "commons-collections:commons-collections:3.2.2", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://packages.confluent.io/maven/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://jitpack.io/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://repo1.maven.org/maven2/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://repository.apache.org/snapshots/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar", + "https://maven.google.com/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar" + ], + "packages": [ + "org.apache.directory.mavibot.btree", + "org.apache.directory.mavibot.btree.comparator", + "org.apache.directory.mavibot.btree.exception", + "org.apache.directory.mavibot.btree.memory", + "org.apache.directory.mavibot.btree.persisted", + "org.apache.directory.mavibot.btree.serializer", + "org.apache.directory.mavibot.btree.util" + ], + "sha256": "76b991aa38dd491974b4fc2f5aef226d83e8ef85e0fab8fe71b067a97a8c753f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/mavibot/mavibot/1.0.0-M8/mavibot-1.0.0-M8.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.api", + "org.apache.directory.server.core.api.administrative", + "org.apache.directory.server.core.api.authn.ppolicy", + "org.apache.directory.server.core.api.changelog", + "org.apache.directory.server.core.api.entry", + "org.apache.directory.server.core.api.event", + "org.apache.directory.server.core.api.filtering", + "org.apache.directory.server.core.api.interceptor", + "org.apache.directory.server.core.api.interceptor.context", + "org.apache.directory.server.core.api.journal", + "org.apache.directory.server.core.api.normalization", + "org.apache.directory.server.core.api.partition", + "org.apache.directory.server.core.api.schema", + "org.apache.directory.server.core.api.schema.registries.synchronizers", + "org.apache.directory.server.core.api.sp", + "org.apache.directory.server.core.api.sp.java", + "org.apache.directory.server.core.api.subtree" + ], + "sha256": "6f18103017ca1d12d36e726ea7ac7c20ccef84024395480528a819ecb98df161", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-api/2.0.0-M22/apacheds-core-api-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.avltree", + "org.apache.directory.server.core.avltree.avl" + ], + "sha256": "6f94d1487c00b24b9a0f28da273566f46bda6cb42c9f087938ae07827bf41c51", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-avl/2.0.0-M22/apacheds-core-avl-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.constants" + ], + "sha256": "85a958d53390b796158d88ae00d4244aeb691f533d76380fd88581be0a33a462", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-constants/2.0.0-M22/apacheds-core-constants-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.shared", + "org.apache.directory.server.core.shared.partition" + ], + "sha256": "9959d6b8b47840de101d171143c8c4e1a7f6fcedd56bd4af3d6ebd8999536178", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core-shared/2.0.0-M22/apacheds-core-shared-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-core:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-trigger:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-admin:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authn:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authz:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-changelog:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-collective:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-event:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-exception:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-journal:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-normalization:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-number:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-operational:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-referral:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-schema:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-subtree:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-trigger:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.bouncycastle:bcprov-jdk15on:1.68", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-admin:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authn:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authz:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-changelog:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-collective:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-event:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-exception:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-journal:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-normalization:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-number:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-operational:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-referral:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-schema:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-subtree:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-trigger:2.0.0-M22", + "org.bouncycastle:bcprov-jdk15on:1.68", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core", + "org.apache.directory.server.core.security" + ], + "sha256": "7196b88991fcff619fa7a432bb177386c3b4f925399017e7a2639badd212a8d1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-core/2.0.0-M22/apacheds-core-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.i18n" + ], + "sha256": "b30f49d7ee90dff2ce1c055a82c4af840dbcffe5f3b4a124c4e1ef0a32c52355", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-i18n/2.0.0-M22/apacheds-i18n-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptor-kerberos:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-trigger:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-core:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-admin:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authn:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authz:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-changelog:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-collective:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-event:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-exception:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-journal:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-normalization:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-number:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-operational:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-referral:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-schema:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-subtree:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-trigger:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.bouncycastle:bcprov-jdk15on:1.68", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.kerberos" + ], + "sha256": "848f449fa4ad8b0654002244fea66b10857bb2b1bff38aa02fb51e0c2dd713cb", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptor-kerberos/2.0.0-M22/apacheds-interceptor-kerberos-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-admin:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.admin" + ], + "sha256": "d599863f037c33c1a88ae3c8f4846078532d8f8cbb475b4e155b70af3a473122", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-admin/2.0.0-M22/apacheds-interceptors-admin-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-authn:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.authn", + "org.apache.directory.server.core.authn.ppolicy" + ], + "sha256": "fa0d2d66d767f551083be09491446b9d271252d60b5f707ffec548683ca09cbd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-authn/2.0.0-M22/apacheds-interceptors-authn-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-authz:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.authz", + "org.apache.directory.server.core.authz.support" + ], + "sha256": "a40df8916201e8bbfb861d13ac0946bc292303b319f69c4a825edb249833918f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-authz/2.0.0-M22/apacheds-interceptors-authz-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-changelog:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.changelog" + ], + "sha256": "f140decc14259dfef4640e7c5479edb574da5cdf4de1384c1386e89651957686", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-changelog/2.0.0-M22/apacheds-interceptors-changelog-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-collective:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.collective" + ], + "sha256": "77b20b83414c938b3e5654795c87e88221d05d65951006aeb72841ffb10190b9", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-collective/2.0.0-M22/apacheds-interceptors-collective-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-event:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.event" + ], + "sha256": "3122a0a708ca35a2526632857a28f22d118722b94aa83dc00d6756986b0c4010", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-event/2.0.0-M22/apacheds-interceptors-event-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-exception:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.exception" + ], + "sha256": "9b51f89a1191c7a4c833ad63e4b90f2b2449642162b9a05874ba86c1139d4a58", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-exception/2.0.0-M22/apacheds-interceptors-exception-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-journal:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.journal" + ], + "sha256": "b96770fbc7054dcd53838338910ddc8ba08502e160118c24b7e00159637b18b2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-journal/2.0.0-M22/apacheds-interceptors-journal-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-normalization:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.normalization" + ], + "sha256": "aa6a161351aaa106ac303adc1f381ec589b2c2be054883431160d50ef9b143ab", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-normalization/2.0.0-M22/apacheds-interceptors-normalization-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-number:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.number" + ], + "sha256": "553141d7d995356ed0e2a3691258883ae85824df4af85ccfd49f7de6d02e0e9f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-number/2.0.0-M22/apacheds-interceptors-number-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-operational:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.operational" + ], + "sha256": "e343616dc80aa8f507a520e56ef5350da7bf306eed8438796731797e9c88f7fe", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-operational/2.0.0-M22/apacheds-interceptors-operational-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-referral:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.referral" + ], + "sha256": "d119a728dddb9d84a9454b34c1644a965e32045a7b22e1684bff6696e2c613fd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-referral/2.0.0-M22/apacheds-interceptors-referral-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-schema:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.schema" + ], + "sha256": "3f7d359e0afcd63f322a6a00919fbb2ee19cee024122dcc470ee60333ccdcc04", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-schema/2.0.0-M22/apacheds-interceptors-schema-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-subtree:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.subtree" + ], + "sha256": "591aefb32c5832334ec9ad907399abc7812b3214c9662472c40959af6a6d78bf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-subtree/2.0.0-M22/apacheds-interceptors-subtree-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-interceptors-trigger:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-trigger:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-extras-trigger:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.trigger" + ], + "sha256": "a0b55d845901425158a7d4b73314f032d979a109fda6e49b42ad085490b92a3e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-interceptors-trigger/2.0.0-M22/apacheds-interceptors-trigger-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-jdbm-partition:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.partition.impl.btree.jdbm" + ], + "sha256": "8b0291b10fd046af4e31ed19a703f9595b61f0c38f114e0006b3fafbba8f4eaf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-jdbm-partition/2.0.0-M22/apacheds-jdbm-partition-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.kerberos.changepwd.exceptions", + "org.apache.directory.server.kerberos.changepwd.io", + "org.apache.directory.server.kerberos.changepwd.messages", + "org.apache.directory.server.kerberos.shared.crypto.checksum", + "org.apache.directory.server.kerberos.shared.crypto.encryption", + "org.apache.directory.server.kerberos.shared.keytab", + "org.apache.directory.server.kerberos.shared.replay", + "org.apache.directory.server.kerberos.shared.store", + "org.apache.directory.shared.kerberos", + "org.apache.directory.shared.kerberos.codec", + "org.apache.directory.shared.kerberos.codec.EncKdcRepPart", + "org.apache.directory.shared.kerberos.codec.EncKdcRepPart.actions", + "org.apache.directory.shared.kerberos.codec.actions", + "org.apache.directory.shared.kerberos.codec.adAndOr", + "org.apache.directory.shared.kerberos.codec.adAndOr.actions", + "org.apache.directory.shared.kerberos.codec.adIfRelevant", + "org.apache.directory.shared.kerberos.codec.adKdcIssued", + "org.apache.directory.shared.kerberos.codec.adKdcIssued.actions", + "org.apache.directory.shared.kerberos.codec.adMandatoryForKdc", + "org.apache.directory.shared.kerberos.codec.apRep", + "org.apache.directory.shared.kerberos.codec.apRep.actions", + "org.apache.directory.shared.kerberos.codec.apReq", + "org.apache.directory.shared.kerberos.codec.apReq.actions", + "org.apache.directory.shared.kerberos.codec.asRep", + "org.apache.directory.shared.kerberos.codec.asRep.actions", + "org.apache.directory.shared.kerberos.codec.asReq", + "org.apache.directory.shared.kerberos.codec.asReq.actions", + "org.apache.directory.shared.kerberos.codec.authenticator", + "org.apache.directory.shared.kerberos.codec.authenticator.actions", + "org.apache.directory.shared.kerberos.codec.authorizationData", + "org.apache.directory.shared.kerberos.codec.authorizationData.actions", + "org.apache.directory.shared.kerberos.codec.changePwdData", + "org.apache.directory.shared.kerberos.codec.changePwdData.actions", + "org.apache.directory.shared.kerberos.codec.checksum", + "org.apache.directory.shared.kerberos.codec.checksum.actions", + "org.apache.directory.shared.kerberos.codec.encApRepPart", + "org.apache.directory.shared.kerberos.codec.encApRepPart.actions", + "org.apache.directory.shared.kerberos.codec.encAsRepPart", + "org.apache.directory.shared.kerberos.codec.encAsRepPart.actions", + "org.apache.directory.shared.kerberos.codec.encKrbCredPart", + "org.apache.directory.shared.kerberos.codec.encKrbCredPart.actions", + "org.apache.directory.shared.kerberos.codec.encKrbPrivPart", + "org.apache.directory.shared.kerberos.codec.encKrbPrivPart.actions", + "org.apache.directory.shared.kerberos.codec.encTgsRepPart", + "org.apache.directory.shared.kerberos.codec.encTgsRepPart.actions", + "org.apache.directory.shared.kerberos.codec.encTicketPart", + "org.apache.directory.shared.kerberos.codec.encTicketPart.actions", + "org.apache.directory.shared.kerberos.codec.encryptedData", + "org.apache.directory.shared.kerberos.codec.encryptedData.actions", + "org.apache.directory.shared.kerberos.codec.encryptionKey", + "org.apache.directory.shared.kerberos.codec.encryptionKey.actions", + "org.apache.directory.shared.kerberos.codec.etypeInfo", + "org.apache.directory.shared.kerberos.codec.etypeInfo.actions", + "org.apache.directory.shared.kerberos.codec.etypeInfo2", + "org.apache.directory.shared.kerberos.codec.etypeInfo2.actions", + "org.apache.directory.shared.kerberos.codec.etypeInfo2Entry", + "org.apache.directory.shared.kerberos.codec.etypeInfo2Entry.actions", + "org.apache.directory.shared.kerberos.codec.etypeInfoEntry", + "org.apache.directory.shared.kerberos.codec.etypeInfoEntry.actions", + "org.apache.directory.shared.kerberos.codec.hostAddress", + "org.apache.directory.shared.kerberos.codec.hostAddress.actions", + "org.apache.directory.shared.kerberos.codec.hostAddresses", + "org.apache.directory.shared.kerberos.codec.hostAddresses.actions", + "org.apache.directory.shared.kerberos.codec.kdcRep", + "org.apache.directory.shared.kerberos.codec.kdcRep.actions", + "org.apache.directory.shared.kerberos.codec.kdcReq", + "org.apache.directory.shared.kerberos.codec.kdcReq.actions", + "org.apache.directory.shared.kerberos.codec.kdcReqBody", + "org.apache.directory.shared.kerberos.codec.kdcReqBody.actions", + "org.apache.directory.shared.kerberos.codec.krbCred", + "org.apache.directory.shared.kerberos.codec.krbCred.actions", + "org.apache.directory.shared.kerberos.codec.krbCredInfo", + "org.apache.directory.shared.kerberos.codec.krbCredInfo.actions", + "org.apache.directory.shared.kerberos.codec.krbError", + "org.apache.directory.shared.kerberos.codec.krbError.actions", + "org.apache.directory.shared.kerberos.codec.krbPriv", + "org.apache.directory.shared.kerberos.codec.krbPriv.actions", + "org.apache.directory.shared.kerberos.codec.krbSafe", + "org.apache.directory.shared.kerberos.codec.krbSafe.actions", + "org.apache.directory.shared.kerberos.codec.krbSafeBody", + "org.apache.directory.shared.kerberos.codec.krbSafeBody.actions", + "org.apache.directory.shared.kerberos.codec.lastReq", + "org.apache.directory.shared.kerberos.codec.lastReq.actions", + "org.apache.directory.shared.kerberos.codec.methodData", + "org.apache.directory.shared.kerberos.codec.methodData.actions", + "org.apache.directory.shared.kerberos.codec.options", + "org.apache.directory.shared.kerberos.codec.paEncTimestamp", + "org.apache.directory.shared.kerberos.codec.paEncTsEnc", + "org.apache.directory.shared.kerberos.codec.paEncTsEnc.actions", + "org.apache.directory.shared.kerberos.codec.padata", + "org.apache.directory.shared.kerberos.codec.padata.actions", + "org.apache.directory.shared.kerberos.codec.principalName", + "org.apache.directory.shared.kerberos.codec.principalName.actions", + "org.apache.directory.shared.kerberos.codec.tgsRep", + "org.apache.directory.shared.kerberos.codec.tgsRep.actions", + "org.apache.directory.shared.kerberos.codec.tgsReq", + "org.apache.directory.shared.kerberos.codec.tgsReq.actions", + "org.apache.directory.shared.kerberos.codec.ticket", + "org.apache.directory.shared.kerberos.codec.ticket.actions", + "org.apache.directory.shared.kerberos.codec.transitedEncoding", + "org.apache.directory.shared.kerberos.codec.transitedEncoding.actions", + "org.apache.directory.shared.kerberos.codec.typedData", + "org.apache.directory.shared.kerberos.codec.typedData.actions", + "org.apache.directory.shared.kerberos.codec.types", + "org.apache.directory.shared.kerberos.components", + "org.apache.directory.shared.kerberos.crypto.checksum", + "org.apache.directory.shared.kerberos.exceptions", + "org.apache.directory.shared.kerberos.flags", + "org.apache.directory.shared.kerberos.messages" + ], + "sha256": "a91c9b46793b1f51cb4f24526abcf599beb678894432473cddbce053857070f9", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M22/apacheds-kerberos-codec-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-ldif-partition:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.partition.ldif" + ], + "sha256": "203d850f05c46823eec4693c18dbdf57ea61d558385a8158824a98733dd3525d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-ldif-partition/2.0.0-M22/apacheds-ldif-partition-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-mavibot-partition:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.mavibot:mavibot:1.0.0-M8", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.mavibot:mavibot:1.0.0-M8", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.partition.impl.btree.mavibot" + ], + "sha256": "9d80cbcb14b401aa1e6c4424083e45fdd1833c812eb57341e872c86becd7753b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-mavibot-partition/2.0.0-M22/apacheds-mavibot-partition-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-protocol-kerberos:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-shared:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-shared:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.kerberos", + "org.apache.directory.server.kerberos.changepwd", + "org.apache.directory.server.kerberos.changepwd.protocol", + "org.apache.directory.server.kerberos.changepwd.service", + "org.apache.directory.server.kerberos.kdc", + "org.apache.directory.server.kerberos.kdc.authentication", + "org.apache.directory.server.kerberos.kdc.ticketgrant", + "org.apache.directory.server.kerberos.protocol", + "org.apache.directory.server.kerberos.protocol.codec", + "org.apache.directory.server.kerberos.sam" + ], + "sha256": "44506ac8a3e9551b7170640fe8a244f18e4b72cbd40d97b4fc8466ff253f0c35", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-kerberos/2.0.0-M22/apacheds-protocol-kerberos-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-protocol-ldap:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-sp:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-trigger:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-core:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-admin:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authn:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-authz:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-changelog:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-collective:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-event:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-exception:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-journal:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-normalization:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-number:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-operational:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-referral:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-schema:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-subtree:2.0.0-M22", + "org.apache.directory.server:apacheds-interceptors-trigger:2.0.0-M22", + "org.apache.directory.server:apacheds-jdbm-partition:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.bouncycastle:bcprov-jdk15on:1.68", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-lang:commons-lang:2.6", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-sp:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-jdbm-partition:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.directory.server:apacheds-protocol-shared:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.bouncycastle:bcprov-jdk15on:1.68", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.ldap", + "org.apache.directory.server.ldap.handlers", + "org.apache.directory.server.ldap.handlers.controls", + "org.apache.directory.server.ldap.handlers.extended", + "org.apache.directory.server.ldap.handlers.request", + "org.apache.directory.server.ldap.handlers.response", + "org.apache.directory.server.ldap.handlers.sasl", + "org.apache.directory.server.ldap.handlers.sasl.cramMD5", + "org.apache.directory.server.ldap.handlers.sasl.digestMD5", + "org.apache.directory.server.ldap.handlers.sasl.gssapi", + "org.apache.directory.server.ldap.handlers.sasl.ntlm", + "org.apache.directory.server.ldap.handlers.sasl.plain", + "org.apache.directory.server.ldap.handlers.ssl", + "org.apache.directory.server.ldap.replication", + "org.apache.directory.server.ldap.replication.consumer", + "org.apache.directory.server.ldap.replication.provider" + ], + "sha256": "f71f67ba59cf9744d3ee42441988e77c0b8c25c5a3e7d576b00c4527228608c9", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-ldap/2.0.0-M22/apacheds-protocol-ldap-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-protocol-shared:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.protocol.shared", + "org.apache.directory.server.protocol.shared.catalog", + "org.apache.directory.server.protocol.shared.kerberos", + "org.apache.directory.server.protocol.shared.store", + "org.apache.directory.server.protocol.shared.transport" + ], + "sha256": "e46cf98f5eadda48c5671d6f6b203a0a05b7a7bda0273057d25c2f47c236c010", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-protocol-shared/2.0.0-M22/apacheds-protocol-shared-2.0.0-M22.jar" + }, + { + "coord": "org.apache.directory.server:apacheds-xdbm-partition:2.0.0-M22", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-collections:commons-collections:3.2.2", + "commons-lang:commons-lang:2.6", + "commons-pool:commons-pool:1.6", + "net.sf.ehcache:ehcache:2.8.5", + "org.apache.directory.api:api-asn1-api:1.0.0-RC1", + "org.apache.directory.api:api-asn1-ber:1.0.0-RC1", + "org.apache.directory.api:api-i18n:1.0.0-RC1", + "org.apache.directory.api:api-ldap-client-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-codec-core:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-aci:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec-api:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-codec:1.0.0-RC1", + "org.apache.directory.api:api-ldap-extras-util:1.0.0-RC1", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.jdbm:apacheds-jdbm1:2.0.0-M3", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-constants:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.apache.mina:mina-core:2.0.13", + "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "commons-collections:commons-collections:3.2.2", + "org.apache.directory.api:api-ldap-model:1.0.0-RC1", + "org.apache.directory.api:api-util:1.0.0-RC1", + "org.apache.directory.server:apacheds-core-api:2.0.0-M22", + "org.apache.directory.server:apacheds-core-avl:2.0.0-M22", + "org.apache.directory.server:apacheds-core-shared:2.0.0-M22", + "org.apache.directory.server:apacheds-i18n:2.0.0-M22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://packages.confluent.io/maven/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://jitpack.io/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://repo1.maven.org/maven2/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://repository.apache.org/snapshots/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar", + "https://maven.google.com/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar" + ], + "packages": [ + "org.apache.directory.server.core.partition.impl.avl", + "org.apache.directory.server.core.partition.impl.btree", + "org.apache.directory.server.xdbm", + "org.apache.directory.server.xdbm.impl.avl", + "org.apache.directory.server.xdbm.search", + "org.apache.directory.server.xdbm.search.cursor", + "org.apache.directory.server.xdbm.search.evaluator", + "org.apache.directory.server.xdbm.search.impl" + ], + "sha256": "851e9990da68cc9f3ad434175238949dfab0ef9ae0afdbdfecb2cd2e13fafeef", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/directory/server/apacheds-xdbm-partition/2.0.0-M22/apacheds-xdbm-partition-2.0.0-M22.jar" + }, + { + "coord": "org.apache.httpcomponents:httpclient:4.5.14", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://packages.confluent.io/maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://jitpack.io/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://repository.apache.org/snapshots/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar", + "https://maven.google.com/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar" + ], + "packages": [ + "org.apache.http.auth", + "org.apache.http.auth.params", + "org.apache.http.client", + "org.apache.http.client.config", + "org.apache.http.client.entity", + "org.apache.http.client.methods", + "org.apache.http.client.params", + "org.apache.http.client.protocol", + "org.apache.http.client.utils", + "org.apache.http.conn", + "org.apache.http.conn.params", + "org.apache.http.conn.routing", + "org.apache.http.conn.scheme", + "org.apache.http.conn.socket", + "org.apache.http.conn.ssl", + "org.apache.http.conn.util", + "org.apache.http.cookie", + "org.apache.http.cookie.params", + "org.apache.http.impl.auth", + "org.apache.http.impl.client", + "org.apache.http.impl.conn", + "org.apache.http.impl.conn.tsccm", + "org.apache.http.impl.cookie", + "org.apache.http.impl.execchain" + ], + "sha256": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar" + }, + { + "coord": "org.apache.httpcomponents:httpcore:4.4.16", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://packages.confluent.io/maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://jitpack.io/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://repository.apache.org/snapshots/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar", + "https://maven.google.com/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar" + ], + "packages": [ + "org.apache.http", + "org.apache.http.annotation", + "org.apache.http.concurrent", + "org.apache.http.config", + "org.apache.http.entity", + "org.apache.http.impl", + "org.apache.http.impl.bootstrap", + "org.apache.http.impl.entity", + "org.apache.http.impl.io", + "org.apache.http.impl.pool", + "org.apache.http.io", + "org.apache.http.message", + "org.apache.http.params", + "org.apache.http.pool", + "org.apache.http.protocol", + "org.apache.http.ssl", + "org.apache.http.util" + ], + "sha256": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar" + }, + { + "coord": "org.apache.kafka:connect-api:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "javax.ws.rs:javax.ws.rs-api:2.1.1", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "javax.ws.rs:javax.ws.rs-api:2.1.1", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.connect.components", + "org.apache.kafka.connect.connector", + "org.apache.kafka.connect.connector.policy", + "org.apache.kafka.connect.data", + "org.apache.kafka.connect.errors", + "org.apache.kafka.connect.header", + "org.apache.kafka.connect.health", + "org.apache.kafka.connect.rest", + "org.apache.kafka.connect.sink", + "org.apache.kafka.connect.source", + "org.apache.kafka.connect.storage", + "org.apache.kafka.connect.transforms", + "org.apache.kafka.connect.transforms.predicates", + "org.apache.kafka.connect.util" + ], + "sha256": "186721240862d1baf3c43051e6b7d59dd623f6cef16ee43f7ed6f7bfbbfd895a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-api/7.5.0-187-ccs/connect-api-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:connect-file:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "javax.ws.rs:javax.ws.rs-api:2.1.1", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.connect.file" + ], + "sha256": "dea7c744dd71aa45152f6a57ceeb0074b5625d103d52b6c97aed2f299f0739f0", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-file/7.5.0-187-ccs/connect-file-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:connect-json:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.github.luben:zstd-jni:1.5.5-1", + "javax.ws.rs:javax.ws.rs-api:2.1.1", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.connect.json" + ], + "sha256": "b914ce2707c0e47751bb1635380dbf37e0ec675d289d1b69f2431d67474d432f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-json/7.5.0-187-ccs/connect-json-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:connect-runtime:7.5.0-187-ccs", + "dependencies": [ + "ch.qos.reload4j:reload4j:1.2.22", + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "io.swagger.core.v3:swagger-annotations:2.2.8", + "javax.activation:activation:1.1.1", + "javax.servlet:javax.servlet-api:3.1.0", + "javax.ws.rs:javax.ws.rs-api:2.1.1", + "javax.xml.bind:jaxb-api:2.3.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.commons:commons-lang3:3.12.0", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.apache.kafka:connect-json:7.5.0-187-ccs", + "org.apache.kafka:connect-transforms:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-log4j-appender:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools:7.5.0-187-ccs", + "org.apache.maven:maven-artifact:3.8.4", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.codehaus.plexus:plexus-utils:3.3.0", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-continuation:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlets:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "org.glassfish.jersey.containers:jersey-container-servlet:2.36", + "org.glassfish.jersey.inject:jersey-hk2:2.36", + "org.javassist:javassist:3.27.0-GA", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.reflections:reflections:0.9.12", + "org.slf4j:slf4j-api:2.0.3", + "org.slf4j:slf4j-log4j12:1.7.36", + "org.slf4j:slf4j-reload4j:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "ch.qos.reload4j:reload4j:1.2.22", + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "io.swagger.core.v3:swagger-annotations:2.2.8", + "javax.activation:activation:1.1.1", + "javax.xml.bind:jaxb-api:2.3.0", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.apache.kafka:connect-json:7.5.0-187-ccs", + "org.apache.kafka:connect-transforms:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools:7.5.0-187-ccs", + "org.apache.maven:maven-artifact:3.8.4", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlets:9.4.48.v20220622", + "org.glassfish.jersey.containers:jersey-container-servlet:2.36", + "org.glassfish.jersey.inject:jersey-hk2:2.36", + "org.reflections:reflections:0.9.12", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.connect.cli", + "org.apache.kafka.connect.connector.policy", + "org.apache.kafka.connect.converters", + "org.apache.kafka.connect.runtime", + "org.apache.kafka.connect.runtime.distributed", + "org.apache.kafka.connect.runtime.errors", + "org.apache.kafka.connect.runtime.health", + "org.apache.kafka.connect.runtime.isolation", + "org.apache.kafka.connect.runtime.rest", + "org.apache.kafka.connect.runtime.rest.entities", + "org.apache.kafka.connect.runtime.rest.errors", + "org.apache.kafka.connect.runtime.rest.resources", + "org.apache.kafka.connect.runtime.rest.util", + "org.apache.kafka.connect.runtime.standalone", + "org.apache.kafka.connect.storage", + "org.apache.kafka.connect.tools", + "org.apache.kafka.connect.util" + ], + "sha256": "3dc2ad7573de20cff50d4245792617fd1a98c699b7b18e251c104ed1b212c37d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-runtime/7.5.0-187-ccs/connect-runtime-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:connect-transforms:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "javax.ws.rs:javax.ws.rs-api:2.1.1", + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "org.apache.kafka:connect-api:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.connect.transforms", + "org.apache.kafka.connect.transforms.predicates", + "org.apache.kafka.connect.transforms.util" + ], + "sha256": "1a16851379e37963be737fd813d458a99d34a7aa4558e3ab6e48d1d1a3d67511", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/connect-transforms/7.5.0-187-ccs/connect-transforms-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.clients", + "org.apache.kafka.clients.admin", + "org.apache.kafka.clients.admin.internals", + "org.apache.kafka.clients.consumer", + "org.apache.kafka.clients.consumer.internals", + "org.apache.kafka.clients.consumer.internals.events", + "org.apache.kafka.clients.producer", + "org.apache.kafka.clients.producer.internals", + "org.apache.kafka.common", + "org.apache.kafka.common.acl", + "org.apache.kafka.common.annotation", + "org.apache.kafka.common.cache", + "org.apache.kafka.common.compress", + "org.apache.kafka.common.config", + "org.apache.kafka.common.config.internals", + "org.apache.kafka.common.config.provider", + "org.apache.kafka.common.config.types", + "org.apache.kafka.common.errors", + "org.apache.kafka.common.feature", + "org.apache.kafka.common.header", + "org.apache.kafka.common.header.internals", + "org.apache.kafka.common.internals", + "org.apache.kafka.common.memory", + "org.apache.kafka.common.message", + "org.apache.kafka.common.metrics", + "org.apache.kafka.common.metrics.internals", + "org.apache.kafka.common.metrics.stats", + "org.apache.kafka.common.network", + "org.apache.kafka.common.protocol", + "org.apache.kafka.common.protocol.types", + "org.apache.kafka.common.quota", + "org.apache.kafka.common.record", + "org.apache.kafka.common.replica", + "org.apache.kafka.common.requests", + "org.apache.kafka.common.resource", + "org.apache.kafka.common.security", + "org.apache.kafka.common.security.auth", + "org.apache.kafka.common.security.authenticator", + "org.apache.kafka.common.security.kerberos", + "org.apache.kafka.common.security.oauthbearer", + "org.apache.kafka.common.security.oauthbearer.internals", + "org.apache.kafka.common.security.oauthbearer.internals.expiring", + "org.apache.kafka.common.security.oauthbearer.internals.secured", + "org.apache.kafka.common.security.oauthbearer.internals.unsecured", + "org.apache.kafka.common.security.oauthbearer.secured", + "org.apache.kafka.common.security.plain", + "org.apache.kafka.common.security.plain.internals", + "org.apache.kafka.common.security.scram", + "org.apache.kafka.common.security.scram.internals", + "org.apache.kafka.common.security.ssl", + "org.apache.kafka.common.security.token.delegation", + "org.apache.kafka.common.security.token.delegation.internals", + "org.apache.kafka.common.serialization", + "org.apache.kafka.common.utils", + "org.apache.kafka.server.authorizer", + "org.apache.kafka.server.policy", + "org.apache.kafka.server.quota" + ], + "sha256": "12b9c1b13f066458b39c9442bfdd5d889b95717d1eb4a468525b3b7048fa8f10", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-clients:jar:test:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://jitpack.io/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar", + "https://maven.google.com/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar" + ], + "packages": [ + "org.apache.kafka.clients", + "org.apache.kafka.clients.admin", + "org.apache.kafka.clients.admin.internals", + "org.apache.kafka.clients.consumer", + "org.apache.kafka.clients.consumer.internals", + "org.apache.kafka.clients.producer", + "org.apache.kafka.clients.producer.internals", + "org.apache.kafka.common", + "org.apache.kafka.common.acl", + "org.apache.kafka.common.cache", + "org.apache.kafka.common.compress", + "org.apache.kafka.common.config", + "org.apache.kafka.common.config.provider", + "org.apache.kafka.common.feature", + "org.apache.kafka.common.header.internals", + "org.apache.kafka.common.internals", + "org.apache.kafka.common.memory", + "org.apache.kafka.common.message", + "org.apache.kafka.common.metrics", + "org.apache.kafka.common.metrics.internals", + "org.apache.kafka.common.metrics.stats", + "org.apache.kafka.common.network", + "org.apache.kafka.common.protocol", + "org.apache.kafka.common.protocol.types", + "org.apache.kafka.common.record", + "org.apache.kafka.common.replica", + "org.apache.kafka.common.requests", + "org.apache.kafka.common.resource", + "org.apache.kafka.common.security", + "org.apache.kafka.common.security.auth", + "org.apache.kafka.common.security.authenticator", + "org.apache.kafka.common.security.kerberos", + "org.apache.kafka.common.security.oauthbearer", + "org.apache.kafka.common.security.oauthbearer.internals", + "org.apache.kafka.common.security.oauthbearer.internals.expiring", + "org.apache.kafka.common.security.oauthbearer.internals.secured", + "org.apache.kafka.common.security.oauthbearer.internals.unsecured", + "org.apache.kafka.common.security.plain.internals", + "org.apache.kafka.common.security.scram.internals", + "org.apache.kafka.common.security.ssl", + "org.apache.kafka.common.security.ssl.mock", + "org.apache.kafka.common.serialization", + "org.apache.kafka.common.utils", + "org.apache.kafka.common.utils.annotation", + "org.apache.kafka.server.policy", + "org.apache.kafka.test" + ], + "sha256": "26fff2e65a08f9b995e1b02f516c1fe9ccfa496eef1315ce94bb80c3b0633306", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-clients/7.5.0-187-ccs/kafka-clients-7.5.0-187-ccs-test.jar" + }, + { + "coord": "org.apache.kafka:kafka-group-coordinator:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.coordinator.group", + "org.apache.kafka.coordinator.group.assignor", + "org.apache.kafka.coordinator.group.consumer", + "org.apache.kafka.coordinator.group.generated", + "org.apache.kafka.coordinator.group.runtime" + ], + "sha256": "ed4e71fdd8d319a9ffa0424fe1dbf38243ee3de61e913ec1cede6de1531ca4c1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-group-coordinator/7.5.0-187-ccs/kafka-group-coordinator-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-log4j-appender:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.slf4j:slf4j-log4j12:1.7.36", + "org.slf4j:slf4j-reload4j:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.slf4j:slf4j-log4j12:1.7.36" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.log4jappender" + ], + "sha256": "874846194f5818ed6a1ac6f0688b6127e2fab0c133191584eb248bdd31b072dc", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-log4j-appender/7.5.0-187-ccs/kafka-log4j-appender-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.yammer.metrics:metrics-core:2.2.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.common.metadata", + "org.apache.kafka.controller", + "org.apache.kafka.controller.metrics", + "org.apache.kafka.image", + "org.apache.kafka.image.loader", + "org.apache.kafka.image.publisher", + "org.apache.kafka.image.writer", + "org.apache.kafka.metadata", + "org.apache.kafka.metadata.authorizer", + "org.apache.kafka.metadata.bootstrap", + "org.apache.kafka.metadata.migration", + "org.apache.kafka.metadata.placement", + "org.apache.kafka.metadata.util" + ], + "sha256": "c08beee98188bc99ae6d09f1057101c7363112858b9c070351cfe67a8947fc1d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-metadata/7.5.0-187-ccs/kafka-metadata-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.raft", + "org.apache.kafka.raft.errors", + "org.apache.kafka.raft.generated", + "org.apache.kafka.raft.internals", + "org.apache.kafka.snapshot" + ], + "sha256": "1612f442a85fe75eaa038d5069769c8401a302120e079821cbd31f2b3f4cc9c5", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-raft/7.5.0-187-ccs/kafka-raft-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.deferred", + "org.apache.kafka.metadata", + "org.apache.kafka.queue", + "org.apache.kafka.server.common", + "org.apache.kafka.server.common.serialization", + "org.apache.kafka.server.config", + "org.apache.kafka.server.fault", + "org.apache.kafka.server.immutable", + "org.apache.kafka.server.immutable.pcollections", + "org.apache.kafka.server.metrics", + "org.apache.kafka.server.record", + "org.apache.kafka.server.util", + "org.apache.kafka.timeline" + ], + "sha256": "3489b3f09aebc9aaf7bbc3d131835b2f090eaf3c9e641eea8ac67e83d14b3e97", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-server-common/7.5.0-187-ccs/kafka-server-common-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.server.log.remote.storage" + ], + "sha256": "422924d595494688137205e219b88e726b8ea9f6cf0274d2c9cf4ae77904e3f8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-storage-api/7.5.0-187-ccs/kafka-storage-api-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-storage:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.server.log.remote.metadata.storage", + "org.apache.kafka.server.log.remote.metadata.storage.generated", + "org.apache.kafka.server.log.remote.metadata.storage.serialization", + "org.apache.kafka.server.log.remote.storage", + "org.apache.kafka.storage.internals.checkpoint", + "org.apache.kafka.storage.internals.epoch", + "org.apache.kafka.storage.internals.log" + ], + "sha256": "f6be569b676f3aea8bb268fb2c9de4888101a844ed85603d229fb8a25788401c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-storage/7.5.0-187-ccs/kafka-storage-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-streams:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.github.luben:zstd-jni:1.5.5-1", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.rocksdb:rocksdbjni:7.1.2", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.rocksdb:rocksdbjni:7.1.2", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.streams", + "org.apache.kafka.streams.errors", + "org.apache.kafka.streams.internals", + "org.apache.kafka.streams.internals.generated", + "org.apache.kafka.streams.internals.metrics", + "org.apache.kafka.streams.kstream", + "org.apache.kafka.streams.kstream.internals", + "org.apache.kafka.streams.kstream.internals.emitstrategy", + "org.apache.kafka.streams.kstream.internals.foreignkeyjoin", + "org.apache.kafka.streams.kstream.internals.graph", + "org.apache.kafka.streams.kstream.internals.suppress", + "org.apache.kafka.streams.processor", + "org.apache.kafka.streams.processor.api", + "org.apache.kafka.streams.processor.internals", + "org.apache.kafka.streams.processor.internals.assignment", + "org.apache.kafka.streams.processor.internals.metrics", + "org.apache.kafka.streams.processor.internals.namedtopology", + "org.apache.kafka.streams.processor.internals.tasks", + "org.apache.kafka.streams.query", + "org.apache.kafka.streams.query.internals", + "org.apache.kafka.streams.state", + "org.apache.kafka.streams.state.internals", + "org.apache.kafka.streams.state.internals.metrics" + ], + "sha256": "8494378cbc01babd527febb6ef7540cbd41980b5642bdfe22c68df901bc42f5c", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-streams/7.5.0-187-ccs/kafka-streams-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "dependencies": [ + "com.github.luben:zstd-jni:1.5.5-1", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.lz4:lz4-java:1.8.0", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "org.apache.kafka:kafka-clients:7.5.0-187-ccs" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.tools.api" + ], + "sha256": "14ec21c3fef799672e4ec436e672667a403a87380833c6fcc751a9ba1ec895b2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-tools-api/7.5.0-187-ccs/kafka-tools-api-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka-tools:7.5.0-187-ccs", + "dependencies": [ + "ch.qos.reload4j:reload4j:1.2.22", + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "com.github.luben:zstd-jni:1.5.5-1", + "com.yammer.metrics:metrics-core:2.2.0", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-log4j-appender:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.slf4j:slf4j-api:2.0.3", + "org.slf4j:slf4j-log4j12:1.7.36", + "org.slf4j:slf4j-reload4j:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "ch.qos.reload4j:reload4j:1.2.22", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.14.2", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-log4j-appender:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar" + ], + "packages": [ + "org.apache.kafka.tools" + ], + "sha256": "099703f24edf1e0a130e3b578991ed32f9c9129ef0e7f548eeb3b1e6497dc3ea", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka-tools/7.5.0-187-ccs/kafka-tools-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka_2.13:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.13.4", + "com.github.luben:zstd-jni:1.5.5-1", + "com.thoughtworks.paranamer:paranamer:2.8", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.4", + "com.yammer.metrics:metrics-core:2.2.0", + "commons-beanutils:commons-beanutils:1.9.4", + "commons-cli:commons-cli:1.4", + "commons-collections:commons-collections:3.2.2", + "commons-digester:commons-digester:2.1", + "commons-logging:commons-logging:1.2", + "commons-validator:commons-validator:1.7", + "io.dropwizard.metrics:metrics-core:4.1.12.1", + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-group-coordinator:7.5.0-187-ccs", + "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.apache.yetus:audience-annotations:0.13.0", + "org.apache.zookeeper:zookeeper-jute:3.6.4", + "org.apache.zookeeper:zookeeper:3.6.4", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-java8-compat_2.13:1.0.2", + "org.scala-lang:scala-library:2.13.10", + "org.scala-lang:scala-reflect:2.13.10", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.13.4", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.4", + "com.yammer.metrics:metrics-core:2.2.0", + "commons-cli:commons-cli:1.4", + "commons-validator:commons-validator:1.7", + "io.dropwizard.metrics:metrics-core:4.1.12.1", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-group-coordinator:7.5.0-187-ccs", + "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.apache.zookeeper:zookeeper:3.6.4", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-java8-compat_2.13:1.0.2", + "org.scala-lang:scala-library:2.13.10", + "org.scala-lang:scala-reflect:2.13.10", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://jitpack.io/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar", + "https://maven.google.com/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar" + ], + "packages": [ + "io.confluent.support.metrics", + "kafka", + "kafka.admin", + "kafka.api", + "kafka.cluster", + "kafka.common", + "kafka.consumer", + "kafka.controller", + "kafka.coordinator.group", + "kafka.coordinator.transaction", + "kafka.internals.generated", + "kafka.log", + "kafka.log.remote", + "kafka.metrics", + "kafka.migration", + "kafka.network", + "kafka.raft", + "kafka.security", + "kafka.security.authorizer", + "kafka.serializer", + "kafka.server", + "kafka.server.builders", + "kafka.server.checkpoints", + "kafka.server.metadata", + "kafka.tools", + "kafka.utils", + "kafka.utils.json", + "kafka.utils.timer", + "kafka.zk", + "kafka.zookeeper", + "org.apache.zookeeper" + ], + "sha256": "113316488881c7bf9571afc0555969c94c0b2d49c9a58a1aafc436d72087b2b7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs.jar" + }, + { + "coord": "org.apache.kafka:kafka_2.13:jar:test:7.5.0-187-ccs", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-annotations:2.14.2", + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.13.4", + "com.github.luben:zstd-jni:1.5.5-1", + "com.thoughtworks.paranamer:paranamer:2.8", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.4", + "com.yammer.metrics:metrics-core:2.2.0", + "commons-beanutils:commons-beanutils:1.9.4", + "commons-cli:commons-cli:1.4", + "commons-collections:commons-collections:3.2.2", + "commons-digester:commons-digester:2.1", + "commons-logging:commons-logging:1.2", + "commons-validator:commons-validator:1.7", + "io.dropwizard.metrics:metrics-core:4.1.12.1", + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-group-coordinator:7.5.0-187-ccs", + "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.apache.yetus:audience-annotations:0.13.0", + "org.apache.zookeeper:zookeeper-jute:3.6.4", + "org.apache.zookeeper:zookeeper:3.6.4", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.lz4:lz4-java:1.8.0", + "org.pcollections:pcollections:4.0.1", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-java8-compat_2.13:1.0.2", + "org.scala-lang:scala-library:2.13.10", + "org.scala-lang:scala-reflect:2.13.10", + "org.slf4j:slf4j-api:2.0.3", + "org.xerial.snappy:snappy-java:1.1.9.1" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.13.4", + "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4", + "com.fasterxml.jackson.module:jackson-module-scala_2.13:2.13.4", + "com.typesafe.scala-logging:scala-logging_2.13:3.9.4", + "com.yammer.metrics:metrics-core:2.2.0", + "commons-cli:commons-cli:1.4", + "commons-validator:commons-validator:1.7", + "io.dropwizard.metrics:metrics-core:4.1.12.1", + "net.sf.jopt-simple:jopt-simple:5.0.4", + "net.sourceforge.argparse4j:argparse4j:0.7.0", + "org.apache.kafka:kafka-clients:7.5.0-187-ccs", + "org.apache.kafka:kafka-group-coordinator:7.5.0-187-ccs", + "org.apache.kafka:kafka-metadata:7.5.0-187-ccs", + "org.apache.kafka:kafka-raft:7.5.0-187-ccs", + "org.apache.kafka:kafka-server-common:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage-api:7.5.0-187-ccs", + "org.apache.kafka:kafka-storage:7.5.0-187-ccs", + "org.apache.kafka:kafka-tools-api:7.5.0-187-ccs", + "org.apache.zookeeper:zookeeper:3.6.4", + "org.bitbucket.b_c:jose4j:0.7.9", + "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "org.scala-lang.modules:scala-java8-compat_2.13:1.0.2", + "org.scala-lang:scala-library:2.13.10", + "org.scala-lang:scala-reflect:2.13.10", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://packages.confluent.io/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://jitpack.io/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://repo1.maven.org/maven2/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://repository.apache.org/snapshots/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar", + "https://maven.google.com/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar" + ], + "packages": [ + "integration.kafka.server", + "kafka", + "kafka.admin", + "kafka.api", + "kafka.api.test", + "kafka.cluster", + "kafka.common", + "kafka.controller", + "kafka.coordinator", + "kafka.coordinator.group", + "kafka.coordinator.transaction", + "kafka.integration", + "kafka.log", + "kafka.log.remote", + "kafka.metrics", + "kafka.migration", + "kafka.network", + "kafka.raft", + "kafka.security.auth", + "kafka.security.authorizer", + "kafka.security.minikdc", + "kafka.security.token.delegation", + "kafka.server", + "kafka.server.checkpoints", + "kafka.server.epoch", + "kafka.server.epoch.util", + "kafka.server.metadata", + "kafka.test", + "kafka.test.annotation", + "kafka.test.junit", + "kafka.testkit", + "kafka.tools", + "kafka.utils", + "kafka.utils.json", + "kafka.utils.timer", + "kafka.zk", + "kafka.zookeeper", + "unit.kafka.server" + ], + "sha256": "4619218d1099bc39107078217e738c3ce134f6d65bfa0332769fa5b4666c2fcb", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/kafka/kafka_2.13/7.5.0-187-ccs/kafka_2.13-7.5.0-187-ccs-test.jar" + }, + { + "coord": "org.apache.maven.plugin-tools:maven-plugin-annotations:3.6.0", + "dependencies": [ + "org.apache.maven:maven-artifact:3.8.4" + ], + "directDependencies": [ + "org.apache.maven:maven-artifact:3.8.4" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://packages.confluent.io/maven/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://jitpack.io/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://repo1.maven.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://repository.apache.org/snapshots/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar", + "https://maven.google.com/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar" + ], + "packages": [ + "org.apache.maven.plugins.annotations" + ], + "sha256": "9e2434820dd2ba44ad70a66e5b2a9993a2a8b047ceabc3e850e4858cbf3f91c3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/plugin-tools/maven-plugin-annotations/3.6.0/maven-plugin-annotations-3.6.0.jar" + }, + { + "coord": "org.apache.maven:maven-artifact:3.8.4", + "dependencies": [ + "org.apache.commons:commons-lang3:3.12.0", + "org.codehaus.plexus:plexus-utils:3.3.0" + ], + "directDependencies": [ + "org.apache.commons:commons-lang3:3.12.0", + "org.codehaus.plexus:plexus-utils:3.3.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://packages.confluent.io/maven/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://jitpack.io/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://repository.apache.org/snapshots/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar", + "https://maven.google.com/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar" + ], + "packages": [ + "org.apache.maven.artifact", + "org.apache.maven.artifact.handler", + "org.apache.maven.artifact.metadata", + "org.apache.maven.artifact.repository", + "org.apache.maven.artifact.repository.layout", + "org.apache.maven.artifact.repository.metadata", + "org.apache.maven.artifact.resolver", + "org.apache.maven.artifact.resolver.filter", + "org.apache.maven.artifact.versioning", + "org.apache.maven.repository", + "org.apache.maven.repository.legacy.metadata" + ], + "sha256": "4273b4e84805f7350eb61a1eea5debfd71d1147414b3b441b92d535218cdf0ae", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-artifact/3.8.4/maven-artifact-3.8.4.jar" + }, + { + "coord": "org.apache.maven:maven-model:3.8.1", + "dependencies": [ + "org.codehaus.plexus:plexus-utils:3.3.0" + ], + "directDependencies": [ + "org.codehaus.plexus:plexus-utils:3.3.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://packages.confluent.io/maven/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://jitpack.io/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://repo1.maven.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://repository.apache.org/snapshots/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar", + "https://maven.google.com/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar" + ], + "packages": [ + "org.apache.maven.model", + "org.apache.maven.model.io.xpp3", + "org.apache.maven.model.merge" + ], + "sha256": "9e008629cefa5ddc9e5e2628adb467416ced250591e30dea7103f37f513b3b13", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar" + }, + { + "coord": "org.apache.maven:maven-plugin-api:3.8.1", + "dependencies": [ + "javax.annotation:jsr250-api:1.0", + "javax.enterprise:cdi-api:1.0", + "javax.inject:javax.inject:1", + "org.apache.maven:maven-artifact:3.8.4", + "org.apache.maven:maven-model:3.8.1", + "org.codehaus.plexus:plexus-classworlds:2.6.0", + "org.codehaus.plexus:plexus-component-annotations:1.5.5", + "org.codehaus.plexus:plexus-utils:3.3.0", + "org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4", + "org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4" + ], + "directDependencies": [ + "org.apache.maven:maven-artifact:3.8.4", + "org.apache.maven:maven-model:3.8.1", + "org.codehaus.plexus:plexus-classworlds:2.6.0", + "org.codehaus.plexus:plexus-utils:3.3.0", + "org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://packages.confluent.io/maven/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://jitpack.io/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://repository.apache.org/snapshots/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar", + "https://maven.google.com/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar" + ], + "packages": [ + "org.apache.maven.monitor.logging", + "org.apache.maven.plugin", + "org.apache.maven.plugin.descriptor", + "org.apache.maven.plugin.lifecycle", + "org.apache.maven.plugin.lifecycle.io.xpp3", + "org.apache.maven.plugin.logging" + ], + "sha256": "9a2d71722c8c18db748195925e725359e4e87d6722b602a0e54095e91a7f30d3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar" + }, + { + "coord": "org.apache.mina:mina-core:2.0.13", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://packages.confluent.io/maven/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://jitpack.io/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://repo1.maven.org/maven2/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://repository.apache.org/snapshots/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar", + "https://maven.google.com/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar" + ], + "packages": [ + "org.apache.mina.core", + "org.apache.mina.core.buffer", + "org.apache.mina.core.file", + "org.apache.mina.core.filterchain", + "org.apache.mina.core.future", + "org.apache.mina.core.polling", + "org.apache.mina.core.service", + "org.apache.mina.core.session", + "org.apache.mina.core.write", + "org.apache.mina.filter.buffer", + "org.apache.mina.filter.codec", + "org.apache.mina.filter.codec.demux", + "org.apache.mina.filter.codec.prefixedstring", + "org.apache.mina.filter.codec.serialization", + "org.apache.mina.filter.codec.statemachine", + "org.apache.mina.filter.codec.textline", + "org.apache.mina.filter.errorgenerating", + "org.apache.mina.filter.executor", + "org.apache.mina.filter.firewall", + "org.apache.mina.filter.keepalive", + "org.apache.mina.filter.logging", + "org.apache.mina.filter.ssl", + "org.apache.mina.filter.statistic", + "org.apache.mina.filter.stream", + "org.apache.mina.filter.util", + "org.apache.mina.handler.chain", + "org.apache.mina.handler.demux", + "org.apache.mina.handler.multiton", + "org.apache.mina.handler.stream", + "org.apache.mina.proxy", + "org.apache.mina.proxy.event", + "org.apache.mina.proxy.filter", + "org.apache.mina.proxy.handlers", + "org.apache.mina.proxy.handlers.http", + "org.apache.mina.proxy.handlers.http.basic", + "org.apache.mina.proxy.handlers.http.digest", + "org.apache.mina.proxy.handlers.http.ntlm", + "org.apache.mina.proxy.handlers.socks", + "org.apache.mina.proxy.session", + "org.apache.mina.proxy.utils", + "org.apache.mina.transport.socket", + "org.apache.mina.transport.socket.nio", + "org.apache.mina.transport.vmpipe", + "org.apache.mina.util", + "org.apache.mina.util.byteaccess" + ], + "sha256": "951d3b40b6f3e6351e13748ec711d79f25466937b5608838dcf7f765e96ce12b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/mina/mina-core/2.0.13/mina-core-2.0.13.jar" + }, + { + "coord": "org.apache.servicemix.bundles:org.apache.servicemix.bundles.antlr:2.7.7_5", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://packages.confluent.io/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://jitpack.io/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://repo1.maven.org/maven2/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://repository.apache.org/snapshots/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar", + "https://maven.google.com/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar" + ], + "packages": [ + "antlr", + "antlr.ASdebug", + "antlr.actions.cpp", + "antlr.actions.csharp", + "antlr.actions.java", + "antlr.actions.python", + "antlr.build", + "antlr.collections", + "antlr.collections.impl", + "antlr.debug", + "antlr.debug.misc", + "antlr.preprocessor" + ], + "sha256": "3902794d36d9b81da1b7e697f21ed04ccae276cc116eecc640a4cd0fff2691f2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar" + }, + { + "coord": "org.apache.servicemix.bundles:org.apache.servicemix.bundles.dom4j:1.6.1_5", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://packages.confluent.io/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://jitpack.io/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://repo1.maven.org/maven2/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://repository.apache.org/snapshots/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar", + "https://maven.google.com/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar" + ], + "packages": [ + "org.dom4j", + "org.dom4j.bean", + "org.dom4j.datatype", + "org.dom4j.dom", + "org.dom4j.dtd", + "org.dom4j.io", + "org.dom4j.jaxb", + "org.dom4j.rule", + "org.dom4j.rule.pattern", + "org.dom4j.swing", + "org.dom4j.tree", + "org.dom4j.util", + "org.dom4j.xpath", + "org.dom4j.xpp" + ], + "sha256": "15abe1ccad24f4fd71a926959f1acd64d84878348deee12dcf4928ee4f1db3d5", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5/org.apache.servicemix.bundles.dom4j-1.6.1_5.jar" + }, + { + "coord": "org.apache.servicemix.bundles:org.apache.servicemix.bundles.xpp3:1.1.4c_6", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://packages.confluent.io/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://jitpack.io/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://repo1.maven.org/maven2/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://repository.apache.org/snapshots/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar", + "https://maven.google.com/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar" + ], + "packages": [ + "org.xmlpull.mxp1", + "org.xmlpull.mxp1_serializer", + "org.xmlpull.v1", + "org.xmlpull.v1.builder", + "org.xmlpull.v1.builder.adapter", + "org.xmlpull.v1.builder.impl", + "org.xmlpull.v1.dom2_builder", + "org.xmlpull.v1.parser_pool", + "org.xmlpull.v1.sax2", + "org.xmlpull.v1.util", + "org.xmlpull.v1.wrapper", + "org.xmlpull.v1.wrapper.classic" + ], + "sha256": "81da51b0b2b919f9070c3cce7ba26c8516c65cc15737f3659469fd3fa06c3e53", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/servicemix/bundles/org.apache.servicemix.bundles.xpp3/1.1.4c_6/org.apache.servicemix.bundles.xpp3-1.1.4c_6.jar" + }, + { + "coord": "org.apache.yetus:audience-annotations:0.13.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://packages.confluent.io/maven/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://jitpack.io/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://repo1.maven.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://repository.apache.org/snapshots/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar", + "https://maven.google.com/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar" + ], + "packages": [ + "org.apache.yetus.audience", + "org.apache.yetus.audience.tools" + ], + "sha256": "3bfbb397b06f63a2a0a361f62ed32cf199bd92ddd48ea99281f4987edec9777b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar" + }, + { + "coord": "org.apache.zookeeper:zookeeper-jute:3.6.4", + "dependencies": [ + "org.apache.yetus:audience-annotations:0.13.0" + ], + "directDependencies": [ + "org.apache.yetus:audience-annotations:0.13.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://packages.confluent.io/maven/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://jitpack.io/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://repo1.maven.org/maven2/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://repository.apache.org/snapshots/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar", + "https://maven.google.com/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar" + ], + "packages": [ + "org.apache.jute", + "org.apache.jute.compiler", + "org.apache.jute.compiler.generated", + "org.apache.zookeeper.data", + "org.apache.zookeeper.proto", + "org.apache.zookeeper.server.persistence", + "org.apache.zookeeper.server.quorum", + "org.apache.zookeeper.txn" + ], + "sha256": "f3477ca671fe1a91553b5279ab7ad01e435d20cd7de902252a82716e70a3e730", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/zookeeper/zookeeper-jute/3.6.4/zookeeper-jute-3.6.4.jar" + }, + { + "coord": "org.apache.zookeeper:zookeeper:3.6.4", + "dependencies": [ + "io.netty:netty-buffer:4.1.86.Final", + "io.netty:netty-codec:4.1.86.Final", + "io.netty:netty-common:4.1.86.Final", + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-resolver:4.1.86.Final", + "io.netty:netty-transport-classes-epoll:4.1.86.Final", + "io.netty:netty-transport-native-epoll:4.1.86.Final", + "io.netty:netty-transport-native-unix-common:4.1.86.Final", + "io.netty:netty-transport:4.1.86.Final", + "org.apache.yetus:audience-annotations:0.13.0", + "org.apache.zookeeper:zookeeper-jute:3.6.4", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "io.netty:netty-handler:4.1.86.Final", + "io.netty:netty-transport-native-epoll:4.1.86.Final", + "org.apache.yetus:audience-annotations:0.13.0", + "org.apache.zookeeper:zookeeper-jute:3.6.4", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://packages.confluent.io/maven/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://jitpack.io/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://repo1.maven.org/maven2/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://repository.apache.org/snapshots/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar", + "https://maven.google.com/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar" + ], + "packages": [ + "org.apache.zookeeper", + "org.apache.zookeeper.admin", + "org.apache.zookeeper.audit", + "org.apache.zookeeper.cli", + "org.apache.zookeeper.client", + "org.apache.zookeeper.common", + "org.apache.zookeeper.jmx", + "org.apache.zookeeper.metrics", + "org.apache.zookeeper.metrics.impl", + "org.apache.zookeeper.server", + "org.apache.zookeeper.server.admin", + "org.apache.zookeeper.server.auth", + "org.apache.zookeeper.server.command", + "org.apache.zookeeper.server.metric", + "org.apache.zookeeper.server.persistence", + "org.apache.zookeeper.server.quorum", + "org.apache.zookeeper.server.quorum.auth", + "org.apache.zookeeper.server.quorum.flexible", + "org.apache.zookeeper.server.util", + "org.apache.zookeeper.server.watch", + "org.apache.zookeeper.util", + "org.apache.zookeeper.version", + "org.apache.zookeeper.version.util" + ], + "sha256": "570794d876e9abf0367d03e8ca4e50274d3c57a730d739d862bd1fe0b4f5f805", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/apache/zookeeper/zookeeper/3.6.4/zookeeper-3.6.4.jar" + }, + { + "coord": "org.bitbucket.b_c:jose4j:0.7.9", + "dependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://packages.confluent.io/maven/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://jitpack.io/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://repo1.maven.org/maven2/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://repository.apache.org/snapshots/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar", + "https://maven.google.com/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar" + ], + "packages": [ + "org.jose4j.base64url", + "org.jose4j.base64url.internal.apache.commons.codec.binary", + "org.jose4j.http", + "org.jose4j.jca", + "org.jose4j.json", + "org.jose4j.json.internal.json_simple", + "org.jose4j.json.internal.json_simple.parser", + "org.jose4j.jwa", + "org.jose4j.jwe", + "org.jose4j.jwe.kdf", + "org.jose4j.jwk", + "org.jose4j.jws", + "org.jose4j.jwt", + "org.jose4j.jwt.consumer", + "org.jose4j.jwx", + "org.jose4j.keys", + "org.jose4j.keys.resolvers", + "org.jose4j.lang", + "org.jose4j.mac", + "org.jose4j.zip" + ], + "sha256": "ea504a7e42599b16fa78ee79bae909dd9441523ac0530d96a708683c0ebaaf02", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bitbucket/b_c/jose4j/0.7.9/jose4j-0.7.9.jar" + }, + { + "coord": "org.bouncycastle:bcpkix-jdk15on:1.68", + "dependencies": [ + "org.bouncycastle:bcprov-jdk15on:jar:1.68" + ], + "directDependencies": [ + "org.bouncycastle:bcprov-jdk15on:jar:1.68" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://packages.confluent.io/maven/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://jitpack.io/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://repository.apache.org/snapshots/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar", + "https://maven.google.com/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar" + ], + "packages": [ + "org.bouncycastle.cert", + "org.bouncycastle.cert.bc", + "org.bouncycastle.cert.cmp", + "org.bouncycastle.cert.crmf", + "org.bouncycastle.cert.crmf.bc", + "org.bouncycastle.cert.crmf.jcajce", + "org.bouncycastle.cert.dane", + "org.bouncycastle.cert.dane.fetcher", + "org.bouncycastle.cert.jcajce", + "org.bouncycastle.cert.ocsp", + "org.bouncycastle.cert.ocsp.jcajce", + "org.bouncycastle.cert.path", + "org.bouncycastle.cert.path.validations", + "org.bouncycastle.cert.selector", + "org.bouncycastle.cert.selector.jcajce", + "org.bouncycastle.cmc", + "org.bouncycastle.cms", + "org.bouncycastle.cms.bc", + "org.bouncycastle.cms.jcajce", + "org.bouncycastle.dvcs", + "org.bouncycastle.eac", + "org.bouncycastle.eac.jcajce", + "org.bouncycastle.eac.operator", + "org.bouncycastle.eac.operator.jcajce", + "org.bouncycastle.est", + "org.bouncycastle.est.jcajce", + "org.bouncycastle.mime", + "org.bouncycastle.mime.encoding", + "org.bouncycastle.mime.smime", + "org.bouncycastle.mozilla", + "org.bouncycastle.mozilla.jcajce", + "org.bouncycastle.openssl", + "org.bouncycastle.openssl.bc", + "org.bouncycastle.openssl.jcajce", + "org.bouncycastle.operator", + "org.bouncycastle.operator.bc", + "org.bouncycastle.operator.jcajce", + "org.bouncycastle.pkcs", + "org.bouncycastle.pkcs.bc", + "org.bouncycastle.pkcs.jcajce", + "org.bouncycastle.pkix", + "org.bouncycastle.pkix.jcajce", + "org.bouncycastle.tsp", + "org.bouncycastle.tsp.cms", + "org.bouncycastle.voms" + ], + "sha256": "fb8d0f8f673ad6e16c604732093d7aa31b26ff4e0bd9cae1d7f99984c06b8a0f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar" + }, + { + "coord": "org.bouncycastle:bcprov-jdk15on:1.68", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://packages.confluent.io/maven/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://jitpack.io/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://repository.apache.org/snapshots/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar", + "https://maven.google.com/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar" + ], + "packages": [ + "org.bouncycastle", + "org.bouncycastle.asn1", + "org.bouncycastle.asn1.anssi", + "org.bouncycastle.asn1.bc", + "org.bouncycastle.asn1.bsi", + "org.bouncycastle.asn1.cmc", + "org.bouncycastle.asn1.cmp", + "org.bouncycastle.asn1.cms", + "org.bouncycastle.asn1.cms.ecc", + "org.bouncycastle.asn1.crmf", + "org.bouncycastle.asn1.cryptlib", + "org.bouncycastle.asn1.cryptopro", + "org.bouncycastle.asn1.dvcs", + "org.bouncycastle.asn1.eac", + "org.bouncycastle.asn1.edec", + "org.bouncycastle.asn1.esf", + "org.bouncycastle.asn1.ess", + "org.bouncycastle.asn1.est", + "org.bouncycastle.asn1.gm", + "org.bouncycastle.asn1.gnu", + "org.bouncycastle.asn1.iana", + "org.bouncycastle.asn1.icao", + "org.bouncycastle.asn1.isara", + "org.bouncycastle.asn1.isismtt", + "org.bouncycastle.asn1.isismtt.ocsp", + "org.bouncycastle.asn1.isismtt.x509", + "org.bouncycastle.asn1.iso", + "org.bouncycastle.asn1.kisa", + "org.bouncycastle.asn1.microsoft", + "org.bouncycastle.asn1.misc", + "org.bouncycastle.asn1.mozilla", + "org.bouncycastle.asn1.nist", + "org.bouncycastle.asn1.nsri", + "org.bouncycastle.asn1.ntt", + "org.bouncycastle.asn1.ocsp", + "org.bouncycastle.asn1.oiw", + "org.bouncycastle.asn1.pkcs", + "org.bouncycastle.asn1.rosstandart", + "org.bouncycastle.asn1.sec", + "org.bouncycastle.asn1.smime", + "org.bouncycastle.asn1.teletrust", + "org.bouncycastle.asn1.tsp", + "org.bouncycastle.asn1.ua", + "org.bouncycastle.asn1.util", + "org.bouncycastle.asn1.x500", + "org.bouncycastle.asn1.x500.style", + "org.bouncycastle.asn1.x509", + "org.bouncycastle.asn1.x509.qualified", + "org.bouncycastle.asn1.x509.sigi", + "org.bouncycastle.asn1.x9", + "org.bouncycastle.crypto", + "org.bouncycastle.crypto.agreement", + "org.bouncycastle.crypto.agreement.jpake", + "org.bouncycastle.crypto.agreement.kdf", + "org.bouncycastle.crypto.agreement.srp", + "org.bouncycastle.crypto.commitments", + "org.bouncycastle.crypto.digests", + "org.bouncycastle.crypto.ec", + "org.bouncycastle.crypto.encodings", + "org.bouncycastle.crypto.engines", + "org.bouncycastle.crypto.examples", + "org.bouncycastle.crypto.generators", + "org.bouncycastle.crypto.io", + "org.bouncycastle.crypto.kems", + "org.bouncycastle.crypto.macs", + "org.bouncycastle.crypto.modes", + "org.bouncycastle.crypto.modes.gcm", + "org.bouncycastle.crypto.modes.kgcm", + "org.bouncycastle.crypto.paddings", + "org.bouncycastle.crypto.params", + "org.bouncycastle.crypto.parsers", + "org.bouncycastle.crypto.prng", + "org.bouncycastle.crypto.prng.drbg", + "org.bouncycastle.crypto.signers", + "org.bouncycastle.crypto.util", + "org.bouncycastle.i18n", + "org.bouncycastle.i18n.filter", + "org.bouncycastle.iana", + "org.bouncycastle.its.asn1", + "org.bouncycastle.jcajce", + "org.bouncycastle.jcajce.interfaces", + "org.bouncycastle.jcajce.io", + "org.bouncycastle.jcajce.provider.asymmetric", + "org.bouncycastle.jcajce.provider.asymmetric.dh", + "org.bouncycastle.jcajce.provider.asymmetric.dsa", + "org.bouncycastle.jcajce.provider.asymmetric.dstu", + "org.bouncycastle.jcajce.provider.asymmetric.ec", + "org.bouncycastle.jcajce.provider.asymmetric.ecgost", + "org.bouncycastle.jcajce.provider.asymmetric.ecgost12", + "org.bouncycastle.jcajce.provider.asymmetric.edec", + "org.bouncycastle.jcajce.provider.asymmetric.elgamal", + "org.bouncycastle.jcajce.provider.asymmetric.gost", + "org.bouncycastle.jcajce.provider.asymmetric.ies", + "org.bouncycastle.jcajce.provider.asymmetric.rsa", + "org.bouncycastle.jcajce.provider.asymmetric.util", + "org.bouncycastle.jcajce.provider.asymmetric.x509", + "org.bouncycastle.jcajce.provider.config", + "org.bouncycastle.jcajce.provider.digest", + "org.bouncycastle.jcajce.provider.drbg", + "org.bouncycastle.jcajce.provider.keystore", + "org.bouncycastle.jcajce.provider.keystore.bc", + "org.bouncycastle.jcajce.provider.keystore.bcfks", + "org.bouncycastle.jcajce.provider.keystore.pkcs12", + "org.bouncycastle.jcajce.provider.symmetric", + "org.bouncycastle.jcajce.provider.symmetric.util", + "org.bouncycastle.jcajce.provider.util", + "org.bouncycastle.jcajce.spec", + "org.bouncycastle.jcajce.util", + "org.bouncycastle.jce", + "org.bouncycastle.jce.exception", + "org.bouncycastle.jce.interfaces", + "org.bouncycastle.jce.netscape", + "org.bouncycastle.jce.provider", + "org.bouncycastle.jce.spec", + "org.bouncycastle.math", + "org.bouncycastle.math.ec", + "org.bouncycastle.math.ec.custom.djb", + "org.bouncycastle.math.ec.custom.gm", + "org.bouncycastle.math.ec.custom.sec", + "org.bouncycastle.math.ec.endo", + "org.bouncycastle.math.ec.rfc7748", + "org.bouncycastle.math.ec.rfc8032", + "org.bouncycastle.math.ec.tools", + "org.bouncycastle.math.field", + "org.bouncycastle.math.raw", + "org.bouncycastle.pqc.asn1", + "org.bouncycastle.pqc.crypto", + "org.bouncycastle.pqc.crypto.gmss", + "org.bouncycastle.pqc.crypto.gmss.util", + "org.bouncycastle.pqc.crypto.lms", + "org.bouncycastle.pqc.crypto.mceliece", + "org.bouncycastle.pqc.crypto.newhope", + "org.bouncycastle.pqc.crypto.qtesla", + "org.bouncycastle.pqc.crypto.rainbow", + "org.bouncycastle.pqc.crypto.rainbow.util", + "org.bouncycastle.pqc.crypto.sphincs", + "org.bouncycastle.pqc.crypto.util", + "org.bouncycastle.pqc.crypto.xmss", + "org.bouncycastle.pqc.jcajce.interfaces", + "org.bouncycastle.pqc.jcajce.provider", + "org.bouncycastle.pqc.jcajce.provider.gmss", + "org.bouncycastle.pqc.jcajce.provider.lms", + "org.bouncycastle.pqc.jcajce.provider.mceliece", + "org.bouncycastle.pqc.jcajce.provider.newhope", + "org.bouncycastle.pqc.jcajce.provider.qtesla", + "org.bouncycastle.pqc.jcajce.provider.rainbow", + "org.bouncycastle.pqc.jcajce.provider.sphincs", + "org.bouncycastle.pqc.jcajce.provider.util", + "org.bouncycastle.pqc.jcajce.provider.xmss", + "org.bouncycastle.pqc.jcajce.spec", + "org.bouncycastle.pqc.math.linearalgebra", + "org.bouncycastle.util", + "org.bouncycastle.util.encoders", + "org.bouncycastle.util.io", + "org.bouncycastle.util.io.pem", + "org.bouncycastle.util.test", + "org.bouncycastle.x509", + "org.bouncycastle.x509.extension", + "org.bouncycastle.x509.util" + ], + "sha256": "f732a46c8de7e2232f2007c682a21d1f4cc8a8a0149b6b7bd6aa1afdc65a0f8d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar" + }, + { + "coord": "org.checkerframework:checker-qual:3.12.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://packages.confluent.io/maven/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://jitpack.io/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://repository.apache.org/snapshots/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar", + "https://maven.google.com/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar" + ], + "packages": [ + "org.checkerframework.checker.builder.qual", + "org.checkerframework.checker.calledmethods.qual", + "org.checkerframework.checker.compilermsgs.qual", + "org.checkerframework.checker.fenum.qual", + "org.checkerframework.checker.formatter.qual", + "org.checkerframework.checker.guieffect.qual", + "org.checkerframework.checker.i18n.qual", + "org.checkerframework.checker.i18nformatter.qual", + "org.checkerframework.checker.index.qual", + "org.checkerframework.checker.initialization.qual", + "org.checkerframework.checker.interning.qual", + "org.checkerframework.checker.lock.qual", + "org.checkerframework.checker.nullness.qual", + "org.checkerframework.checker.optional.qual", + "org.checkerframework.checker.propkey.qual", + "org.checkerframework.checker.regex.qual", + "org.checkerframework.checker.signature.qual", + "org.checkerframework.checker.signedness.qual", + "org.checkerframework.checker.tainting.qual", + "org.checkerframework.checker.units.qual", + "org.checkerframework.common.aliasing.qual", + "org.checkerframework.common.initializedfields.qual", + "org.checkerframework.common.reflection.qual", + "org.checkerframework.common.returnsreceiver.qual", + "org.checkerframework.common.subtyping.qual", + "org.checkerframework.common.util.report.qual", + "org.checkerframework.common.value.qual", + "org.checkerframework.dataflow.qual", + "org.checkerframework.framework.qual" + ], + "sha256": "ff10785ac2a357ec5de9c293cb982a2cbb605c0309ea4cc1cb9b9bc6dbe7f3cb", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar" + }, + { + "coord": "org.codehaus.plexus:plexus-classworlds:2.6.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://packages.confluent.io/maven/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://jitpack.io/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://repository.apache.org/snapshots/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar", + "https://maven.google.com/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar" + ], + "packages": [ + "org.codehaus.classworlds", + "org.codehaus.plexus.classworlds", + "org.codehaus.plexus.classworlds.launcher", + "org.codehaus.plexus.classworlds.realm", + "org.codehaus.plexus.classworlds.strategy" + ], + "sha256": "52f77c5ec49f787c9c417ebed5d6efd9922f44a202f217376e4f94c0d74f3549", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar" + }, + { + "coord": "org.codehaus.plexus:plexus-component-annotations:1.5.5", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://packages.confluent.io/maven/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://jitpack.io/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://repository.apache.org/snapshots/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar", + "https://maven.google.com/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar" + ], + "packages": [ + "org.codehaus.plexus.component.annotations" + ], + "sha256": "4df7a6a7be64b35bbccf60b5c115697f9ea3421d22674ae67135dde375fcca1f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar" + }, + { + "coord": "org.codehaus.plexus:plexus-utils:3.3.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://packages.confluent.io/maven/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://jitpack.io/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://repository.apache.org/snapshots/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar", + "https://maven.google.com/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar" + ], + "packages": [ + "org.codehaus.plexus.util", + "org.codehaus.plexus.util.cli", + "org.codehaus.plexus.util.cli.shell", + "org.codehaus.plexus.util.dag", + "org.codehaus.plexus.util.introspection", + "org.codehaus.plexus.util.io", + "org.codehaus.plexus.util.reflection", + "org.codehaus.plexus.util.xml", + "org.codehaus.plexus.util.xml.pull" + ], + "sha256": "76d174792540e2775af94d03d10fb2d3c776e2cd0ac0ebf427d3e570072bb9ce", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar" + }, + { + "coord": "org.codehaus.woodstox:stax2-api:4.2.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "javax.xml.stream:stax-api", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://packages.confluent.io/maven/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://jitpack.io/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://repo1.maven.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://repository.apache.org/snapshots/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar", + "https://maven.google.com/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar" + ], + "packages": [ + "org.codehaus.stax2", + "org.codehaus.stax2.evt", + "org.codehaus.stax2.io", + "org.codehaus.stax2.osgi", + "org.codehaus.stax2.ri", + "org.codehaus.stax2.ri.dom", + "org.codehaus.stax2.ri.evt", + "org.codehaus.stax2.ri.typed", + "org.codehaus.stax2.typed", + "org.codehaus.stax2.util", + "org.codehaus.stax2.validation" + ], + "sha256": "678567e48b51a42c65c699f266539ad3d676d4b1a5b0ad7d89ece8b9d5772579", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar" + }, + { + "coord": "org.conscrypt:conscrypt-openjdk-uber:2.5.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://packages.confluent.io/maven/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://jitpack.io/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://repo1.maven.org/maven2/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://repository.apache.org/snapshots/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar", + "https://maven.google.com/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar" + ], + "packages": [ + "org.conscrypt", + "org.conscrypt.ct", + "org.conscrypt.io" + ], + "sha256": "eaf537d98e033d0f0451cd1b8cc74e02d7b55ec882da63c88060d806ba89c348", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar" + }, + { + "coord": "org.dom4j:dom4j:2.1.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "javax.xml.stream:stax-api", + "xml-apis:xml-apis", + "javax.xml.bind:jaxb-api", + "jaxen:jaxen", + "pull-parser:pull-parser", + "xpp3:xpp3", + "net.java.dev.msv:xsdlib", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://packages.confluent.io/maven/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://jitpack.io/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://repository.apache.org/snapshots/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar", + "https://maven.google.com/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar" + ], + "packages": [ + "org.dom4j", + "org.dom4j.bean", + "org.dom4j.datatype", + "org.dom4j.dom", + "org.dom4j.dtd", + "org.dom4j.io", + "org.dom4j.jaxb", + "org.dom4j.rule", + "org.dom4j.rule.pattern", + "org.dom4j.swing", + "org.dom4j.tree", + "org.dom4j.util", + "org.dom4j.xpath", + "org.dom4j.xpp" + ], + "sha256": "549f3007c6290f6a901e57d1d331b4ed0e6bf7384f78bf10316ffceeca834de6", + "url": "https://repo1.maven.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar" + }, + { + "coord": "org.easymock:easymock:4.3", + "dependencies": [ + "org.objenesis:objenesis:3.2" + ], + "directDependencies": [ + "org.objenesis:objenesis:3.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/easymock/easymock/4.3/easymock-4.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://packages.confluent.io/maven/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://jitpack.io/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://repo1.maven.org/maven2/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://repository.apache.org/snapshots/org/easymock/easymock/4.3/easymock-4.3.jar", + "https://maven.google.com/org/easymock/easymock/4.3/easymock-4.3.jar" + ], + "packages": [ + "org.easymock", + "org.easymock.asm", + "org.easymock.asm.signature", + "org.easymock.cglib.beans", + "org.easymock.cglib.core", + "org.easymock.cglib.core.internal", + "org.easymock.cglib.proxy", + "org.easymock.cglib.reflect", + "org.easymock.cglib.transform", + "org.easymock.cglib.transform.impl", + "org.easymock.cglib.util", + "org.easymock.internal", + "org.easymock.internal.matchers" + ], + "sha256": "c230864c8b11636aaa6bb49eee00a4342d3e016d860b4f80b89068fd056d1404", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/easymock/easymock/4.3/easymock-4.3.jar" + }, + { + "coord": "org.eclipse.jetty.http2:http2-common:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty.http2:http2-hpack:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty.http2:http2-hpack:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.http2", + "org.eclipse.jetty.http2.api", + "org.eclipse.jetty.http2.api.server", + "org.eclipse.jetty.http2.frames", + "org.eclipse.jetty.http2.generator", + "org.eclipse.jetty.http2.parser" + ], + "sha256": "4747a5d052ebebdd0002d4817926d020acee256fe57acca297b473b7bb349d9f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-common/9.4.48.v20220622/http2-common-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.http2:http2-hpack:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.http2.hpack" + ], + "sha256": "8c37d3074aee3ffe5fbcab4dfee1dc693e9349798767899ea4b7d79831139dab", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-hpack/9.4.48.v20220622/http2-hpack-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.http2:http2-server:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty.http2:http2-common:9.4.48.v20220622", + "org.eclipse.jetty.http2:http2-hpack:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty.http2:http2-common:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.http2.server" + ], + "sha256": "2b2b0c18f15a92baaa0dc6d28d0e417ca3e5f5d7146dee048c9be1a9d1440e5e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/http2/http2-server/9.4.48.v20220622/http2-server-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.48.v20220622", + "dependencies": [ + "javax.websocket:javax.websocket-client-api:1.0", + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "javax.websocket:javax.websocket-client-api:1.0", + "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.jsr356", + "org.eclipse.jetty.websocket.jsr356.annotations", + "org.eclipse.jetty.websocket.jsr356.client", + "org.eclipse.jetty.websocket.jsr356.decoders", + "org.eclipse.jetty.websocket.jsr356.encoders", + "org.eclipse.jetty.websocket.jsr356.endpoints", + "org.eclipse.jetty.websocket.jsr356.messages", + "org.eclipse.jetty.websocket.jsr356.metadata", + "org.eclipse.jetty.websocket.jsr356.utils" + ], + "sha256": "80a485804268036d619e02a99d913655bc5d350da0c4ee52fd26f294d853bfde", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.48.v20220622/javax-websocket-client-impl-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:javax-websocket-server-impl:9.4.48.v20220622", + "dependencies": [ + "javax.annotation:javax.annotation-api:1.3.2", + "javax.servlet:javax.servlet-api:3.1.0", + "javax.websocket:javax.websocket-api:1.0", + "javax.websocket:javax.websocket-client-api:1.0", + "org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-annotations:9.4.48.v20220622", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jndi:9.4.48.v20220622", + "org.eclipse.jetty:jetty-plus:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "org.eclipse.jetty:jetty-xml:9.4.48.v20220622", + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-commons:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "javax.websocket:javax.websocket-api:1.0", + "org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-annotations:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.jsr356.server", + "org.eclipse.jetty.websocket.jsr356.server.deploy" + ], + "sha256": "bba72545036038867437b6aaa61136329a4036ff6b4078b70b3b7654c7bea2d1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.48.v20220622/javax-websocket-server-impl-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.api", + "org.eclipse.jetty.websocket.api.annotations", + "org.eclipse.jetty.websocket.api.extensions", + "org.eclipse.jetty.websocket.api.util" + ], + "sha256": "87fb052324d6c5e22f58fb729169913bb318d97921115640c3dca453c7eb19e1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-api/9.4.48.v20220622/websocket-api-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.client", + "org.eclipse.jetty.websocket.client.io", + "org.eclipse.jetty.websocket.client.masks" + ], + "sha256": "432d9d85734be8acbdbc3656200d2b1d540574c9bebe0b4f75a3f8bbe402a2f1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-client/9.4.48.v20220622/websocket-client-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.common", + "org.eclipse.jetty.websocket.common.events", + "org.eclipse.jetty.websocket.common.events.annotated", + "org.eclipse.jetty.websocket.common.extensions", + "org.eclipse.jetty.websocket.common.extensions.compress", + "org.eclipse.jetty.websocket.common.extensions.fragment", + "org.eclipse.jetty.websocket.common.extensions.identity", + "org.eclipse.jetty.websocket.common.frames", + "org.eclipse.jetty.websocket.common.io", + "org.eclipse.jetty.websocket.common.io.http", + "org.eclipse.jetty.websocket.common.io.payload", + "org.eclipse.jetty.websocket.common.message", + "org.eclipse.jetty.websocket.common.scopes", + "org.eclipse.jetty.websocket.common.util" + ], + "sha256": "1f630339e7e7f6de5d7f47f9496495d7689ad41fc11565aaf11ce9e22ff6ccda", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-common/9.4.48.v20220622/websocket-common-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:websocket-server:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-common:9.4.48.v20220622", + "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.server", + "org.eclipse.jetty.websocket.server.pathmap" + ], + "sha256": "32ad18b3c610a5036c33d2e6bdf76eb46759fb8e067483d7a96f94e3909a4285", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-server/9.4.48.v20220622/websocket-server-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty.websocket:websocket-servlet:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622" + ], + "directDependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty.websocket:websocket-api:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.websocket.servlet" + ], + "sha256": "28aeea9ac33a3f6d22e31ed2a6079abc35ce3ec1d5c80e1cc13859f536680b25", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/websocket/websocket-servlet/9.4.48.v20220622/websocket-servlet-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-alpn-conscrypt-server:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.conscrypt:conscrypt-openjdk-uber:2.5.2", + "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.conscrypt:conscrypt-openjdk-uber:2.5.2", + "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.alpn.conscrypt.server" + ], + "sha256": "ac2124940ee86e0aba993a74b6cb561607f4163b6ff27a2fd18a46a3c0e7ba4e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-conscrypt-server/9.4.48.v20220622/jetty-alpn-conscrypt-server-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-alpn-java-server:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.alpn.java.server" + ], + "sha256": "10f34f3c9592f82d28a99435e986c4b422a0d2b5ebea2d01543142c08b91267d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-java-server/9.4.48.v20220622/jetty-alpn-java-server-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-alpn-server:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-server:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.alpn.server" + ], + "sha256": "9cca7070635578d3828562c21f2e5360e8333ae67249e5da50b42b4b994c57a7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-alpn-server/9.4.48.v20220622/jetty-alpn-server-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-annotations:9.4.48.v20220622", + "dependencies": [ + "javax.annotation:javax.annotation-api:1.3.2", + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jndi:9.4.48.v20220622", + "org.eclipse.jetty:jetty-plus:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "org.eclipse.jetty:jetty-xml:9.4.48.v20220622", + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-commons:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "javax.annotation:javax.annotation-api:1.3.2", + "org.eclipse.jetty:jetty-plus:9.4.48.v20220622", + "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "org.ow2.asm:asm-commons:9.3", + "org.ow2.asm:asm:9.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.annotations" + ], + "sha256": "ca91b494947932d5ab56a38f8d5153482523498e6f1a5fc8a672851ac3ea1a6f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-annotations/9.4.48.v20220622/jetty-annotations-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-client:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.client", + "org.eclipse.jetty.client.api", + "org.eclipse.jetty.client.http", + "org.eclipse.jetty.client.jmx", + "org.eclipse.jetty.client.util" + ], + "sha256": "7f89fe0900d36b296275999992a6ad76d523be35487d613d8fb56434c34d1d15", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-client/9.4.48.v20220622/jetty-client-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-continuation:9.4.48.v20220622", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.continuation" + ], + "sha256": "8a4c6f34f0a734012ed4d981f67c56e6be34ca5ffe0996fb4fe0d7f27227a330", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-continuation/9.4.48.v20220622/jetty-continuation-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.http", + "org.eclipse.jetty.http.pathmap" + ], + "sha256": "c99914804c25288fde0470530411258ee4bab83b69ad764149c816c984f8175e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.io", + "org.eclipse.jetty.io.jmx", + "org.eclipse.jetty.io.ssl" + ], + "sha256": "4d2f60a0348905a0a70bb266d1eb23a29959281391aba54d17d4a3a0460b8b47", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-jaas:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-security:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.jaas", + "org.eclipse.jetty.jaas.callback", + "org.eclipse.jetty.jaas.spi" + ], + "sha256": "6846e8ed3303da130412696172dc79c343dc847c89d9c6cc461c9637b2481069", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jaas/9.4.48.v20220622/jetty-jaas-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-jmx:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.jmx", + "org.eclipse.jetty.util.log.jmx" + ], + "sha256": "341660f9f960df46cc0f87af39e33e69133b09b4f6678ef643d2a396cbd1de6b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jmx/9.4.48.v20220622/jetty-jmx-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-jndi:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.jndi", + "org.eclipse.jetty.jndi.factories", + "org.eclipse.jetty.jndi.java", + "org.eclipse.jetty.jndi.local" + ], + "sha256": "8cdefa4ebea100e5ec3e7e64cb02bf4e42cdc93dcc41e90374dbf673e1051f3a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-jndi/9.4.48.v20220622/jetty-jndi-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-plus:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-jndi:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "org.eclipse.jetty:jetty-xml:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-jndi:9.4.48.v20220622", + "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.plus.annotation", + "org.eclipse.jetty.plus.jndi", + "org.eclipse.jetty.plus.security", + "org.eclipse.jetty.plus.webapp" + ], + "sha256": "358b6e589729670a5ada7e5836f239d8e006a7452e801bd3437b43be1ecbade7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-plus/9.4.48.v20220622/jetty-plus-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-server:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.security", + "org.eclipse.jetty.security.authentication" + ], + "sha256": "43039b0f58a156a7f1b9b7750ad82f7fcdd5dba81717b970c381cb1b8618ff73", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.server", + "org.eclipse.jetty.server.handler", + "org.eclipse.jetty.server.handler.gzip", + "org.eclipse.jetty.server.handler.jmx", + "org.eclipse.jetty.server.jmx", + "org.eclipse.jetty.server.nio", + "org.eclipse.jetty.server.resource", + "org.eclipse.jetty.server.session" + ], + "sha256": "dbb2b64216b0f10db591319c313979c1389249a196afb9690c022a923c0f0f77", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.servlet", + "org.eclipse.jetty.servlet.jmx", + "org.eclipse.jetty.servlet.listener" + ], + "sha256": "eabc36f43fb4080b7d02e1fbcad0b437e035d3adc7bfd7a89b3cdeb22247e682", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-servlets:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-continuation:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-continuation:9.4.48.v20220622", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.servlets" + ], + "sha256": "c367bd2020c2aacda24cfc67fd329da85350526e9b0b1fe92dfa44b6f0dbeb40", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-servlets/9.4.48.v20220622/jetty-servlets-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.util.ajax" + ], + "sha256": "b5d4b40be3cf9f48b3d5f8e5918066724a620cb901684939c9f1dd7ec1b930cb", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.util", + "org.eclipse.jetty.util.annotation", + "org.eclipse.jetty.util.component", + "org.eclipse.jetty.util.compression", + "org.eclipse.jetty.util.log", + "org.eclipse.jetty.util.preventers", + "org.eclipse.jetty.util.resource", + "org.eclipse.jetty.util.security", + "org.eclipse.jetty.util.ssl", + "org.eclipse.jetty.util.statistic", + "org.eclipse.jetty.util.thread", + "org.eclipse.jetty.util.thread.strategy" + ], + "sha256": "24cafd449ca4b4bea9c2792b28fc6fe1c43beb628c0c1a0a72ee33afeac82b87", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-webapp:9.4.48.v20220622", + "dependencies": [ + "javax.servlet:javax.servlet-api:3.1.0", + "org.eclipse.jetty:jetty-http:9.4.48.v20220622", + "org.eclipse.jetty:jetty-io:9.4.48.v20220622", + "org.eclipse.jetty:jetty-security:9.4.48.v20220622", + "org.eclipse.jetty:jetty-server:9.4.48.v20220622", + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util-ajax:9.4.48.v20220622", + "org.eclipse.jetty:jetty-util:9.4.48.v20220622", + "org.eclipse.jetty:jetty-xml:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-servlet:9.4.48.v20220622", + "org.eclipse.jetty:jetty-xml:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.webapp" + ], + "sha256": "bdb33dd7e9a30ea428f301010d08c7f69b37ec75dda340b79a86e95149fec0b2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.jetty:jetty-xml:9.4.48.v20220622", + "dependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "directDependencies": [ + "org.eclipse.jetty:jetty-util:9.4.48.v20220622" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://packages.confluent.io/maven/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://jitpack.io/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://repository.apache.org/snapshots/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar", + "https://maven.google.com/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar" + ], + "packages": [ + "org.eclipse.jetty.xml" + ], + "sha256": "fe94705c7f49fe56194abfc16050fafc44be0faf691a2e6dca13c5d343a2bea5", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar" + }, + { + "coord": "org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://packages.confluent.io/maven/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://jitpack.io/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://repository.apache.org/snapshots/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar", + "https://maven.google.com/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar" + ], + "packages": [ + "org.eclipse.sisu", + "org.eclipse.sisu.bean", + "org.eclipse.sisu.inject", + "org.eclipse.sisu.launch", + "org.eclipse.sisu.osgi", + "org.eclipse.sisu.space", + "org.eclipse.sisu.space.asm", + "org.eclipse.sisu.wire", + "org.sonatype.inject" + ], + "sha256": "8c0e6aa7f35593016f2c5e78b604b57f023cdaca3561fe2fe36f2b5dbbae1d16", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar" + }, + { + "coord": "org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.4", + "dependencies": [ + "javax.annotation:jsr250-api:1.0", + "javax.enterprise:cdi-api:1.0", + "javax.inject:javax.inject:1", + "org.codehaus.plexus:plexus-classworlds:2.6.0", + "org.codehaus.plexus:plexus-component-annotations:1.5.5", + "org.codehaus.plexus:plexus-utils:3.3.0", + "org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4" + ], + "directDependencies": [ + "javax.enterprise:cdi-api:1.0", + "org.codehaus.plexus:plexus-classworlds:2.6.0", + "org.codehaus.plexus:plexus-component-annotations:1.5.5", + "org.codehaus.plexus:plexus-utils:3.3.0", + "org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://packages.confluent.io/maven/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://jitpack.io/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://repo1.maven.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://repository.apache.org/snapshots/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar", + "https://maven.google.com/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar" + ], + "packages": [ + "org.codehaus.plexus", + "org.codehaus.plexus.component", + "org.codehaus.plexus.component.composition", + "org.codehaus.plexus.component.configurator", + "org.codehaus.plexus.component.configurator.converters", + "org.codehaus.plexus.component.configurator.converters.basic", + "org.codehaus.plexus.component.configurator.converters.composite", + "org.codehaus.plexus.component.configurator.converters.lookup", + "org.codehaus.plexus.component.configurator.converters.special", + "org.codehaus.plexus.component.configurator.expression", + "org.codehaus.plexus.component.factory", + "org.codehaus.plexus.component.repository", + "org.codehaus.plexus.component.repository.exception", + "org.codehaus.plexus.configuration", + "org.codehaus.plexus.configuration.xml", + "org.codehaus.plexus.context", + "org.codehaus.plexus.logging", + "org.codehaus.plexus.logging.console", + "org.codehaus.plexus.personality.plexus.lifecycle.phase", + "org.eclipse.sisu.plexus" + ], + "sha256": "87e66ffad03aa18129ea0762d2c02f566a9480e6eee8d84e25e1b931f12ea831", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar" + }, + { + "coord": "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "jakarta.annotation:jakarta.annotation-api", + "org.javassist:javassist", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://packages.confluent.io/maven/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://jitpack.io/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://repo1.maven.org/maven2/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://repository.apache.org/snapshots/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar", + "https://maven.google.com/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar" + ], + "packages": [ + "org.aopalliance.aop", + "org.aopalliance.instrument", + "org.aopalliance.intercept", + "org.aopalliance.reflect" + ], + "sha256": "bad77f9278d753406360af9e4747bd9b3161554ea9cd3d62411a0ae1f2c141fd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar" + }, + { + "coord": "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "javax.inject:javax.inject", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://packages.confluent.io/maven/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://jitpack.io/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://repo1.maven.org/maven2/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://repository.apache.org/snapshots/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar", + "https://maven.google.com/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar" + ], + "packages": [ + "javax.inject" + ], + "sha256": "5e88c123b3e41bca788b2683118867d9b6dec714247ea91c588aed46a36ee24f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar" + }, + { + "coord": "org.glassfish.hk2:hk2-api:2.6.1", + "dependencies": [ + "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:hk2-utils:2.6.1" + ], + "directDependencies": [ + "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:hk2-utils:2.6.1" + ], + "exclusions": [ + "jakarta.annotation:jakarta.annotation-api", + "org.javassist:javassist", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://packages.confluent.io/maven/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://jitpack.io/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://repo1.maven.org/maven2/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://repository.apache.org/snapshots/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar", + "https://maven.google.com/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar" + ], + "packages": [ + "org.glassfish.hk2.api", + "org.glassfish.hk2.api.messaging", + "org.glassfish.hk2.extension", + "org.glassfish.hk2.internal", + "org.glassfish.hk2.utilities", + "org.glassfish.hk2.utilities.binding", + "org.jvnet.hk2.annotations" + ], + "sha256": "c2cb80a01e58440ae57d5ee59af4d4d94e5180e04aff112b0cb611c07d61e773", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar" + }, + { + "coord": "org.glassfish.hk2:hk2-locator:2.6.1", + "dependencies": [ + "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:hk2-api:2.6.1", + "org.glassfish.hk2:hk2-utils:2.6.1" + ], + "directDependencies": [ + "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:hk2-api:2.6.1", + "org.glassfish.hk2:hk2-utils:2.6.1" + ], + "exclusions": [ + "jakarta.annotation:jakarta.annotation-api", + "org.javassist:javassist", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://packages.confluent.io/maven/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://jitpack.io/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://repo1.maven.org/maven2/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://repository.apache.org/snapshots/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar", + "https://maven.google.com/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar" + ], + "packages": [ + "org.jvnet.hk2.external.generator", + "org.jvnet.hk2.external.runtime", + "org.jvnet.hk2.internal" + ], + "sha256": "febc668deb9f2000c76bd4918d8086c0a4c74d07bd0c60486b72c6bd38b62874", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar" + }, + { + "coord": "org.glassfish.hk2:hk2-utils:2.6.1", + "dependencies": [ + "org.glassfish.hk2.external:jakarta.inject:2.6.1" + ], + "directDependencies": [ + "org.glassfish.hk2.external:jakarta.inject:2.6.1" + ], + "exclusions": [ + "jakarta.annotation:jakarta.annotation-api", + "org.javassist:javassist", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://packages.confluent.io/maven/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://jitpack.io/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://repo1.maven.org/maven2/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://repository.apache.org/snapshots/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar", + "https://maven.google.com/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar" + ], + "packages": [ + "org.glassfish.hk2.utilities.cache", + "org.glassfish.hk2.utilities.cache.internal", + "org.glassfish.hk2.utilities.general", + "org.glassfish.hk2.utilities.general.internal", + "org.glassfish.hk2.utilities.reflection", + "org.glassfish.hk2.utilities.reflection.internal", + "org.jvnet.hk2.component" + ], + "sha256": "30727f79086452fdefdab08451d982c2082aa239d9f75cdeb1ba271e3c887036", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar" + }, + { + "coord": "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://packages.confluent.io/maven/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://jitpack.io/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://repo1.maven.org/maven2/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://repository.apache.org/snapshots/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar", + "https://maven.google.com/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar" + ], + "packages": [ + "org.glassfish.hk2.osgiresourcelocator" + ], + "sha256": "aab5d7849f7cfcda2cc7c541ba1bd365151d42276f151c825387245dfde3dd74", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar" + }, + { + "coord": "org.glassfish.jersey.containers:jersey-container-servlet-core:2.36", + "dependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.core:jersey-client:2.36", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36" + ], + "directDependencies": [ + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36" + ], + "exclusions": [ + "xml-apis:xml-apis", + "junit:junit", + "javax.servlet:servlet-api", + "jakarta.servlet:jakarta.servlet-api", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar" + ], + "packages": [ + "org.glassfish.jersey.servlet", + "org.glassfish.jersey.servlet.internal", + "org.glassfish.jersey.servlet.internal.spi", + "org.glassfish.jersey.servlet.spi" + ], + "sha256": "08dec2b2be0e126b01632b9ac22982cf746c6f2a1aae5c65f880ac8376f010da", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/containers/jersey-container-servlet-core/2.36/jersey-container-servlet-core-2.36.jar" + }, + { + "coord": "org.glassfish.jersey.containers:jersey-container-servlet:2.36", + "dependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.containers:jersey-container-servlet-core:2.36", + "org.glassfish.jersey.core:jersey-client:2.36", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36" + ], + "directDependencies": [ + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.jersey.containers:jersey-container-servlet-core:2.36", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36" + ], + "exclusions": [ + "junit:junit", + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar" + ], + "packages": [ + "org.glassfish.jersey.servlet.async", + "org.glassfish.jersey.servlet.init", + "org.glassfish.jersey.servlet.init.internal" + ], + "sha256": "64f06051710734565486ab18910a4d3e2dbc1292a410146b66045dc1aea7cf1a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/containers/jersey-container-servlet/2.36/jersey-container-servlet-2.36.jar" + }, + { + "coord": "org.glassfish.jersey.core:jersey-client:2.36", + "dependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.core:jersey-common:2.36" + ], + "directDependencies": [ + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.jersey.core:jersey-common:2.36" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar" + ], + "packages": [ + "org.glassfish.jersey.client", + "org.glassfish.jersey.client.authentication", + "org.glassfish.jersey.client.filter", + "org.glassfish.jersey.client.http", + "org.glassfish.jersey.client.inject", + "org.glassfish.jersey.client.internal", + "org.glassfish.jersey.client.internal.inject", + "org.glassfish.jersey.client.internal.jdkconnector", + "org.glassfish.jersey.client.internal.routing", + "org.glassfish.jersey.client.spi" + ], + "sha256": "027b7061001f186bd7a48bbe5f070e2774b108969776935fc9b55591a93f689d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-client/2.36/jersey-client-2.36.jar" + }, + { + "coord": "org.glassfish.jersey.core:jersey-common:2.36", + "dependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3" + ], + "directDependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar" + ], + "packages": [ + "org.glassfish.jersey", + "org.glassfish.jersey.internal", + "org.glassfish.jersey.internal.config", + "org.glassfish.jersey.internal.guava", + "org.glassfish.jersey.internal.inject", + "org.glassfish.jersey.internal.jsr166", + "org.glassfish.jersey.internal.l10n", + "org.glassfish.jersey.internal.routing", + "org.glassfish.jersey.internal.sonar", + "org.glassfish.jersey.internal.spi", + "org.glassfish.jersey.internal.util", + "org.glassfish.jersey.internal.util.collection", + "org.glassfish.jersey.logging", + "org.glassfish.jersey.message", + "org.glassfish.jersey.message.internal", + "org.glassfish.jersey.model", + "org.glassfish.jersey.model.internal", + "org.glassfish.jersey.model.internal.spi", + "org.glassfish.jersey.process", + "org.glassfish.jersey.process.internal", + "org.glassfish.jersey.spi", + "org.glassfish.jersey.uri", + "org.glassfish.jersey.uri.internal" + ], + "sha256": "543b8df0bfa07e54fe65e45b351088010a2a7079ac2564023761f8dfe8eb7b33", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-common/2.36/jersey-common-2.36.jar" + }, + { + "coord": "org.glassfish.jersey.core:jersey-server:2.36", + "dependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.core:jersey-client:2.36", + "org.glassfish.jersey.core:jersey-common:2.36" + ], + "directDependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.jersey.core:jersey-client:2.36", + "org.glassfish.jersey.core:jersey-common:2.36" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar" + ], + "packages": [ + "com.sun.research.ws.wadl", + "jersey.repackaged.org.objectweb.asm", + "org.glassfish.jersey.server", + "org.glassfish.jersey.server.filter", + "org.glassfish.jersey.server.filter.internal", + "org.glassfish.jersey.server.internal", + "org.glassfish.jersey.server.internal.inject", + "org.glassfish.jersey.server.internal.monitoring", + "org.glassfish.jersey.server.internal.monitoring.core", + "org.glassfish.jersey.server.internal.monitoring.jmx", + "org.glassfish.jersey.server.internal.process", + "org.glassfish.jersey.server.internal.routing", + "org.glassfish.jersey.server.internal.scanning", + "org.glassfish.jersey.server.internal.sonar", + "org.glassfish.jersey.server.model", + "org.glassfish.jersey.server.model.internal", + "org.glassfish.jersey.server.monitoring", + "org.glassfish.jersey.server.spi", + "org.glassfish.jersey.server.spi.internal", + "org.glassfish.jersey.server.wadl", + "org.glassfish.jersey.server.wadl.config", + "org.glassfish.jersey.server.wadl.internal", + "org.glassfish.jersey.server.wadl.internal.generators", + "org.glassfish.jersey.server.wadl.internal.generators.resourcedoc", + "org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model", + "org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.xhtml", + "org.glassfish.jersey.server.wadl.processor" + ], + "sha256": "2699758d1c33a9137363fd022d8c9c00423c800c4fde2b49d53530987e8da72d", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/core/jersey-server/2.36/jersey-server-2.36.jar" + }, + { + "coord": "org.glassfish.jersey.ext:jersey-bean-validation:2.36", + "dependencies": [ + "com.fasterxml:classmate:1.5.1", + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.el:jakarta.el-api:3.0.3", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.core:jersey-client:2.36", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36", + "org.glassfish:jakarta.el:3.0.4", + "org.hibernate.validator:hibernate-validator:6.2.0.Final", + "org.jboss.logging:jboss-logging:3.4.1.Final" + ], + "directDependencies": [ + "jakarta.el:jakarta.el-api:3.0.3", + "jakarta.validation:jakarta.validation-api:2.0.2", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.glassfish.jersey.core:jersey-server:2.36", + "org.glassfish:jakarta.el:3.0.4", + "org.hibernate.validator:hibernate-validator:6.2.0.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar" + ], + "packages": [ + "org.glassfish.jersey.server.validation", + "org.glassfish.jersey.server.validation.internal", + "org.glassfish.jersey.server.validation.internal.hibernate" + ], + "sha256": "9be74faf1a2a3011d326bb38300c86e6cec194d83515874127c871940d592879", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/ext/jersey-bean-validation/2.36/jersey-bean-validation-2.36.jar" + }, + { + "coord": "org.glassfish.jersey.inject:jersey-hk2:2.36", + "dependencies": [ + "jakarta.annotation:jakarta.annotation-api:1.3.5", + "jakarta.ws.rs:jakarta.ws.rs-api:2.1.6", + "org.glassfish.hk2.external:aopalliance-repackaged:2.6.1", + "org.glassfish.hk2.external:jakarta.inject:2.6.1", + "org.glassfish.hk2:hk2-api:2.6.1", + "org.glassfish.hk2:hk2-locator:2.6.1", + "org.glassfish.hk2:hk2-utils:2.6.1", + "org.glassfish.hk2:osgi-resource-locator:1.0.3", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.javassist:javassist:3.27.0-GA" + ], + "directDependencies": [ + "org.glassfish.hk2:hk2-locator:2.6.1", + "org.glassfish.jersey.core:jersey-common:2.36", + "org.javassist:javassist:3.27.0-GA" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://packages.confluent.io/maven/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://jitpack.io/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://repo1.maven.org/maven2/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://repository.apache.org/snapshots/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar", + "https://maven.google.com/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar" + ], + "packages": [ + "org.glassfish.jersey.inject.hk2" + ], + "sha256": "bdc4a8250be82943f7af1ccea4f58a92a8a73c15307ec4226fd60b8a455672f6", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jersey/inject/jersey-hk2/2.36/jersey-hk2-2.36.jar" + }, + { + "coord": "org.glassfish:jakarta.el:3.0.4", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://packages.confluent.io/maven/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://jitpack.io/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://repo1.maven.org/maven2/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://repository.apache.org/snapshots/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar", + "https://maven.google.com/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar" + ], + "packages": [ + "com.sun.el", + "com.sun.el.lang", + "com.sun.el.parser", + "com.sun.el.stream", + "com.sun.el.util", + "javax.el" + ], + "sha256": "3b8d4311b47fb47d168ad4338b6649a7cc21d5066b9765bd28ebca93148064be", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/glassfish/jakarta.el/3.0.4/jakarta.el-3.0.4.jar" + }, + { + "coord": "org.hamcrest:hamcrest-core:1.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://packages.confluent.io/maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://jitpack.io/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://repository.apache.org/snapshots/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar", + "https://maven.google.com/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" + ], + "packages": [ + "org.hamcrest", + "org.hamcrest.core", + "org.hamcrest.internal" + ], + "sha256": "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar" + }, + { + "coord": "org.hibernate.validator:hibernate-validator:6.2.0.Final", + "dependencies": [ + "com.fasterxml:classmate:1.5.1", + "jakarta.validation:jakarta.validation-api:2.0.2", + "org.jboss.logging:jboss-logging:3.4.1.Final" + ], + "directDependencies": [ + "com.fasterxml:classmate:1.5.1", + "jakarta.validation:jakarta.validation-api:2.0.2", + "org.jboss.logging:jboss-logging:3.4.1.Final" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://packages.confluent.io/maven/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://jitpack.io/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://repo1.maven.org/maven2/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://repository.apache.org/snapshots/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar", + "https://maven.google.com/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar" + ], + "packages": [ + "org.hibernate.validator", + "org.hibernate.validator.cfg", + "org.hibernate.validator.cfg.context", + "org.hibernate.validator.cfg.defs", + "org.hibernate.validator.cfg.defs.br", + "org.hibernate.validator.cfg.defs.pl", + "org.hibernate.validator.cfg.defs.ru", + "org.hibernate.validator.constraints", + "org.hibernate.validator.constraints.br", + "org.hibernate.validator.constraints.pl", + "org.hibernate.validator.constraints.ru", + "org.hibernate.validator.constraints.time", + "org.hibernate.validator.constraintvalidation", + "org.hibernate.validator.constraintvalidators", + "org.hibernate.validator.engine", + "org.hibernate.validator.group", + "org.hibernate.validator.internal", + "org.hibernate.validator.internal.cfg.context", + "org.hibernate.validator.internal.constraintvalidators", + "org.hibernate.validator.internal.constraintvalidators.bv", + "org.hibernate.validator.internal.constraintvalidators.bv.money", + "org.hibernate.validator.internal.constraintvalidators.bv.notempty", + "org.hibernate.validator.internal.constraintvalidators.bv.number", + "org.hibernate.validator.internal.constraintvalidators.bv.number.bound", + "org.hibernate.validator.internal.constraintvalidators.bv.number.bound.decimal", + "org.hibernate.validator.internal.constraintvalidators.bv.number.sign", + "org.hibernate.validator.internal.constraintvalidators.bv.size", + "org.hibernate.validator.internal.constraintvalidators.bv.time", + "org.hibernate.validator.internal.constraintvalidators.bv.time.future", + "org.hibernate.validator.internal.constraintvalidators.bv.time.futureorpresent", + "org.hibernate.validator.internal.constraintvalidators.bv.time.past", + "org.hibernate.validator.internal.constraintvalidators.bv.time.pastorpresent", + "org.hibernate.validator.internal.constraintvalidators.hv", + "org.hibernate.validator.internal.constraintvalidators.hv.br", + "org.hibernate.validator.internal.constraintvalidators.hv.pl", + "org.hibernate.validator.internal.constraintvalidators.hv.ru", + "org.hibernate.validator.internal.constraintvalidators.hv.time", + "org.hibernate.validator.internal.engine", + "org.hibernate.validator.internal.engine.constraintdefinition", + "org.hibernate.validator.internal.engine.constraintvalidation", + "org.hibernate.validator.internal.engine.groups", + "org.hibernate.validator.internal.engine.messageinterpolation", + "org.hibernate.validator.internal.engine.messageinterpolation.el", + "org.hibernate.validator.internal.engine.messageinterpolation.parser", + "org.hibernate.validator.internal.engine.messageinterpolation.util", + "org.hibernate.validator.internal.engine.path", + "org.hibernate.validator.internal.engine.resolver", + "org.hibernate.validator.internal.engine.scripting", + "org.hibernate.validator.internal.engine.validationcontext", + "org.hibernate.validator.internal.engine.valuecontext", + "org.hibernate.validator.internal.engine.valueextraction", + "org.hibernate.validator.internal.metadata", + "org.hibernate.validator.internal.metadata.aggregated", + "org.hibernate.validator.internal.metadata.aggregated.rule", + "org.hibernate.validator.internal.metadata.core", + "org.hibernate.validator.internal.metadata.descriptor", + "org.hibernate.validator.internal.metadata.facets", + "org.hibernate.validator.internal.metadata.location", + "org.hibernate.validator.internal.metadata.provider", + "org.hibernate.validator.internal.metadata.raw", + "org.hibernate.validator.internal.properties", + "org.hibernate.validator.internal.properties.javabean", + "org.hibernate.validator.internal.util", + "org.hibernate.validator.internal.util.annotation", + "org.hibernate.validator.internal.util.classhierarchy", + "org.hibernate.validator.internal.util.logging", + "org.hibernate.validator.internal.util.logging.formatter", + "org.hibernate.validator.internal.util.privilegedactions", + "org.hibernate.validator.internal.util.stereotypes", + "org.hibernate.validator.internal.xml", + "org.hibernate.validator.internal.xml.config", + "org.hibernate.validator.internal.xml.mapping", + "org.hibernate.validator.messageinterpolation", + "org.hibernate.validator.metadata", + "org.hibernate.validator.parameternameprovider", + "org.hibernate.validator.path", + "org.hibernate.validator.resourceloading", + "org.hibernate.validator.spi.cfg", + "org.hibernate.validator.spi.group", + "org.hibernate.validator.spi.messageinterpolation", + "org.hibernate.validator.spi.nodenameprovider", + "org.hibernate.validator.spi.properties", + "org.hibernate.validator.spi.resourceloading", + "org.hibernate.validator.spi.scripting" + ], + "sha256": "7a694d0621e3007465718b95cee7fb3e40b5b77834e812380bbde79659a4d704", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/hibernate/validator/hibernate-validator/6.2.0.Final/hibernate-validator-6.2.0.Final.jar" + }, + { + "coord": "org.javassist:javassist:3.27.0-GA", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://packages.confluent.io/maven/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://jitpack.io/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://repo1.maven.org/maven2/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://repository.apache.org/snapshots/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar", + "https://maven.google.com/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar" + ], + "packages": [ + "javassist", + "javassist.bytecode", + "javassist.bytecode.analysis", + "javassist.bytecode.annotation", + "javassist.bytecode.stackmap", + "javassist.compiler", + "javassist.compiler.ast", + "javassist.convert", + "javassist.expr", + "javassist.runtime", + "javassist.scopedpool", + "javassist.tools", + "javassist.tools.reflect", + "javassist.tools.rmi", + "javassist.tools.web", + "javassist.util", + "javassist.util.proxy" + ], + "sha256": "0730bdb1547a5a3f458d60400d804078d80f329c5b5dbc2498a4e220de8f7013", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/javassist/javassist/3.27.0-GA/javassist-3.27.0-GA.jar" + }, + { + "coord": "org.jboss.logging:jboss-logging:3.4.1.Final", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://packages.confluent.io/maven/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://jitpack.io/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://repo1.maven.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://repository.apache.org/snapshots/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar", + "https://maven.google.com/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar" + ], + "packages": [ + "org.jboss.logging" + ], + "sha256": "8efe877d93e5e1057a1388b2950503b88b0c28447364fde08adbec61e524eeb8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-reflect:1.7.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar" + ], + "packages": [ + "kotlin.reflect.full", + "kotlin.reflect.jvm", + "kotlin.reflect.jvm.internal", + "kotlin.reflect.jvm.internal.calls", + "kotlin.reflect.jvm.internal.impl", + "kotlin.reflect.jvm.internal.impl.builtins", + "kotlin.reflect.jvm.internal.impl.builtins.functions", + "kotlin.reflect.jvm.internal.impl.builtins.jvm", + "kotlin.reflect.jvm.internal.impl.descriptors", + "kotlin.reflect.jvm.internal.impl.descriptors.annotations", + "kotlin.reflect.jvm.internal.impl.descriptors.deserialization", + "kotlin.reflect.jvm.internal.impl.descriptors.impl", + "kotlin.reflect.jvm.internal.impl.descriptors.java", + "kotlin.reflect.jvm.internal.impl.descriptors.runtime.components", + "kotlin.reflect.jvm.internal.impl.descriptors.runtime.structure", + "kotlin.reflect.jvm.internal.impl.incremental", + "kotlin.reflect.jvm.internal.impl.incremental.components", + "kotlin.reflect.jvm.internal.impl.load.java", + "kotlin.reflect.jvm.internal.impl.load.java.components", + "kotlin.reflect.jvm.internal.impl.load.java.descriptors", + "kotlin.reflect.jvm.internal.impl.load.java.lazy", + "kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors", + "kotlin.reflect.jvm.internal.impl.load.java.lazy.types", + "kotlin.reflect.jvm.internal.impl.load.java.sources", + "kotlin.reflect.jvm.internal.impl.load.java.structure", + "kotlin.reflect.jvm.internal.impl.load.java.typeEnhancement", + "kotlin.reflect.jvm.internal.impl.load.kotlin", + "kotlin.reflect.jvm.internal.impl.load.kotlin.header", + "kotlin.reflect.jvm.internal.impl.metadata", + "kotlin.reflect.jvm.internal.impl.metadata.builtins", + "kotlin.reflect.jvm.internal.impl.metadata.deserialization", + "kotlin.reflect.jvm.internal.impl.metadata.jvm", + "kotlin.reflect.jvm.internal.impl.metadata.jvm.deserialization", + "kotlin.reflect.jvm.internal.impl.name", + "kotlin.reflect.jvm.internal.impl.platform", + "kotlin.reflect.jvm.internal.impl.protobuf", + "kotlin.reflect.jvm.internal.impl.renderer", + "kotlin.reflect.jvm.internal.impl.resolve", + "kotlin.reflect.jvm.internal.impl.resolve.calls.inference", + "kotlin.reflect.jvm.internal.impl.resolve.constants", + "kotlin.reflect.jvm.internal.impl.resolve.deprecation", + "kotlin.reflect.jvm.internal.impl.resolve.descriptorUtil", + "kotlin.reflect.jvm.internal.impl.resolve.jvm", + "kotlin.reflect.jvm.internal.impl.resolve.sam", + "kotlin.reflect.jvm.internal.impl.resolve.scopes", + "kotlin.reflect.jvm.internal.impl.resolve.scopes.receivers", + "kotlin.reflect.jvm.internal.impl.serialization", + "kotlin.reflect.jvm.internal.impl.serialization.deserialization", + "kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins", + "kotlin.reflect.jvm.internal.impl.serialization.deserialization.descriptors", + "kotlin.reflect.jvm.internal.impl.storage", + "kotlin.reflect.jvm.internal.impl.types", + "kotlin.reflect.jvm.internal.impl.types.checker", + "kotlin.reflect.jvm.internal.impl.types.error", + "kotlin.reflect.jvm.internal.impl.types.extensions", + "kotlin.reflect.jvm.internal.impl.types.model", + "kotlin.reflect.jvm.internal.impl.types.typeUtil", + "kotlin.reflect.jvm.internal.impl.types.typesApproximation", + "kotlin.reflect.jvm.internal.impl.util", + "kotlin.reflect.jvm.internal.impl.util.capitalizeDecapitalize", + "kotlin.reflect.jvm.internal.impl.util.collectionUtils", + "kotlin.reflect.jvm.internal.impl.utils", + "kotlin.reflect.jvm.internal.pcollections" + ], + "sha256": "d22146070957a44360006837873c51b6602c96a819576b40fdabcd95b7740771", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-reflect/1.7.0/kotlin-reflect-1.7.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-script-runtime:1.6.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar" + ], + "packages": [ + "kotlin.script.dependencies", + "kotlin.script.experimental.dependencies", + "kotlin.script.experimental.location", + "kotlin.script.extensions", + "kotlin.script.templates", + "kotlin.script.templates.standard" + ], + "sha256": "ddca0f765c416e77a4d8816f3d2df6eda953f61af811737846a22033225a0e57", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-script-runtime/1.6.0/kotlin-script-runtime-1.6.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-scripting-common:1.6.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar" + ], + "packages": [ + "kotlin.script.experimental.annotations", + "kotlin.script.experimental.api", + "kotlin.script.experimental.host", + "kotlin.script.experimental.impl", + "kotlin.script.experimental.util" + ], + "sha256": "16699b070afc4422300c9ed66e81e98b65f7c691faa852b8d44195e509dd6d22", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-common/1.6.0/kotlin-scripting-common-1.6.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-script-runtime:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-common:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-jvm:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar" + ], + "packages": [ + "org.jetbrains.kotlin.scripting.compiler.plugin", + "org.jetbrains.kotlin.scripting.compiler.plugin.definitions", + "org.jetbrains.kotlin.scripting.compiler.plugin.dependencies", + "org.jetbrains.kotlin.scripting.compiler.plugin.extensions", + "org.jetbrains.kotlin.scripting.compiler.plugin.impl", + "org.jetbrains.kotlin.scripting.compiler.plugin.repl", + "org.jetbrains.kotlin.scripting.compiler.plugin.repl.configuration", + "org.jetbrains.kotlin.scripting.compiler.plugin.repl.messages", + "org.jetbrains.kotlin.scripting.compiler.plugin.repl.reader", + "org.jetbrains.kotlin.scripting.compiler.plugin.repl.writer", + "org.jetbrains.kotlin.scripting.repl.js" + ], + "sha256": "2cd1c6f6af69c16b7934d7d8d67c183349b434f450482d7229a9607136fa0447", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.6.0/kotlin-scripting-compiler-embeddable-1.6.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.6.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-script-runtime:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-common:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-jvm:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-scripting-common:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-jvm:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar" + ], + "packages": [ + "org.jetbrains.kotlin.scripting", + "org.jetbrains.kotlin.scripting.configuration", + "org.jetbrains.kotlin.scripting.definitions", + "org.jetbrains.kotlin.scripting.extensions", + "org.jetbrains.kotlin.scripting.resolve" + ], + "sha256": "e4bd48906746e4cd19e016445599dca2683a994da06ac38cad383aac48338da8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-compiler-impl-embeddable/1.6.0/kotlin-scripting-compiler-impl-embeddable-1.6.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-scripting-jvm:1.6.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-script-runtime:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-common:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-script-runtime:1.6.0", + "org.jetbrains.kotlin:kotlin-scripting-common:1.6.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar" + ], + "packages": [ + "kotlin.script.experimental.jvm", + "kotlin.script.experimental.jvm.compat", + "kotlin.script.experimental.jvm.impl", + "kotlin.script.experimental.jvm.util" + ], + "sha256": "5f6a7ea274cb6c6c4372094a3572df2a392aa5389f1553b824873d62d6003652", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-scripting-jvm/1.6.0/kotlin-scripting-jvm-1.6.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar" + ], + "packages": [], + "sha256": "59c6ff64fe9a6604afce03e8aaa75f83586c6030ac71fb0b34ee7cdefed3618f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.0/kotlin-stdlib-common-1.7.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar" + ], + "packages": [ + "kotlin.internal.jdk7", + "kotlin.io.path", + "kotlin.jdk7" + ], + "sha256": "07e91be9b2ca20672d2bdb7e181b766e73453a2da13492b5ddaee8fa47aea239", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.0/kotlin-stdlib-jdk7-1.7.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0", + "org.jetbrains.kotlin:kotlin-stdlib:1.7.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar" + ], + "packages": [ + "kotlin.collections.jdk8", + "kotlin.internal.jdk8", + "kotlin.jvm.jdk8", + "kotlin.jvm.optionals", + "kotlin.random.jdk8", + "kotlin.streams.jdk8", + "kotlin.text.jdk8", + "kotlin.time.jdk8" + ], + "sha256": "cf058e11db1dfc9944680c8c61b95ac689aaaa8a3eb30bced028100f038f030b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.0/kotlin-stdlib-jdk8-1.7.0.jar" + }, + { + "coord": "org.jetbrains.kotlin:kotlin-stdlib:1.7.0", + "dependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "directDependencies": [ + "org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0", + "org.jetbrains:annotations:13.0" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://jitpack.io/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar", + "https://maven.google.com/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar" + ], + "packages": [ + "kotlin", + "kotlin.annotation", + "kotlin.collections", + "kotlin.collections.builders", + "kotlin.collections.unsigned", + "kotlin.comparisons", + "kotlin.concurrent", + "kotlin.contracts", + "kotlin.coroutines", + "kotlin.coroutines.cancellation", + "kotlin.coroutines.intrinsics", + "kotlin.coroutines.jvm.internal", + "kotlin.experimental", + "kotlin.internal", + "kotlin.io", + "kotlin.js", + "kotlin.jvm", + "kotlin.jvm.functions", + "kotlin.jvm.internal", + "kotlin.jvm.internal.markers", + "kotlin.jvm.internal.unsafe", + "kotlin.math", + "kotlin.properties", + "kotlin.random", + "kotlin.ranges", + "kotlin.reflect", + "kotlin.sequences", + "kotlin.system", + "kotlin.text", + "kotlin.time" + ], + "sha256": "aa88e9625577957f3249a46cb6e166ee09b369e600f7a11d148d16b0a6d87f05", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/kotlin/kotlin-stdlib/1.7.0/kotlin-stdlib-1.7.0.jar" + }, + { + "coord": "org.jetbrains:annotations:13.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://packages.confluent.io/maven/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://jitpack.io/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://repo1.maven.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://repository.apache.org/snapshots/org/jetbrains/annotations/13.0/annotations-13.0.jar", + "https://maven.google.com/org/jetbrains/annotations/13.0/annotations-13.0.jar" + ], + "packages": [ + "org.intellij.lang.annotations", + "org.jetbrains.annotations" + ], + "sha256": "ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/jetbrains/annotations/13.0/annotations-13.0.jar" + }, + { + "coord": "org.json:json:20220320", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/json/json/20220320/json-20220320.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/json/json/20220320/json-20220320.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/json/json/20220320/json-20220320.jar", + "https://packages.confluent.io/maven/org/json/json/20220320/json-20220320.jar", + "https://jitpack.io/org/json/json/20220320/json-20220320.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/json/json/20220320/json-20220320.jar", + "https://repo1.maven.org/maven2/org/json/json/20220320/json-20220320.jar", + "https://repository.apache.org/snapshots/org/json/json/20220320/json-20220320.jar", + "https://maven.google.com/org/json/json/20220320/json-20220320.jar" + ], + "packages": [ + "org.json" + ], + "sha256": "1edf7fcea79a16b8dfdd3bc988ddec7f8908b1f7762fdf00d39acb037542747a", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/json/json/20220320/json-20220320.jar" + }, + { + "coord": "org.lz4:lz4-java:1.8.0", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://packages.confluent.io/maven/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://jitpack.io/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://repo1.maven.org/maven2/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://repository.apache.org/snapshots/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar", + "https://maven.google.com/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar" + ], + "packages": [ + "net.jpountz.lz4", + "net.jpountz.util", + "net.jpountz.xxhash" + ], + "sha256": "d74a3334fb35195009b338a951f918203d6bbca3d1d359033dc33edd1cadc9ef", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar" + }, + { + "coord": "org.mockito:mockito-core:4.6.1", + "dependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.objenesis:objenesis:3.2" + ], + "directDependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.objenesis:objenesis:3.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://packages.confluent.io/maven/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://jitpack.io/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://repo1.maven.org/maven2/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://repository.apache.org/snapshots/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar", + "https://maven.google.com/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar" + ], + "packages": [ + "org.mockito", + "org.mockito.codegen", + "org.mockito.configuration", + "org.mockito.creation.instance", + "org.mockito.exceptions.base", + "org.mockito.exceptions.misusing", + "org.mockito.exceptions.stacktrace", + "org.mockito.exceptions.verification", + "org.mockito.exceptions.verification.junit", + "org.mockito.exceptions.verification.opentest4j", + "org.mockito.hamcrest", + "org.mockito.internal", + "org.mockito.internal.configuration", + "org.mockito.internal.configuration.injection", + "org.mockito.internal.configuration.injection.filter", + "org.mockito.internal.configuration.injection.scanner", + "org.mockito.internal.configuration.plugins", + "org.mockito.internal.creation", + "org.mockito.internal.creation.bytebuddy", + "org.mockito.internal.creation.instance", + "org.mockito.internal.creation.proxy", + "org.mockito.internal.creation.settings", + "org.mockito.internal.creation.util", + "org.mockito.internal.debugging", + "org.mockito.internal.exceptions", + "org.mockito.internal.exceptions.stacktrace", + "org.mockito.internal.exceptions.util", + "org.mockito.internal.framework", + "org.mockito.internal.hamcrest", + "org.mockito.internal.handler", + "org.mockito.internal.invocation", + "org.mockito.internal.invocation.finder", + "org.mockito.internal.invocation.mockref", + "org.mockito.internal.junit", + "org.mockito.internal.listeners", + "org.mockito.internal.matchers", + "org.mockito.internal.matchers.apachecommons", + "org.mockito.internal.matchers.text", + "org.mockito.internal.progress", + "org.mockito.internal.reporting", + "org.mockito.internal.runners", + "org.mockito.internal.runners.util", + "org.mockito.internal.session", + "org.mockito.internal.stubbing", + "org.mockito.internal.stubbing.answers", + "org.mockito.internal.stubbing.defaultanswers", + "org.mockito.internal.util", + "org.mockito.internal.util.collections", + "org.mockito.internal.util.concurrent", + "org.mockito.internal.util.io", + "org.mockito.internal.util.reflection", + "org.mockito.internal.verification", + "org.mockito.internal.verification.api", + "org.mockito.internal.verification.argumentmatching", + "org.mockito.internal.verification.checkers", + "org.mockito.invocation", + "org.mockito.junit", + "org.mockito.listeners", + "org.mockito.mock", + "org.mockito.plugins", + "org.mockito.quality", + "org.mockito.session", + "org.mockito.stubbing", + "org.mockito.verification" + ], + "sha256": "ee3b91cdf4c23cff92960c32364371c683ee6415f1ec4678317bcea79c9f9819", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/mockito/mockito-core/4.6.1/mockito-core-4.6.1.jar" + }, + { + "coord": "org.mockito:mockito-inline:4.6.1", + "dependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.mockito:mockito-core:4.6.1", + "org.objenesis:objenesis:3.2" + ], + "directDependencies": [ + "org.mockito:mockito-core:4.6.1" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://packages.confluent.io/maven/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://jitpack.io/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://repo1.maven.org/maven2/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://repository.apache.org/snapshots/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar", + "https://maven.google.com/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar" + ], + "packages": [], + "sha256": "ee52e1c299a632184fba274a9370993e09140429f5e516e6c5570fd6574b297f", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/mockito/mockito-inline/4.6.1/mockito-inline-4.6.1.jar" + }, + { + "coord": "org.objenesis:objenesis:3.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://packages.confluent.io/maven/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://jitpack.io/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://repo1.maven.org/maven2/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://repository.apache.org/snapshots/org/objenesis/objenesis/3.2/objenesis-3.2.jar", + "https://maven.google.com/org/objenesis/objenesis/3.2/objenesis-3.2.jar" + ], + "packages": [ + "org.objenesis", + "org.objenesis.instantiator", + "org.objenesis.instantiator.android", + "org.objenesis.instantiator.annotations", + "org.objenesis.instantiator.basic", + "org.objenesis.instantiator.gcj", + "org.objenesis.instantiator.perc", + "org.objenesis.instantiator.sun", + "org.objenesis.instantiator.util", + "org.objenesis.strategy" + ], + "sha256": "03d960bd5aef03c653eb000413ada15eb77cdd2b8e4448886edf5692805e35f3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/objenesis/objenesis/3.2/objenesis-3.2.jar" + }, + { + "coord": "org.openjdk.jmh:jmh-core:1.21", + "dependencies": [ + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.commons:commons-math3:3.2" + ], + "directDependencies": [ + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.commons:commons-math3:3.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://packages.confluent.io/maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://jitpack.io/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://repo1.maven.org/maven2/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://repository.apache.org/snapshots/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar", + "https://maven.google.com/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar" + ], + "packages": [ + "org.openjdk.jmh", + "org.openjdk.jmh.annotations", + "org.openjdk.jmh.generators.core", + "org.openjdk.jmh.infra", + "org.openjdk.jmh.profile", + "org.openjdk.jmh.results", + "org.openjdk.jmh.results.format", + "org.openjdk.jmh.runner", + "org.openjdk.jmh.runner.format", + "org.openjdk.jmh.runner.link", + "org.openjdk.jmh.runner.options", + "org.openjdk.jmh.util", + "org.openjdk.jmh.util.lines" + ], + "sha256": "79aecd73ffb5d95d88b1ac36b505fa30ae3e83788e936838e2be9a51074fd2dd", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar" + }, + { + "coord": "org.openjdk.jmh:jmh-generator-annprocess:1.21", + "dependencies": [ + "net.sf.jopt-simple:jopt-simple:5.0.4", + "org.apache.commons:commons-math3:3.2", + "org.openjdk.jmh:jmh-core:1.21" + ], + "directDependencies": [ + "org.openjdk.jmh:jmh-core:1.21" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://packages.confluent.io/maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://jitpack.io/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://repo1.maven.org/maven2/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://repository.apache.org/snapshots/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar", + "https://maven.google.com/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar" + ], + "packages": [ + "org.openjdk.jmh.generators", + "org.openjdk.jmh.generators.annotations" + ], + "sha256": "c5636ecbc617732f5acf41f94521cf6ae4f5bc6ad3512e82416fbbaabe805fe5", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar" + }, + { + "coord": "org.ow2.asm:asm-analysis:9.3", + "dependencies": [ + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "org.ow2.asm:asm-tree:9.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://packages.confluent.io/maven/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://jitpack.io/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://repository.apache.org/snapshots/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar", + "https://maven.google.com/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar" + ], + "packages": [ + "org.objectweb.asm.tree.analysis" + ], + "sha256": "37fd5392bb2cf4c15f202ffefd46d0e92bb34ff848c549f30d426a60d6b29495", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.jar" + }, + { + "coord": "org.ow2.asm:asm-commons:9.3", + "dependencies": [ + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://packages.confluent.io/maven/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://jitpack.io/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://repository.apache.org/snapshots/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar", + "https://maven.google.com/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar" + ], + "packages": [ + "org.objectweb.asm.commons" + ], + "sha256": "a347c24732db2aead106b6e5996a015b06a3ef86e790a4f75b61761f0d2f7f39", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar" + }, + { + "coord": "org.ow2.asm:asm-tree:9.3", + "dependencies": [ + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "org.ow2.asm:asm:9.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://packages.confluent.io/maven/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://jitpack.io/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://repository.apache.org/snapshots/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar", + "https://maven.google.com/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar" + ], + "packages": [ + "org.objectweb.asm.tree" + ], + "sha256": "ae629c2609f39681ef8d140a42a23800464a94f2d23e36d8f25cd10d5e4caff4", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.jar" + }, + { + "coord": "org.ow2.asm:asm-util:9.3", + "dependencies": [ + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "directDependencies": [ + "org.ow2.asm:asm-analysis:9.3", + "org.ow2.asm:asm-tree:9.3", + "org.ow2.asm:asm:9.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://packages.confluent.io/maven/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://jitpack.io/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://repository.apache.org/snapshots/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar", + "https://maven.google.com/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar" + ], + "packages": [ + "org.objectweb.asm.util" + ], + "sha256": "70f78f291ca0298afdb567fa85c5667869bc3da3914784816413853994962192", + "url": "https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar" + }, + { + "coord": "org.ow2.asm:asm:9.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm/9.3/asm-9.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://packages.confluent.io/maven/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://jitpack.io/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://repo1.maven.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://repository.apache.org/snapshots/org/ow2/asm/asm/9.3/asm-9.3.jar", + "https://maven.google.com/org/ow2/asm/asm/9.3/asm-9.3.jar" + ], + "packages": [ + "org.objectweb.asm", + "org.objectweb.asm.signature" + ], + "sha256": "1263369b59e29c943918de11d6d6152e2ec6085ce63e5710516f8c67d368e4bc", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/ow2/asm/asm/9.3/asm-9.3.jar" + }, + { + "coord": "org.pcollections:pcollections:4.0.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://packages.confluent.io/maven/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://jitpack.io/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://repo1.maven.org/maven2/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://repository.apache.org/snapshots/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar", + "https://maven.google.com/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar" + ], + "packages": [ + "org.pcollections" + ], + "sha256": "1f82766d7c3221930854033bebff5073ea46b43f27326074bbe15d148c18bfb3", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/pcollections/pcollections/4.0.1/pcollections-4.0.1.jar" + }, + { + "coord": "org.powermock:powermock-core:2.0.9", + "dependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.javassist:javassist:3.27.0-GA", + "org.objenesis:objenesis:3.2", + "org.powermock:powermock-reflect:2.0.9" + ], + "directDependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.javassist:javassist:3.27.0-GA", + "org.powermock:powermock-reflect:2.0.9" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://packages.confluent.io/maven/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://jitpack.io/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://repo1.maven.org/maven2/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://repository.apache.org/snapshots/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar", + "https://maven.google.com/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar" + ], + "packages": [ + "org.powermock", + "org.powermock.configuration", + "org.powermock.configuration.support", + "org.powermock.core", + "org.powermock.core.agent", + "org.powermock.core.bytebuddy", + "org.powermock.core.classloader", + "org.powermock.core.classloader.annotations", + "org.powermock.core.classloader.javassist", + "org.powermock.core.reporter", + "org.powermock.core.spi", + "org.powermock.core.spi.listener", + "org.powermock.core.spi.support", + "org.powermock.core.spi.testresult", + "org.powermock.core.spi.testresult.impl", + "org.powermock.core.testlisteners", + "org.powermock.core.transformers", + "org.powermock.core.transformers.javassist", + "org.powermock.core.transformers.javassist.support", + "org.powermock.core.transformers.javassist.testclass", + "org.powermock.core.transformers.support", + "org.powermock.mockpolicies", + "org.powermock.mockpolicies.impl", + "org.powermock.mockpolicies.support", + "org.powermock.tests.utils", + "org.powermock.tests.utils.impl", + "org.powermock.utils" + ], + "sha256": "e5183d1e197bcd67e8f86eeb5acc4cc4b4a7aa993e9daa249f8d8d6973f06c49", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-core/2.0.9/powermock-core-2.0.9.jar" + }, + { + "coord": "org.powermock:powermock-module-junit4-common:2.0.9", + "dependencies": [ + "junit:junit:4.13.2", + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.hamcrest:hamcrest-core:1.3", + "org.javassist:javassist:3.27.0-GA", + "org.objenesis:objenesis:3.2", + "org.powermock:powermock-core:2.0.9", + "org.powermock:powermock-reflect:2.0.9" + ], + "directDependencies": [ + "junit:junit:4.13.2", + "org.hamcrest:hamcrest-core:1.3", + "org.powermock:powermock-core:2.0.9", + "org.powermock:powermock-reflect:2.0.9" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://packages.confluent.io/maven/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://jitpack.io/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://repo1.maven.org/maven2/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://repository.apache.org/snapshots/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar", + "https://maven.google.com/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar" + ], + "packages": [ + "org.powermock.modules.junit4.common.internal", + "org.powermock.modules.junit4.common.internal.impl" + ], + "sha256": "446f975ffa98960ab6eafccb5c4d1e2cb5747f7d80cda653548a02d584289e83", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-module-junit4-common/2.0.9/powermock-module-junit4-common-2.0.9.jar" + }, + { + "coord": "org.powermock:powermock-module-junit4:2.0.9", + "dependencies": [ + "junit:junit:4.13.2", + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.hamcrest:hamcrest-core:1.3", + "org.javassist:javassist:3.27.0-GA", + "org.objenesis:objenesis:3.2", + "org.powermock:powermock-core:2.0.9", + "org.powermock:powermock-module-junit4-common:2.0.9", + "org.powermock:powermock-reflect:2.0.9" + ], + "directDependencies": [ + "junit:junit:4.13.2", + "org.hamcrest:hamcrest-core:1.3", + "org.powermock:powermock-module-junit4-common:2.0.9" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://packages.confluent.io/maven/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://jitpack.io/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://repo1.maven.org/maven2/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://repository.apache.org/snapshots/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar", + "https://maven.google.com/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar" + ], + "packages": [ + "org.powermock.modules.junit4", + "org.powermock.modules.junit4.internal.impl", + "org.powermock.modules.junit4.internal.impl.testcaseworkaround" + ], + "sha256": "d0e8a83183a9a8a18ff83e1592a611fa206cab0838466ce367e3d0a851a274e2", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-module-junit4/2.0.9/powermock-module-junit4-2.0.9.jar" + }, + { + "coord": "org.powermock:powermock-reflect:2.0.9", + "dependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.objenesis:objenesis:3.2" + ], + "directDependencies": [ + "net.bytebuddy:byte-buddy-agent:1.12.10", + "net.bytebuddy:byte-buddy:1.12.10", + "org.objenesis:objenesis:3.2" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://packages.confluent.io/maven/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://jitpack.io/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://repo1.maven.org/maven2/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://repository.apache.org/snapshots/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar", + "https://maven.google.com/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar" + ], + "packages": [ + "org.powermock.reflect", + "org.powermock.reflect.exceptions", + "org.powermock.reflect.internal", + "org.powermock.reflect.internal.comparator", + "org.powermock.reflect.internal.matcherstrategies", + "org.powermock.reflect.internal.primitivesupport", + "org.powermock.reflect.internal.proxy", + "org.powermock.reflect.matching" + ], + "sha256": "a1374bd368b52b54b252d5281b9391363b58cb667a6375242fd6a3f482bc8c23", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/powermock/powermock-reflect/2.0.9/powermock-reflect-2.0.9.jar" + }, + { + "coord": "org.projectnessie.cel:cel-core:0.3.11", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.21.9", + "org.agrona:agrona:1.17.1", + "org.projectnessie.cel:cel-generated-antlr:0.3.11", + "org.projectnessie.cel:cel-generated-pb:0.3.11" + ], + "directDependencies": [ + "org.agrona:agrona:1.17.1", + "org.projectnessie.cel:cel-generated-antlr:0.3.11", + "org.projectnessie.cel:cel-generated-pb:0.3.11" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://packages.confluent.io/maven/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://jitpack.io/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://repo1.maven.org/maven2/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://repository.apache.org/snapshots/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar", + "https://maven.google.com/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar" + ], + "packages": [ + "org.projectnessie.cel", + "org.projectnessie.cel.checker", + "org.projectnessie.cel.common", + "org.projectnessie.cel.common.containers", + "org.projectnessie.cel.common.debug", + "org.projectnessie.cel.common.operators", + "org.projectnessie.cel.common.types", + "org.projectnessie.cel.common.types.pb", + "org.projectnessie.cel.common.types.ref", + "org.projectnessie.cel.common.types.traits", + "org.projectnessie.cel.extension", + "org.projectnessie.cel.interpreter", + "org.projectnessie.cel.interpreter.functions", + "org.projectnessie.cel.parser" + ], + "sha256": "a8cba224dde799635adbf4a2aef9390e5b52af51640f22bb2b0c6e3cfd5b56ad", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-core/0.3.11/cel-core-0.3.11.jar" + }, + { + "coord": "org.projectnessie.cel:cel-generated-antlr:0.3.11", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://packages.confluent.io/maven/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://jitpack.io/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://repo1.maven.org/maven2/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://repository.apache.org/snapshots/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar", + "https://maven.google.com/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar" + ], + "packages": [ + "org.projectnessie.cel.parser.gen", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime.atn", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime.dfa", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime.misc", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime.tree", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime.tree.pattern", + "org.projectnessie.cel.shaded.org.antlr.v4.runtime.tree.xpath" + ], + "sha256": "80751781a063e71155b176208e4b67cef6482eaa1f96139baed2e628b509a8a7", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-generated-antlr/0.3.11/cel-generated-antlr-0.3.11.jar" + }, + { + "coord": "org.projectnessie.cel:cel-generated-pb:0.3.11", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.21.9" + ], + "directDependencies": [ + "com.google.protobuf:protobuf-java:3.21.9" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://packages.confluent.io/maven/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://jitpack.io/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://repo1.maven.org/maven2/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://repository.apache.org/snapshots/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar", + "https://maven.google.com/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar" + ], + "packages": [ + "com.google.api.expr.v1alpha1", + "com.google.rpc", + "com.google.rpc.context" + ], + "sha256": "4c26d0c8142e8c2b26ef68b6458739ac9737af97baab76c690ed036a4cc7a2d0", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-generated-pb/0.3.11/cel-generated-pb-0.3.11.jar" + }, + { + "coord": "org.projectnessie.cel:cel-jackson:0.3.11", + "dependencies": [ + "com.fasterxml.jackson.core:jackson-core:2.14.2", + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf:2.14.1", + "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1", + "com.google.protobuf:protobuf-java:3.21.9", + "com.squareup:protoparser:4.0.3", + "org.agrona:agrona:1.17.1", + "org.projectnessie.cel:cel-core:0.3.11", + "org.projectnessie.cel:cel-generated-antlr:0.3.11", + "org.projectnessie.cel:cel-generated-pb:0.3.11", + "org.yaml:snakeyaml:1.33" + ], + "directDependencies": [ + "com.fasterxml.jackson.core:jackson-databind:2.14.2", + "com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf:2.14.1", + "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1", + "org.projectnessie.cel:cel-core:0.3.11" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://packages.confluent.io/maven/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://jitpack.io/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://repo1.maven.org/maven2/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://repository.apache.org/snapshots/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar", + "https://maven.google.com/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar" + ], + "packages": [ + "org.projectnessie.cel.types.jackson" + ], + "sha256": "2911ec62d19e5fb9adfdf0a6e5cf3515027576e9fca7eb1611c0c7029c850fac", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-jackson/0.3.11/cel-jackson-0.3.11.jar" + }, + { + "coord": "org.projectnessie.cel:cel-tools:0.3.11", + "dependencies": [ + "com.google.protobuf:protobuf-java:3.21.9", + "org.agrona:agrona:1.17.1", + "org.projectnessie.cel:cel-core:0.3.11", + "org.projectnessie.cel:cel-generated-antlr:0.3.11", + "org.projectnessie.cel:cel-generated-pb:0.3.11" + ], + "directDependencies": [ + "org.projectnessie.cel:cel-core:0.3.11" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://packages.confluent.io/maven/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://jitpack.io/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://repo1.maven.org/maven2/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://repository.apache.org/snapshots/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar", + "https://maven.google.com/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar" + ], + "packages": [ + "org.projectnessie.cel.tools" + ], + "sha256": "c75e2d6e50f6e7def1db354c831be0a27d8ff0245f26f559057ad04bb4198bad", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/projectnessie/cel/cel-tools/0.3.11/cel-tools-0.3.11.jar" + }, + { + "coord": "org.reactivestreams:reactive-streams:1.0.4", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://packages.confluent.io/maven/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://jitpack.io/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://repository.apache.org/snapshots/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar", + "https://maven.google.com/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar" + ], + "packages": [ + "org.reactivestreams" + ], + "sha256": "f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar" + }, + { + "coord": "org.reflections:reflections:0.9.12", + "dependencies": [ + "org.javassist:javassist:3.27.0-GA" + ], + "directDependencies": [ + "org.javassist:javassist:3.27.0-GA" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://packages.confluent.io/maven/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://jitpack.io/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://repo1.maven.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://repository.apache.org/snapshots/org/reflections/reflections/0.9.12/reflections-0.9.12.jar", + "https://maven.google.com/org/reflections/reflections/0.9.12/reflections-0.9.12.jar" + ], + "packages": [ + "org.reflections", + "org.reflections.adapters", + "org.reflections.scanners", + "org.reflections.serializers", + "org.reflections.util", + "org.reflections.vfs" + ], + "sha256": "d168f58d32f2ae7ac5a8d5d9092adeee526c604b41125dcb45eea877960a99cf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/reflections/reflections/0.9.12/reflections-0.9.12.jar" + }, + { + "coord": "org.rocksdb:rocksdbjni:7.1.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://packages.confluent.io/maven/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://jitpack.io/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://repo1.maven.org/maven2/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://repository.apache.org/snapshots/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar", + "https://maven.google.com/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar" + ], + "packages": [ + "org.rocksdb", + "org.rocksdb.util" + ], + "sha256": "6d3b31904f170efc2171524462ce7290865c1e1efb47760469303d5b16a4b767", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/rocksdb/rocksdbjni/7.1.2/rocksdbjni-7.1.2.jar" + }, + { + "coord": "org.scala-lang.modules:scala-collection-compat_2.13:2.6.0", + "dependencies": [ + "org.scala-lang:scala-library:2.13.10" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.10" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://packages.confluent.io/maven/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://jitpack.io/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://repository.apache.org/snapshots/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar", + "https://maven.google.com/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar" + ], + "packages": [ + "scala.collection.compat", + "scala.collection.compat.immutable", + "scala.util.control.compat" + ], + "sha256": "7358248dc7c58b118e4d830f4128a6e72773cb0048587182c3db3414a4177b44", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/modules/scala-collection-compat_2.13/2.6.0/scala-collection-compat_2.13-2.6.0.jar" + }, + { + "coord": "org.scala-lang.modules:scala-java8-compat_2.13:1.0.2", + "dependencies": [ + "org.scala-lang:scala-library:2.13.10" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.10" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://packages.confluent.io/maven/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://jitpack.io/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://repo1.maven.org/maven2/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://repository.apache.org/snapshots/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar", + "https://maven.google.com/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar" + ], + "packages": [ + "scala.compat.java8", + "scala.compat.java8.FunctionConverters", + "scala.compat.java8.collectionImpl", + "scala.compat.java8.converterImpl", + "scala.compat.java8.functionConverterImpls", + "scala.compat.java8.wrappers", + "scala.concurrent.java8" + ], + "sha256": "90d5b13656be93fb779b8d7c723efa2498a34af06273bb5204afb65f85a20c1b", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/modules/scala-java8-compat_2.13/1.0.2/scala-java8-compat_2.13-1.0.2.jar" + }, + { + "coord": "org.scala-lang:scala-library:2.13.10", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://packages.confluent.io/maven/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://jitpack.io/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://repository.apache.org/snapshots/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar", + "https://maven.google.com/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar" + ], + "packages": [ + "scala", + "scala.annotation", + "scala.annotation.meta", + "scala.annotation.unchecked", + "scala.beans", + "scala.collection", + "scala.collection.concurrent", + "scala.collection.convert", + "scala.collection.convert.impl", + "scala.collection.generic", + "scala.collection.immutable", + "scala.collection.mutable", + "scala.compat", + "scala.concurrent", + "scala.concurrent.duration", + "scala.concurrent.impl", + "scala.io", + "scala.jdk", + "scala.jdk.javaapi", + "scala.math", + "scala.ref", + "scala.reflect", + "scala.reflect.macros.internal", + "scala.runtime", + "scala.runtime.java8", + "scala.sys", + "scala.sys.process", + "scala.util", + "scala.util.control", + "scala.util.hashing", + "scala.util.matching" + ], + "sha256": "e6ca607c3fce03e8fa38af3374ce1f8bb098e316e8bf6f6d27331360feddb1c1", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar" + }, + { + "coord": "org.scala-lang:scala-reflect:2.13.10", + "dependencies": [ + "org.scala-lang:scala-library:2.13.10" + ], + "directDependencies": [ + "org.scala-lang:scala-library:2.13.10" + ], + "exclusions": [ + "xml-apis:xml-apis", + "*:jline", + "*:jmxtools", + "*:jms", + "*:mail", + "*:javax", + "*:jmxri", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://packages.confluent.io/maven/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://jitpack.io/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://repository.apache.org/snapshots/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar", + "https://maven.google.com/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar" + ], + "packages": [ + "scala.reflect.api", + "scala.reflect.internal", + "scala.reflect.internal.annotations", + "scala.reflect.internal.pickling", + "scala.reflect.internal.settings", + "scala.reflect.internal.tpe", + "scala.reflect.internal.transform", + "scala.reflect.internal.util", + "scala.reflect.io", + "scala.reflect.macros", + "scala.reflect.macros.blackbox", + "scala.reflect.macros.whitebox", + "scala.reflect.runtime" + ], + "sha256": "62bd7a7198193c5373a992c122990279e413af3307162472a5d3cbb8ecadb35e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/scala-lang/scala-reflect/2.13.10/scala-reflect-2.13.10.jar" + }, + { + "coord": "org.slf4j:slf4j-api:2.0.3", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://packages.confluent.io/maven/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://jitpack.io/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://repository.apache.org/snapshots/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar", + "https://maven.google.com/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar" + ], + "packages": [ + "org.slf4j", + "org.slf4j.event", + "org.slf4j.helpers", + "org.slf4j.spi" + ], + "sha256": "68ddcda65300ff8097ad1a096d7cd2fb06cef25193887cec3f2690e01bdbf421", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/slf4j/slf4j-api/2.0.3/slf4j-api-2.0.3.jar" + }, + { + "coord": "org.slf4j:slf4j-reload4j:2.0.3", + "dependencies": [ + "ch.qos.reload4j:reload4j:1.2.22", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "ch.qos.reload4j:reload4j:1.2.22", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://packages.confluent.io/maven/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://jitpack.io/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://repo1.maven.org/maven2/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://repository.apache.org/snapshots/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar", + "https://maven.google.com/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar" + ], + "packages": [ + "org.slf4j.reload4j" + ], + "sha256": "bfeab83cbeec8eaf0c8de254f6d333c1b2e691a472e02e708892a049b357c4bf", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/slf4j/slf4j-reload4j/2.0.3/slf4j-reload4j-2.0.3.jar" + }, + { + "coord": "org.xerial.snappy:snappy-java:1.1.9.1", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://packages.confluent.io/maven/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://jitpack.io/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://repo1.maven.org/maven2/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://repository.apache.org/snapshots/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar", + "https://maven.google.com/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar" + ], + "packages": [ + "org.xerial.snappy", + "org.xerial.snappy.buffer", + "org.xerial.snappy.pool" + ], + "sha256": "b696bc9105d1e869de3e5b2bb165bd0a482bf08415917e25d29c7461e5b1496e", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar" + }, + { + "coord": "org.xmlresolver:xmlresolver:4.2.0", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://packages.confluent.io/maven/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://jitpack.io/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://repository.apache.org/snapshots/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar", + "https://maven.google.com/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar" + ], + "packages": [ + "org.xmlresolver", + "org.xmlresolver.cache", + "org.xmlresolver.catalog.entry", + "org.xmlresolver.catalog.query", + "org.xmlresolver.exceptions", + "org.xmlresolver.loaders", + "org.xmlresolver.logging", + "org.xmlresolver.sources", + "org.xmlresolver.tools", + "org.xmlresolver.utils" + ], + "sha256": "734f37f9e43124ea4a9ce09f754ffd095167822cbe68e9244f17db02a2f9e11f", + "url": "https://repo1.maven.org/maven2/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0.jar" + }, + { + "coord": "org.xmlresolver:xmlresolver:jar:data:4.2.0", + "dependencies": [ + "commons-codec:commons-codec:1.15", + "commons-logging:commons-logging:1.2", + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "directDependencies": [ + "org.apache.httpcomponents:httpclient:4.5.14", + "org.apache.httpcomponents:httpcore:4.4.16" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/repo1.maven.org/maven2/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "mirror_urls": [ + "https://repo1.maven.org/maven2/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://packages.confluent.io/maven/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://jitpack.io/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://repository.apache.org/snapshots/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar", + "https://maven.google.com/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar" + ], + "packages": [], + "sha256": "0d2395c0811910ddaff0df08626d6f5bffa3de3e8e699bc93e561d6509d9e53e", + "url": "https://repo1.maven.org/maven2/org/xmlresolver/xmlresolver/4.2.0/xmlresolver-4.2.0-data.jar" + }, + { + "coord": "org.yaml:snakeyaml:1.33", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://packages.confluent.io/maven/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://jitpack.io/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://oss.sonatype.org/content/repositories/snapshots/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://repo1.maven.org/maven2/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://repository.apache.org/snapshots/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar", + "https://maven.google.com/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar" + ], + "packages": [ + "org.yaml.snakeyaml", + "org.yaml.snakeyaml.comments", + "org.yaml.snakeyaml.composer", + "org.yaml.snakeyaml.constructor", + "org.yaml.snakeyaml.emitter", + "org.yaml.snakeyaml.env", + "org.yaml.snakeyaml.error", + "org.yaml.snakeyaml.events", + "org.yaml.snakeyaml.extensions.compactnotation", + "org.yaml.snakeyaml.external.biz.base64Coder", + "org.yaml.snakeyaml.external.com.google.gdata.util.common.base", + "org.yaml.snakeyaml.introspector", + "org.yaml.snakeyaml.nodes", + "org.yaml.snakeyaml.parser", + "org.yaml.snakeyaml.reader", + "org.yaml.snakeyaml.representer", + "org.yaml.snakeyaml.resolver", + "org.yaml.snakeyaml.scanner", + "org.yaml.snakeyaml.serializer", + "org.yaml.snakeyaml.tokens", + "org.yaml.snakeyaml.util" + ], + "sha256": "11ff459788f0a2d781f56a4a86d7e69202cebacd0273d5269c4ae9f02f3fd8f0", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar" + }, + { + "coord": "software.amazon.ion:ion-java:1.0.2", + "dependencies": [], + "directDependencies": [], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://packages.confluent.io/maven/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://jitpack.io/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://oss.sonatype.org/content/repositories/snapshots/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://repo1.maven.org/maven2/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://repository.apache.org/snapshots/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar", + "https://maven.google.com/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar" + ], + "packages": [ + "software.amazon.ion", + "software.amazon.ion.apps", + "software.amazon.ion.facet", + "software.amazon.ion.impl", + "software.amazon.ion.impl.bin", + "software.amazon.ion.impl.lite", + "software.amazon.ion.system", + "software.amazon.ion.util" + ], + "sha256": "0d127b205a1fce0abc2a3757a041748651bc66c15cf4c059bac5833b27d471a5", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/software/amazon/ion/ion-java/1.0.2/ion-java-1.0.2.jar" + }, + { + "coord": "uk.co.jemos.podam:podam:7.2.11.RELEASE", + "dependencies": [ + "javax.annotation:javax.annotation-api:1.3.2", + "javax.validation:validation-api:2.0.1.Final", + "net.jcip:jcip-annotations:1.0", + "org.apache.commons:commons-lang3:3.12.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "directDependencies": [ + "javax.annotation:javax.annotation-api:1.3.2", + "javax.validation:validation-api:2.0.1.Final", + "net.jcip:jcip-annotations:1.0", + "org.apache.commons:commons-lang3:3.12.0", + "org.slf4j:slf4j-api:2.0.3" + ], + "exclusions": [ + "xml-apis:xml-apis", + "org.apache.directory.api:api-ldap-schema-data" + ], + "file": "v1/https/confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "mirror_urls": [ + "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://confluent-519856050701.dp.confluent.io/maven/maven-public/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://packages.confluent.io/maven/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://jitpack.io/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://oss.sonatype.org/content/repositories/snapshots/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://repo1.maven.org/maven2/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://repository.apache.org/snapshots/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar", + "https://maven.google.com/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar" + ], + "packages": [ + "uk.co.jemos.podam.api", + "uk.co.jemos.podam.common", + "uk.co.jemos.podam.exceptions", + "uk.co.jemos.podam.typeManufacturers" + ], + "sha256": "40a983c5ab516bb73bdb930ed7a563fdfc53c62b66df0f8a3670bcf761c676c8", + "url": "https://confluent-519856050701.d.codeartifact.us-west-2.amazonaws.com/maven/maven/uk/co/jemos/podam/podam/7.2.11.RELEASE/podam-7.2.11.RELEASE.jar" + } + ], + "version": "0.1.0" + } +} diff --git a/package-kafka-serde-tools/BUILD.bazel b/package-kafka-serde-tools/BUILD.bazel new file mode 100644 index 00000000000..42c9c0553c9 --- /dev/null +++ b/package-kafka-serde-tools/BUILD.bazel @@ -0,0 +1,51 @@ +load("@rules_pkg//pkg:zip.bzl", "pkg_zip") +load("@rules_pkg//pkg:tar.bzl", "pkg_tar") +load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_filegroup", "pkg_files", "pkg_mkdirs", "strip_prefix") + +pkg_files( + name = "runtime_deps", + srcs = [ + "@maven//:org_rocksdb_rocksdbjni", + "@maven//:org_projectnessie_cel_cel_tools", + ], + prefix = "share/java/kafka-serde-tools" +) + +pkg_files( + name = "doc_files", + srcs = ["//:package_docs"], + prefix = "share/doc/kafka-serde-tools", + strip_prefix = strip_prefix.from_pkg(), +) + +pkg_filegroup( + name = "notices", + srcs = ["//:notices"], + prefix = "share/doc/kafka-serde-tools/notices", +) + +pkg_filegroup( + name = "licenses", + srcs = ["//:licenses"], + prefix = "share/doc/kafka-serde-tools/licenses", +) + +pkg_zip( + name = "package_zip", + srcs = [ + ":runtime_deps", + ":doc_files", + ":notices", + ":licenses", + ] +) + +pkg_tar( + name = "package_tar", + srcs = [ + ":runtime_deps", + ":doc_files", + ":notices", + ":licenses", + ] +) diff --git a/package-schema-registry/BUILD.bazel b/package-schema-registry/BUILD.bazel new file mode 100644 index 00000000000..8edf4d36d0b --- /dev/null +++ b/package-schema-registry/BUILD.bazel @@ -0,0 +1,47 @@ +#load("@rules_pkg//pkg:zip.bzl", "pkg_zip") +#load("@rules_pkg//pkg:tar.bzl", "pkg_tar") +#load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_filegroup", "pkg_files", "pkg_mkdirs", "strip_prefix") +##load("//:runtime.bzl", "assemble_package", "java_lib_runtime_deps") +# +#assemble_package( +# name = "schema-registry_package", +# deps_output_directory = "share/java/schema-registry", +# filesets_data = { +# "//:package_docs": "share/doc/schema-registry", +# "//:notices": "share/doc/schema-registry/notices", +# "//:licenses": "share/doc/schema-registry/licenses", +# "//bin:bin": "bin", +# "//:config": "etc/schema-registry", +# }, +# deps = [ +# "//client", +# "//core", +# "@maven//:io_confluent_logredactor", +# ], +#) +# +#assemble_package( +# name = "schema-registry_development", +# deps_output_directory = "schema_registry_development/share/java/schema-registry", +# deps = [ +# "//client", +# "//core", +# "@maven//:io_confluent_logredactor", +# ], +#) +# +#assemble_package( +# name = "schema-registry_standalone", +# deps_output_directory = "schema_registry_standalone/share/java/schema-registry", +# filesets_data = { +# "//:package_docs": "share/doc/schema-registry", +# "//:notices": "share/doc/schema-registry/notices", +# "//:licenses": "share/doc/schema-registry/licenses", +# "//:config": "etc/schema-registry", +# }, +# deps = [ +# "//client", +# "//core", +# "@maven//:io_confluent_logredactor", +# ], +#) diff --git a/protobuf-converter/BUILD.bazel b/protobuf-converter/BUILD.bazel new file mode 100644 index 00000000000..9ba364841a7 --- /dev/null +++ b/protobuf-converter/BUILD.bazel @@ -0,0 +1,63 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "protobuf-converter", + srcs = [ + "src/main/java/io/confluent/connect/protobuf/ProtobufConverter.java", + "src/main/java/io/confluent/connect/protobuf/ProtobufConverterConfig.java", + "src/main/java/io/confluent/connect/protobuf/ProtobufData.java", + "src/main/java/io/confluent/connect/protobuf/ProtobufDataConfig.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "//protobuf-provider", + "//protobuf-serializer", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "//protobuf-provider", + "//protobuf-serializer", + "//protobuf-types", + "//schema-converter", + "@maven//:com_google_api_grpc_proto_google_common_protos", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_google_protobuf_protobuf_java_util", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "protobuf-converter-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/connect/protobuf/ProtobufConverterTest.java", +# "src/test/java/io/confluent/connect/protobuf/ProtobufDataTest.java", +# ], + resources = glob(["src/test/resources/**/*"]), + tags = ["no-java-spotbugs"], + deps = [ + ":protobuf-converter", + "//avro-serializer", + "//client", + "//core", + "//protobuf-converter/src/test/proto:proto_java_library", + "//protobuf-provider", + "//protobuf-serializer", + "//protobuf-serializer:test-utils", + "//protobuf-serializer/src/test/proto:io_confluent_kafka_schemaregistry_rules_java_library", + "//schema-serializer", + "@maven//:com_google_api_grpc_proto_google_common_protos", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_google_protobuf_protobuf_java_util", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:com_squareup_wire_wire_schema_jvm", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_slf4j_slf4j_api", + ], +) diff --git a/protobuf-converter/src/test/proto/BUILD.bazel b/protobuf-converter/src/test/proto/BUILD.bazel new file mode 100644 index 00000000000..eddb0d58678 --- /dev/null +++ b/protobuf-converter/src/test/proto/BUILD.bazel @@ -0,0 +1,50 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@io_bazel_rules_go//go:def.bzl", "go_library") +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "proto_keyvalue", + srcs = [ + "key.proto", + "keyvalue.proto", + "keyvalueoptional.proto", + "keyvaluewrapper.proto", + "mapreferences.proto", + "recursivekeyvalue.proto", + ], + strip_import_prefix = "/protobuf-converter/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "@com_google_protobuf//:descriptor_proto", + "@com_google_protobuf//:wrappers_proto", + ], +) + +proto_library( + name = "proto_keyvalue2", + srcs = [ + "keyvalueproto2.proto", + "nestedfield.proto", + ], + strip_import_prefix = "/protobuf-converter/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "@com_google_protobuf//:descriptor_proto", + "@com_google_protobuf//:wrappers_proto", + ], +) + +java_proto_library( + name = "proto_java_proto", + deps = [ + ":proto_keyvalue", + ":proto_keyvalue2", + ], +) + +java_library( + name = "proto_java_library", + visibility = ["//:__subpackages__"], + exports = [":proto_java_proto"], +) diff --git a/protobuf-provider/BUILD.bazel b/protobuf-provider/BUILD.bazel new file mode 100644 index 00000000000..70d1eb3aec4 --- /dev/null +++ b/protobuf-provider/BUILD.bazel @@ -0,0 +1,77 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +load("@rules_jvm_external//:defs.bzl", "java_export") +load("//:variables.bzl", "SCHEMA_REGISTRY_VERSION") +# gazelle:java_module_granularity module + +java_export( + name = "protobuf-provider", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/MessageIndexes.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/ProtoFileElementDeserializer.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/ProtobufSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/ProtobufSchemaProvider.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/ProtobufSchemaUtils.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/Context.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/Difference.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/EnumSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/FieldSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/MessageSchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/OneOfDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/diff/SchemaDiff.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/dynamic/DynamicSchema.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/dynamic/EnumDefinition.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/dynamic/MessageDefinition.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/dynamic/ServiceDefinition.java", + ], + maven_coordinates = "io.confluent:kafka-protobuf-provider:" + SCHEMA_REGISTRY_VERSION, + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "//protobuf-types", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_wire_wire_schema_jvm", + ], + deps = [ + "//client", + "//protobuf-types", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_api_grpc_proto_google_common_protos", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_google_protobuf_protobuf_java_util", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:com_squareup_wire_wire_runtime_jvm", + "@maven//:com_squareup_wire_wire_schema_jvm", + "@maven//:org_apache_commons_commons_lang3", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_jetbrains_kotlin_kotlin_stdlib", + "@maven//:org_slf4j_slf4j_api", + ], +) + +java_test_suite( + name = "protobuf-provider-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/protobuf/ProtobufSchemaTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/protobuf/diff/ResourceLoader.java", +# "src/test/java/io/confluent/kafka/schemaregistry/protobuf/diff/SchemaDiffTest.java", +# ], + resources = glob(["src/test/resources/**/*"]), + tags = ["no-java-spotbugs"], + deps = [ + ":protobuf-provider", + "//client", + "//core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:com_squareup_wire_wire_schema_jvm", + "@maven//:junit_junit", + "@maven//:org_hamcrest_hamcrest_core", + ], +) diff --git a/protobuf-serde/BUILD.bazel b/protobuf-serde/BUILD.bazel new file mode 100644 index 00000000000..f06c94fea0c --- /dev/null +++ b/protobuf-serde/BUILD.bazel @@ -0,0 +1,32 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +# gazelle:java_module_granularity module + +java_library( + name = "protobuf-serde", + srcs = ["src/main/java/io/confluent/kafka/streams/serdes/protobuf/KafkaProtobufSerde.java"], + visibility = ["//:__subpackages__"], + deps = [ + "//protobuf-serializer", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_test_suite( + name = "protobuf-serde-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = ["src/test/java/io/confluent/kafka/streams/serde/protobuf/KafkaProtobufSerdeTest.java"], + deps = [ + ":protobuf-serde", + "//avro-serializer", + "//core", + "//protobuf-provider", + "//schema-serializer", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:junit_junit", + "@maven//:org_hamcrest_hamcrest_core", + ], + tags = ["no-java-spotbugs"], +) diff --git a/protobuf-serializer/BUILD.bazel b/protobuf-serializer/BUILD.bazel new file mode 100644 index 00000000000..b7d2f2e255f --- /dev/null +++ b/protobuf-serializer/BUILD.bazel @@ -0,0 +1,104 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_binary", "java_library", "java_test_suite") +load("@rules_jvm_external//:defs.bzl", "java_export") +load("//:variables.bzl", "SCHEMA_REGISTRY_VERSION") +# gazelle:java_module_granularity module + +java_export( + name = "protobuf-serializer", + srcs = [ + "src/main/java/io/confluent/kafka/formatter/protobuf/ProtobufMessageFormatter.java", + "src/main/java/io/confluent/kafka/formatter/protobuf/ProtobufMessageReader.java", + "src/main/java/io/confluent/kafka/schemaregistry/protobuf/utils/MavenConfigGenerator.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/AbstractKafkaProtobufDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/AbstractKafkaProtobufSerializer.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/KafkaProtobufDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/KafkaProtobufDeserializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/KafkaProtobufSerializer.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/KafkaProtobufSerializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/protobuf/ProtobufSchemaAndValue.java", + ], + maven_coordinates = "io.confluent:kafka-protobuf-serializer:" + SCHEMA_REGISTRY_VERSION, + visibility = ["//:__subpackages__"], + exports = [ + "//protobuf-provider", + "//schema-serializer", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "//client", + "//protobuf-provider", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_google_protobuf_protobuf_java_util", + "@maven//:com_squareup_wire_wire_schema_jvm", + "@maven//:org_apache_kafka_kafka_clients", + ], +) + +java_binary( + name = "MavenConfigGenerator", + main_class = "io.confluent.kafka.schemaregistry.protobuf.utils.MavenConfigGenerator", + visibility = ["//visibility:public"], + runtime_deps = [":protobuf-serializer"], +) + +java_library( + name = "test-utils", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/formatter/protobuf/KafkaProtobufFormatterTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/protobuf/rest/RestApiSerializerTest.java", +# "src/test/java/io/confluent/kafka/serializers/protobuf/KafkaProtobufSerializerTest.java", +# ], + visibility = ["//visibility:public"], + exports = ["//protobuf-serializer/src/test/proto:io_confluent_kafka_schemaregistry_rules_java_library"], + deps = [ + ":protobuf-serializer", + "//avro-serializer", + "//client", + "//core", + "//core:test-utils", + "//protobuf-provider", + "//protobuf-serializer/src/test/proto:io_confluent_kafka_schemaregistry_rules_java_library", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_api_grpc_proto_google_common_protos", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_kafka_clients", + ], + tags = ["no-java-spotbugs"], +) + +java_test_suite( + name = "protobuf-serializer-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/formatter/protobuf/KafkaProtobufFormatterTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/protobuf/rest/RestApiSerializerTest.java", +# "src/test/java/io/confluent/kafka/serializers/protobuf/KafkaProtobufSerializerTest.java", +# ], + deps = [ + ":protobuf-serializer", + ":test-utils", + "//avro-serializer", + "//client", + "//core", + "//core:test-utils", + "//protobuf-provider", + "//protobuf-serializer/src/test/proto:io_confluent_kafka_schemaregistry_rules_java_library", + "//protobuf-types", + "//schema-serializer", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_api_grpc_proto_google_common_protos", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:junit_junit", + "@maven//:org_apache_kafka_kafka_clients", + ], + tags = ["no-java-spotbugs"], +) diff --git a/protobuf-serializer/src/test/java/com/acme/glup/CommonProto.java b/protobuf-serializer/src/test/java/com/acme/glup/CommonProto.java deleted file mode 100644 index 71bee32a1cf..00000000000 --- a/protobuf-serializer/src/test/java/com/acme/glup/CommonProto.java +++ /dev/null @@ -1,1412 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: common_proto.proto - -package com.acme.glup; - -public final class CommonProto { - private CommonProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - /** - *
-   * Describes if an event or campaign is an appinstall or normal
-   * retargeting one
-   * 
- * - * Protobuf enum {@code Acme.Glup.MarketingObjectiveType} - */ - public enum MarketingObjectiveType - implements com.google.protobuf.ProtocolMessageEnum { - /** - * Sale = 0; - */ - Sale(0), - /** - * Install = 1; - */ - Install(1), - UNRECOGNIZED(-1), - ; - - /** - * Sale = 0; - */ - public static final int Sale_VALUE = 0; - /** - * Install = 1; - */ - public static final int Install_VALUE = 1; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static MarketingObjectiveType valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static MarketingObjectiveType forNumber(int value) { - switch (value) { - case 0: return Sale; - case 1: return Install; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - MarketingObjectiveType> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public MarketingObjectiveType findValueByNumber(int number) { - return MarketingObjectiveType.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.CommonProto.getDescriptor().getEnumTypes().get(0); - } - - private static final MarketingObjectiveType[] VALUES = values(); - - public static MarketingObjectiveType valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private MarketingObjectiveType(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.MarketingObjectiveType) - } - - /** - *
-   * Enumerate reasons of opt-out
-   * sorted by check order
-   * 
- * - * Protobuf enum {@code Acme.Glup.IdentificationForbiddenReason} - */ - public enum IdentificationForbiddenReason - implements com.google.protobuf.ProtocolMessageEnum { - /** - * NoReason = 0; - */ - NoReason(0), - /** - * ExplicitConsentRequired = 1; - */ - ExplicitConsentRequired(1), - /** - * OptoutCookie = 2; - */ - OptoutCookie(2), - /** - * CtoOptoutCookie = 3; - */ - CtoOptoutCookie(3), - /** - * LimitedAdTracking = 4; - */ - LimitedAdTracking(4), - /** - * HstsOptout = 5; - */ - HstsOptout(5), - /** - * DoNotTrackHeader = 6; - */ - DoNotTrackHeader(6), - /** - * OoOCookie = 7; - */ - OoOCookie(7), - /** - * PendingOptout = 8; - */ - PendingOptout(8), - UNRECOGNIZED(-1), - ; - - /** - * NoReason = 0; - */ - public static final int NoReason_VALUE = 0; - /** - * ExplicitConsentRequired = 1; - */ - public static final int ExplicitConsentRequired_VALUE = 1; - /** - * OptoutCookie = 2; - */ - public static final int OptoutCookie_VALUE = 2; - /** - * CtoOptoutCookie = 3; - */ - public static final int CtoOptoutCookie_VALUE = 3; - /** - * LimitedAdTracking = 4; - */ - public static final int LimitedAdTracking_VALUE = 4; - /** - * HstsOptout = 5; - */ - public static final int HstsOptout_VALUE = 5; - /** - * DoNotTrackHeader = 6; - */ - public static final int DoNotTrackHeader_VALUE = 6; - /** - * OoOCookie = 7; - */ - public static final int OoOCookie_VALUE = 7; - /** - * PendingOptout = 8; - */ - public static final int PendingOptout_VALUE = 8; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static IdentificationForbiddenReason valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static IdentificationForbiddenReason forNumber(int value) { - switch (value) { - case 0: return NoReason; - case 1: return ExplicitConsentRequired; - case 2: return OptoutCookie; - case 3: return CtoOptoutCookie; - case 4: return LimitedAdTracking; - case 5: return HstsOptout; - case 6: return DoNotTrackHeader; - case 7: return OoOCookie; - case 8: return PendingOptout; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - IdentificationForbiddenReason> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public IdentificationForbiddenReason findValueByNumber(int number) { - return IdentificationForbiddenReason.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.CommonProto.getDescriptor().getEnumTypes().get(1); - } - - private static final IdentificationForbiddenReason[] VALUES = values(); - - public static IdentificationForbiddenReason valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private IdentificationForbiddenReason(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.IdentificationForbiddenReason) - } - - public interface ConsentOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.Consent) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     *Value of IdentificationForbidden for user identity
-     * 
- * - * bool identification_forbidden = 1; - * @return The identificationForbidden. - */ - boolean getIdentificationForbidden(); - - /** - *
-     *Reason for identification forbidden, NoReason if identification not forbidden
-     * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return The enum numeric value on the wire for reason. - */ - int getReasonValue(); - /** - *
-     *Reason for identification forbidden, NoReason if identification not forbidden
-     * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return The reason. - */ - com.acme.glup.CommonProto.IdentificationForbiddenReason getReason(); - - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - int getSetFieldsCount(); - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - boolean containsSetFields( - int key); - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getSetFields(); - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - java.util.Map - getSetFieldsMap(); - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrDefault( - int key, - boolean defaultValue); - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrThrow( - int key); - } - /** - *
-   * Describes the consent status and the reasons
-   * of consent refusal
-   * 
- * - * Protobuf type {@code Acme.Glup.Consent} - */ - public static final class Consent extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.Consent) - ConsentOrBuilder { - private static final long serialVersionUID = 0L; - // Use Consent.newBuilder() to construct. - private Consent(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Consent() { - reason_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Consent(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Consent( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - identificationForbidden_ = input.readBool(); - break; - } - case 16: { - int rawValue = input.readEnum(); - - reason_ = rawValue; - break; - } - case 400082: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000001; - } - com.google.protobuf.MapEntry - setFields__ = input.readMessage( - SetFieldsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - setFields_.getMutableMap().put( - setFields__.getKey(), setFields__.getValue()); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.CommonProto.internal_static_Acme_Glup_Consent_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.CommonProto.internal_static_Acme_Glup_Consent_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.CommonProto.Consent.class, com.acme.glup.CommonProto.Consent.Builder.class); - } - - public static final int IDENTIFICATION_FORBIDDEN_FIELD_NUMBER = 1; - private boolean identificationForbidden_; - /** - *
-     *Value of IdentificationForbidden for user identity
-     * 
- * - * bool identification_forbidden = 1; - * @return The identificationForbidden. - */ - @java.lang.Override - public boolean getIdentificationForbidden() { - return identificationForbidden_; - } - - public static final int REASON_FIELD_NUMBER = 2; - private int reason_; - /** - *
-     *Reason for identification forbidden, NoReason if identification not forbidden
-     * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return The enum numeric value on the wire for reason. - */ - @java.lang.Override public int getReasonValue() { - return reason_; - } - /** - *
-     *Reason for identification forbidden, NoReason if identification not forbidden
-     * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return The reason. - */ - @java.lang.Override public com.acme.glup.CommonProto.IdentificationForbiddenReason getReason() { - @SuppressWarnings("deprecation") - com.acme.glup.CommonProto.IdentificationForbiddenReason result = com.acme.glup.CommonProto.IdentificationForbiddenReason.valueOf(reason_); - return result == null ? com.acme.glup.CommonProto.IdentificationForbiddenReason.UNRECOGNIZED : result; - } - - public static final int SET_FIELDS_FIELD_NUMBER = 50010; - private static final class SetFieldsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.Integer, java.lang.Boolean> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - com.acme.glup.CommonProto.internal_static_Acme_Glup_Consent_SetFieldsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.INT32, - 0, - com.google.protobuf.WireFormat.FieldType.BOOL, - false); - } - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-     * nullable tracking special field
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (identificationForbidden_ != false) { - output.writeBool(1, identificationForbidden_); - } - if (reason_ != com.acme.glup.CommonProto.IdentificationForbiddenReason.NoReason.getNumber()) { - output.writeEnum(2, reason_); - } - com.google.protobuf.GeneratedMessageV3 - .serializeIntegerMapTo( - output, - internalGetSetFields(), - SetFieldsDefaultEntryHolder.defaultEntry, - 50010); - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (identificationForbidden_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(1, identificationForbidden_); - } - if (reason_ != com.acme.glup.CommonProto.IdentificationForbiddenReason.NoReason.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, reason_); - } - for (java.util.Map.Entry entry - : internalGetSetFields().getMap().entrySet()) { - com.google.protobuf.MapEntry - setFields__ = SetFieldsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(50010, setFields__); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.CommonProto.Consent)) { - return super.equals(obj); - } - com.acme.glup.CommonProto.Consent other = (com.acme.glup.CommonProto.Consent) obj; - - if (getIdentificationForbidden() - != other.getIdentificationForbidden()) return false; - if (reason_ != other.reason_) return false; - if (!internalGetSetFields().equals( - other.internalGetSetFields())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + IDENTIFICATION_FORBIDDEN_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIdentificationForbidden()); - hash = (37 * hash) + REASON_FIELD_NUMBER; - hash = (53 * hash) + reason_; - if (!internalGetSetFields().getMap().isEmpty()) { - hash = (37 * hash) + SET_FIELDS_FIELD_NUMBER; - hash = (53 * hash) + internalGetSetFields().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.CommonProto.Consent parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.CommonProto.Consent parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.CommonProto.Consent parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.CommonProto.Consent parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.CommonProto.Consent parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.CommonProto.Consent parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.CommonProto.Consent prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Describes the consent status and the reasons
-     * of consent refusal
-     * 
- * - * Protobuf type {@code Acme.Glup.Consent} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.Consent) - com.acme.glup.CommonProto.ConsentOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.CommonProto.internal_static_Acme_Glup_Consent_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 50010: - return internalGetMutableSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.CommonProto.internal_static_Acme_Glup_Consent_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.CommonProto.Consent.class, com.acme.glup.CommonProto.Consent.Builder.class); - } - - // Construct using com.acme.glup.CommonProto.Consent.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - identificationForbidden_ = false; - - reason_ = 0; - - internalGetMutableSetFields().clear(); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.CommonProto.internal_static_Acme_Glup_Consent_descriptor; - } - - @java.lang.Override - public com.acme.glup.CommonProto.Consent getDefaultInstanceForType() { - return com.acme.glup.CommonProto.Consent.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.CommonProto.Consent build() { - com.acme.glup.CommonProto.Consent result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.CommonProto.Consent buildPartial() { - com.acme.glup.CommonProto.Consent result = new com.acme.glup.CommonProto.Consent(this); - int from_bitField0_ = bitField0_; - result.identificationForbidden_ = identificationForbidden_; - result.reason_ = reason_; - result.setFields_ = internalGetSetFields(); - result.setFields_.makeImmutable(); - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.CommonProto.Consent) { - return mergeFrom((com.acme.glup.CommonProto.Consent)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.CommonProto.Consent other) { - if (other == com.acme.glup.CommonProto.Consent.getDefaultInstance()) return this; - if (other.getIdentificationForbidden() != false) { - setIdentificationForbidden(other.getIdentificationForbidden()); - } - if (other.reason_ != 0) { - setReasonValue(other.getReasonValue()); - } - internalGetMutableSetFields().mergeFrom( - other.internalGetSetFields()); - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.CommonProto.Consent parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.CommonProto.Consent) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private boolean identificationForbidden_ ; - /** - *
-       *Value of IdentificationForbidden for user identity
-       * 
- * - * bool identification_forbidden = 1; - * @return The identificationForbidden. - */ - @java.lang.Override - public boolean getIdentificationForbidden() { - return identificationForbidden_; - } - /** - *
-       *Value of IdentificationForbidden for user identity
-       * 
- * - * bool identification_forbidden = 1; - * @param value The identificationForbidden to set. - * @return This builder for chaining. - */ - public Builder setIdentificationForbidden(boolean value) { - - identificationForbidden_ = value; - onChanged(); - return this; - } - /** - *
-       *Value of IdentificationForbidden for user identity
-       * 
- * - * bool identification_forbidden = 1; - * @return This builder for chaining. - */ - public Builder clearIdentificationForbidden() { - - identificationForbidden_ = false; - onChanged(); - return this; - } - - private int reason_ = 0; - /** - *
-       *Reason for identification forbidden, NoReason if identification not forbidden
-       * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return The enum numeric value on the wire for reason. - */ - @java.lang.Override public int getReasonValue() { - return reason_; - } - /** - *
-       *Reason for identification forbidden, NoReason if identification not forbidden
-       * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @param value The enum numeric value on the wire for reason to set. - * @return This builder for chaining. - */ - public Builder setReasonValue(int value) { - - reason_ = value; - onChanged(); - return this; - } - /** - *
-       *Reason for identification forbidden, NoReason if identification not forbidden
-       * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return The reason. - */ - @java.lang.Override - public com.acme.glup.CommonProto.IdentificationForbiddenReason getReason() { - @SuppressWarnings("deprecation") - com.acme.glup.CommonProto.IdentificationForbiddenReason result = com.acme.glup.CommonProto.IdentificationForbiddenReason.valueOf(reason_); - return result == null ? com.acme.glup.CommonProto.IdentificationForbiddenReason.UNRECOGNIZED : result; - } - /** - *
-       *Reason for identification forbidden, NoReason if identification not forbidden
-       * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @param value The reason to set. - * @return This builder for chaining. - */ - public Builder setReason(com.acme.glup.CommonProto.IdentificationForbiddenReason value) { - if (value == null) { - throw new NullPointerException(); - } - - reason_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       *Reason for identification forbidden, NoReason if identification not forbidden
-       * 
- * - * .Acme.Glup.IdentificationForbiddenReason reason = 2; - * @return This builder for chaining. - */ - public Builder clearReason() { - - reason_ = 0; - onChanged(); - return this; - } - - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - private com.google.protobuf.MapField - internalGetMutableSetFields() { - onChanged();; - if (setFields_ == null) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - if (!setFields_.isMutable()) { - setFields_ = setFields_.copy(); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearSetFields() { - internalGetMutableSetFields().getMutableMap() - .clear(); - return this; - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder removeSetFields( - int key) { - - internalGetMutableSetFields().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableSetFields() { - return internalGetMutableSetFields().getMutableMap(); - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - public Builder putSetFields( - int key, - boolean value) { - - - internalGetMutableSetFields().getMutableMap() - .put(key, value); - return this; - } - /** - *
-       * nullable tracking special field
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder putAllSetFields( - java.util.Map values) { - internalGetMutableSetFields().getMutableMap() - .putAll(values); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.Consent) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.Consent) - private static final com.acme.glup.CommonProto.Consent DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.CommonProto.Consent(); - } - - public static com.acme.glup.CommonProto.Consent getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Consent parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Consent(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.CommonProto.Consent getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Consent_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Consent_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Consent_SetFieldsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Consent_SetFieldsEntry_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\022common_proto.proto\022\tAcme.Glup\032\024metadat" + - "a_proto.proto\"\326\001\n\007Consent\022 \n\030identificat" + - "ion_forbidden\030\001 \001(\010\0228\n\006reason\030\002 \001(\0162(.Ac" + - "me.Glup.IdentificationForbiddenReason\0227\n" + - "\nset_fields\030\332\206\003 \003(\0132!.Acme.Glup.Consent." + - "SetFieldsEntry\0320\n\016SetFieldsEntry\022\013\n\003key\030" + - "\001 \001(\005\022\r\n\005value\030\002 \001(\010:\0028\001:\004\210\265\030\001*/\n\026Market" + - "ingObjectiveType\022\010\n\004Sale\020\000\022\013\n\007Install\020\001*" + - "\320\001\n\035IdentificationForbiddenReason\022\014\n\010NoR" + - "eason\020\000\022\033\n\027ExplicitConsentRequired\020\001\022\020\n\014" + - "OptoutCookie\020\002\022\023\n\017CtoOptoutCookie\020\003\022\025\n\021L" + - "imitedAdTracking\020\004\022\016\n\nHstsOptout\020\005\022\024\n\020Do" + - "NotTrackHeader\020\006\022\r\n\tOoOCookie\020\007\022\021\n\rPendi" + - "ngOptout\020\010B\017\n\rcom.acme.glupb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.acme.glup.MetadataProto.getDescriptor(), - }); - internal_static_Acme_Glup_Consent_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_Acme_Glup_Consent_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Consent_descriptor, - new java.lang.String[] { "IdentificationForbidden", "Reason", "SetFields", }); - internal_static_Acme_Glup_Consent_SetFieldsEntry_descriptor = - internal_static_Acme_Glup_Consent_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_Consent_SetFieldsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Consent_SetFieldsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(com.acme.glup.MetadataProto.containsNullableFields); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - com.acme.glup.MetadataProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/com/acme/glup/ExampleProtoAcme.java b/protobuf-serializer/src/test/java/com/acme/glup/ExampleProtoAcme.java deleted file mode 100644 index f651800cde3..00000000000 --- a/protobuf-serializer/src/test/java/com/acme/glup/ExampleProtoAcme.java +++ /dev/null @@ -1,1937 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: exampleProtoAcme.proto - -package com.acme.glup; - -public final class ExampleProtoAcme { - private ExampleProtoAcme() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface ClickCasOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.ClickCas) - com.google.protobuf.MessageOrBuilder { - - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return Whether the glupOrigin field is set. - */ - boolean hasGlupOrigin(); - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return The glupOrigin. - */ - com.acme.glup.MetadataProto.Origin getGlupOrigin(); - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - com.acme.glup.MetadataProto.OriginOrBuilder getGlupOriginOrBuilder(); - - /** - * .Acme.Glup.Partition partition = 2; - * @return Whether the partition field is set. - */ - boolean hasPartition(); - /** - * .Acme.Glup.Partition partition = 2; - * @return The partition. - */ - com.acme.glup.MetadataProto.Partition getPartition(); - /** - * .Acme.Glup.Partition partition = 2; - */ - com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder(); - - /** - * string uid = 5; - * @return The uid. - */ - java.lang.String getUid(); - /** - * string uid = 5; - * @return The bytes for uid. - */ - com.google.protobuf.ByteString - getUidBytes(); - - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - int getSetFieldsCount(); - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - boolean containsSetFields( - int key); - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getSetFields(); - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - java.util.Map - getSetFieldsMap(); - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrDefault( - int key, - boolean defaultValue); - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrThrow( - int key); - - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - java.util.List - getControlMessageList(); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - int getControlMessageCount(); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - java.util.List - getControlMessageOrBuilderList(); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index); - } - /** - * Protobuf type {@code Acme.Glup.ClickCas} - */ - public static final class ClickCas extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.ClickCas) - ClickCasOrBuilder { - private static final long serialVersionUID = 0L; - // Use ClickCas.newBuilder() to construct. - private ClickCas(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ClickCas() { - uid_ = ""; - controlMessage_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ClickCas(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ClickCas( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.Origin.Builder subBuilder = null; - if (glupOrigin_ != null) { - subBuilder = glupOrigin_.toBuilder(); - } - glupOrigin_ = input.readMessage(com.acme.glup.MetadataProto.Origin.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(glupOrigin_); - glupOrigin_ = subBuilder.buildPartial(); - } - - break; - } - case 18: { - com.acme.glup.MetadataProto.Partition.Builder subBuilder = null; - if (partition_ != null) { - subBuilder = partition_.toBuilder(); - } - partition_ = input.readMessage(com.acme.glup.MetadataProto.Partition.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(partition_); - partition_ = subBuilder.buildPartial(); - } - - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); - - uid_ = s; - break; - } - case 400082: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000001; - } - com.google.protobuf.MapEntry - setFields__ = input.readMessage( - SetFieldsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - setFields_.getMutableMap().put( - setFields__.getKey(), setFields__.getValue()); - break; - } - case 16777210: { - if (!((mutable_bitField0_ & 0x00000002) != 0)) { - controlMessage_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000002; - } - controlMessage_.add( - input.readMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark.parser(), extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000002) != 0)) { - controlMessage_ = java.util.Collections.unmodifiableList(controlMessage_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.ExampleProtoAcme.internal_static_Acme_Glup_ClickCas_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.ExampleProtoAcme.internal_static_Acme_Glup_ClickCas_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.ExampleProtoAcme.ClickCas.class, com.acme.glup.ExampleProtoAcme.ClickCas.Builder.class); - } - - public static final int GLUP_ORIGIN_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.Origin glupOrigin_; - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return Whether the glupOrigin field is set. - */ - @java.lang.Override - public boolean hasGlupOrigin() { - return glupOrigin_ != null; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return The glupOrigin. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Origin getGlupOrigin() { - return glupOrigin_ == null ? com.acme.glup.MetadataProto.Origin.getDefaultInstance() : glupOrigin_; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.OriginOrBuilder getGlupOriginOrBuilder() { - return getGlupOrigin(); - } - - public static final int PARTITION_FIELD_NUMBER = 2; - private com.acme.glup.MetadataProto.Partition partition_; - /** - * .Acme.Glup.Partition partition = 2; - * @return Whether the partition field is set. - */ - @java.lang.Override - public boolean hasPartition() { - return partition_ != null; - } - /** - * .Acme.Glup.Partition partition = 2; - * @return The partition. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Partition getPartition() { - return partition_ == null ? com.acme.glup.MetadataProto.Partition.getDefaultInstance() : partition_; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder() { - return getPartition(); - } - - public static final int UID_FIELD_NUMBER = 5; - private volatile java.lang.Object uid_; - /** - * string uid = 5; - * @return The uid. - */ - @java.lang.Override - public java.lang.String getUid() { - java.lang.Object ref = uid_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - uid_ = s; - return s; - } - } - /** - * string uid = 5; - * @return The bytes for uid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUidBytes() { - java.lang.Object ref = uid_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - uid_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SET_FIELDS_FIELD_NUMBER = 50010; - private static final class SetFieldsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.Integer, java.lang.Boolean> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - com.acme.glup.ExampleProtoAcme.internal_static_Acme_Glup_ClickCas_SetFieldsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.INT32, - 0, - com.google.protobuf.WireFormat.FieldType.BOOL, - false); - } - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-     * Schema field
-     * (...)
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int CONTROL_MESSAGE_FIELD_NUMBER = 2097151; - private java.util.List controlMessage_; - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public java.util.List getControlMessageList() { - return controlMessage_; - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public java.util.List - getControlMessageOrBuilderList() { - return controlMessage_; - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public int getControlMessageCount() { - return controlMessage_.size(); - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index) { - return controlMessage_.get(index); - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index) { - return controlMessage_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (glupOrigin_ != null) { - output.writeMessage(1, getGlupOrigin()); - } - if (partition_ != null) { - output.writeMessage(2, getPartition()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(uid_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, uid_); - } - com.google.protobuf.GeneratedMessageV3 - .serializeIntegerMapTo( - output, - internalGetSetFields(), - SetFieldsDefaultEntryHolder.defaultEntry, - 50010); - for (int i = 0; i < controlMessage_.size(); i++) { - output.writeMessage(2097151, controlMessage_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (glupOrigin_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getGlupOrigin()); - } - if (partition_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getPartition()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(uid_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, uid_); - } - for (java.util.Map.Entry entry - : internalGetSetFields().getMap().entrySet()) { - com.google.protobuf.MapEntry - setFields__ = SetFieldsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(50010, setFields__); - } - for (int i = 0; i < controlMessage_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2097151, controlMessage_.get(i)); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.ExampleProtoAcme.ClickCas)) { - return super.equals(obj); - } - com.acme.glup.ExampleProtoAcme.ClickCas other = (com.acme.glup.ExampleProtoAcme.ClickCas) obj; - - if (hasGlupOrigin() != other.hasGlupOrigin()) return false; - if (hasGlupOrigin()) { - if (!getGlupOrigin() - .equals(other.getGlupOrigin())) return false; - } - if (hasPartition() != other.hasPartition()) return false; - if (hasPartition()) { - if (!getPartition() - .equals(other.getPartition())) return false; - } - if (!getUid() - .equals(other.getUid())) return false; - if (!internalGetSetFields().equals( - other.internalGetSetFields())) return false; - if (!getControlMessageList() - .equals(other.getControlMessageList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasGlupOrigin()) { - hash = (37 * hash) + GLUP_ORIGIN_FIELD_NUMBER; - hash = (53 * hash) + getGlupOrigin().hashCode(); - } - if (hasPartition()) { - hash = (37 * hash) + PARTITION_FIELD_NUMBER; - hash = (53 * hash) + getPartition().hashCode(); - } - hash = (37 * hash) + UID_FIELD_NUMBER; - hash = (53 * hash) + getUid().hashCode(); - if (!internalGetSetFields().getMap().isEmpty()) { - hash = (37 * hash) + SET_FIELDS_FIELD_NUMBER; - hash = (53 * hash) + internalGetSetFields().hashCode(); - } - if (getControlMessageCount() > 0) { - hash = (37 * hash) + CONTROL_MESSAGE_FIELD_NUMBER; - hash = (53 * hash) + getControlMessageList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.ExampleProtoAcme.ClickCas parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.ExampleProtoAcme.ClickCas prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.ClickCas} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.ClickCas) - com.acme.glup.ExampleProtoAcme.ClickCasOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.ExampleProtoAcme.internal_static_Acme_Glup_ClickCas_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 50010: - return internalGetMutableSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.ExampleProtoAcme.internal_static_Acme_Glup_ClickCas_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.ExampleProtoAcme.ClickCas.class, com.acme.glup.ExampleProtoAcme.ClickCas.Builder.class); - } - - // Construct using com.acme.glup.ExampleProtoAcme.ClickCas.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getControlMessageFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (glupOriginBuilder_ == null) { - glupOrigin_ = null; - } else { - glupOrigin_ = null; - glupOriginBuilder_ = null; - } - if (partitionBuilder_ == null) { - partition_ = null; - } else { - partition_ = null; - partitionBuilder_ = null; - } - uid_ = ""; - - internalGetMutableSetFields().clear(); - if (controlMessageBuilder_ == null) { - controlMessage_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - } else { - controlMessageBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.ExampleProtoAcme.internal_static_Acme_Glup_ClickCas_descriptor; - } - - @java.lang.Override - public com.acme.glup.ExampleProtoAcme.ClickCas getDefaultInstanceForType() { - return com.acme.glup.ExampleProtoAcme.ClickCas.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.ExampleProtoAcme.ClickCas build() { - com.acme.glup.ExampleProtoAcme.ClickCas result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.ExampleProtoAcme.ClickCas buildPartial() { - com.acme.glup.ExampleProtoAcme.ClickCas result = new com.acme.glup.ExampleProtoAcme.ClickCas(this); - int from_bitField0_ = bitField0_; - if (glupOriginBuilder_ == null) { - result.glupOrigin_ = glupOrigin_; - } else { - result.glupOrigin_ = glupOriginBuilder_.build(); - } - if (partitionBuilder_ == null) { - result.partition_ = partition_; - } else { - result.partition_ = partitionBuilder_.build(); - } - result.uid_ = uid_; - result.setFields_ = internalGetSetFields(); - result.setFields_.makeImmutable(); - if (controlMessageBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0)) { - controlMessage_ = java.util.Collections.unmodifiableList(controlMessage_); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.controlMessage_ = controlMessage_; - } else { - result.controlMessage_ = controlMessageBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.ExampleProtoAcme.ClickCas) { - return mergeFrom((com.acme.glup.ExampleProtoAcme.ClickCas)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.ExampleProtoAcme.ClickCas other) { - if (other == com.acme.glup.ExampleProtoAcme.ClickCas.getDefaultInstance()) return this; - if (other.hasGlupOrigin()) { - mergeGlupOrigin(other.getGlupOrigin()); - } - if (other.hasPartition()) { - mergePartition(other.getPartition()); - } - if (!other.getUid().isEmpty()) { - uid_ = other.uid_; - onChanged(); - } - internalGetMutableSetFields().mergeFrom( - other.internalGetSetFields()); - if (controlMessageBuilder_ == null) { - if (!other.controlMessage_.isEmpty()) { - if (controlMessage_.isEmpty()) { - controlMessage_ = other.controlMessage_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensureControlMessageIsMutable(); - controlMessage_.addAll(other.controlMessage_); - } - onChanged(); - } - } else { - if (!other.controlMessage_.isEmpty()) { - if (controlMessageBuilder_.isEmpty()) { - controlMessageBuilder_.dispose(); - controlMessageBuilder_ = null; - controlMessage_ = other.controlMessage_; - bitField0_ = (bitField0_ & ~0x00000002); - controlMessageBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getControlMessageFieldBuilder() : null; - } else { - controlMessageBuilder_.addAllMessages(other.controlMessage_); - } - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.ExampleProtoAcme.ClickCas parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.ExampleProtoAcme.ClickCas) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.acme.glup.MetadataProto.Origin glupOrigin_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Origin, com.acme.glup.MetadataProto.Origin.Builder, com.acme.glup.MetadataProto.OriginOrBuilder> glupOriginBuilder_; - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return Whether the glupOrigin field is set. - */ - public boolean hasGlupOrigin() { - return glupOriginBuilder_ != null || glupOrigin_ != null; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return The glupOrigin. - */ - public com.acme.glup.MetadataProto.Origin getGlupOrigin() { - if (glupOriginBuilder_ == null) { - return glupOrigin_ == null ? com.acme.glup.MetadataProto.Origin.getDefaultInstance() : glupOrigin_; - } else { - return glupOriginBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder setGlupOrigin(com.acme.glup.MetadataProto.Origin value) { - if (glupOriginBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - glupOrigin_ = value; - onChanged(); - } else { - glupOriginBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder setGlupOrigin( - com.acme.glup.MetadataProto.Origin.Builder builderForValue) { - if (glupOriginBuilder_ == null) { - glupOrigin_ = builderForValue.build(); - onChanged(); - } else { - glupOriginBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder mergeGlupOrigin(com.acme.glup.MetadataProto.Origin value) { - if (glupOriginBuilder_ == null) { - if (glupOrigin_ != null) { - glupOrigin_ = - com.acme.glup.MetadataProto.Origin.newBuilder(glupOrigin_).mergeFrom(value).buildPartial(); - } else { - glupOrigin_ = value; - } - onChanged(); - } else { - glupOriginBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder clearGlupOrigin() { - if (glupOriginBuilder_ == null) { - glupOrigin_ = null; - onChanged(); - } else { - glupOrigin_ = null; - glupOriginBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public com.acme.glup.MetadataProto.Origin.Builder getGlupOriginBuilder() { - - onChanged(); - return getGlupOriginFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public com.acme.glup.MetadataProto.OriginOrBuilder getGlupOriginOrBuilder() { - if (glupOriginBuilder_ != null) { - return glupOriginBuilder_.getMessageOrBuilder(); - } else { - return glupOrigin_ == null ? - com.acme.glup.MetadataProto.Origin.getDefaultInstance() : glupOrigin_; - } - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Origin, com.acme.glup.MetadataProto.Origin.Builder, com.acme.glup.MetadataProto.OriginOrBuilder> - getGlupOriginFieldBuilder() { - if (glupOriginBuilder_ == null) { - glupOriginBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Origin, com.acme.glup.MetadataProto.Origin.Builder, com.acme.glup.MetadataProto.OriginOrBuilder>( - getGlupOrigin(), - getParentForChildren(), - isClean()); - glupOrigin_ = null; - } - return glupOriginBuilder_; - } - - private com.acme.glup.MetadataProto.Partition partition_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder> partitionBuilder_; - /** - * .Acme.Glup.Partition partition = 2; - * @return Whether the partition field is set. - */ - public boolean hasPartition() { - return partitionBuilder_ != null || partition_ != null; - } - /** - * .Acme.Glup.Partition partition = 2; - * @return The partition. - */ - public com.acme.glup.MetadataProto.Partition getPartition() { - if (partitionBuilder_ == null) { - return partition_ == null ? com.acme.glup.MetadataProto.Partition.getDefaultInstance() : partition_; - } else { - return partitionBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder setPartition(com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - partition_ = value; - onChanged(); - } else { - partitionBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder setPartition( - com.acme.glup.MetadataProto.Partition.Builder builderForValue) { - if (partitionBuilder_ == null) { - partition_ = builderForValue.build(); - onChanged(); - } else { - partitionBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder mergePartition(com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (partition_ != null) { - partition_ = - com.acme.glup.MetadataProto.Partition.newBuilder(partition_).mergeFrom(value).buildPartial(); - } else { - partition_ = value; - } - onChanged(); - } else { - partitionBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder clearPartition() { - if (partitionBuilder_ == null) { - partition_ = null; - onChanged(); - } else { - partition_ = null; - partitionBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public com.acme.glup.MetadataProto.Partition.Builder getPartitionBuilder() { - - onChanged(); - return getPartitionFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder() { - if (partitionBuilder_ != null) { - return partitionBuilder_.getMessageOrBuilder(); - } else { - return partition_ == null ? - com.acme.glup.MetadataProto.Partition.getDefaultInstance() : partition_; - } - } - /** - * .Acme.Glup.Partition partition = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder> - getPartitionFieldBuilder() { - if (partitionBuilder_ == null) { - partitionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder>( - getPartition(), - getParentForChildren(), - isClean()); - partition_ = null; - } - return partitionBuilder_; - } - - private java.lang.Object uid_ = ""; - /** - * string uid = 5; - * @return The uid. - */ - public java.lang.String getUid() { - java.lang.Object ref = uid_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - uid_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string uid = 5; - * @return The bytes for uid. - */ - public com.google.protobuf.ByteString - getUidBytes() { - java.lang.Object ref = uid_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - uid_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string uid = 5; - * @param value The uid to set. - * @return This builder for chaining. - */ - public Builder setUid( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - uid_ = value; - onChanged(); - return this; - } - /** - * string uid = 5; - * @return This builder for chaining. - */ - public Builder clearUid() { - - uid_ = getDefaultInstance().getUid(); - onChanged(); - return this; - } - /** - * string uid = 5; - * @param value The bytes for uid to set. - * @return This builder for chaining. - */ - public Builder setUidBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - uid_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - private com.google.protobuf.MapField - internalGetMutableSetFields() { - onChanged();; - if (setFields_ == null) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - if (!setFields_.isMutable()) { - setFields_ = setFields_.copy(); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearSetFields() { - internalGetMutableSetFields().getMutableMap() - .clear(); - return this; - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder removeSetFields( - int key) { - - internalGetMutableSetFields().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableSetFields() { - return internalGetMutableSetFields().getMutableMap(); - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - public Builder putSetFields( - int key, - boolean value) { - - - internalGetMutableSetFields().getMutableMap() - .put(key, value); - return this; - } - /** - *
-       * Schema field
-       * (...)
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder putAllSetFields( - java.util.Map values) { - internalGetMutableSetFields().getMutableMap() - .putAll(values); - return this; - } - - private java.util.List controlMessage_ = - java.util.Collections.emptyList(); - private void ensureControlMessageIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - controlMessage_ = new java.util.ArrayList(controlMessage_); - bitField0_ |= 0x00000002; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> controlMessageBuilder_; - - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List getControlMessageList() { - if (controlMessageBuilder_ == null) { - return java.util.Collections.unmodifiableList(controlMessage_); - } else { - return controlMessageBuilder_.getMessageList(); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public int getControlMessageCount() { - if (controlMessageBuilder_ == null) { - return controlMessage_.size(); - } else { - return controlMessageBuilder_.getCount(); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index) { - if (controlMessageBuilder_ == null) { - return controlMessage_.get(index); - } else { - return controlMessageBuilder_.getMessage(index); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder setControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.set(index, value); - onChanged(); - } else { - controlMessageBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder setControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.set(index, builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.add(value); - onChanged(); - } else { - controlMessageBuilder_.addMessage(value); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.add(index, value); - onChanged(); - } else { - controlMessageBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.add(builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.add(index, builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addAllControlMessage( - java.lang.Iterable values) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, controlMessage_); - onChanged(); - } else { - controlMessageBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder clearControlMessage() { - if (controlMessageBuilder_ == null) { - controlMessage_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - } else { - controlMessageBuilder_.clear(); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder removeControlMessage(int index) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.remove(index); - onChanged(); - } else { - controlMessageBuilder_.remove(index); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder getControlMessageBuilder( - int index) { - return getControlMessageFieldBuilder().getBuilder(index); - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index) { - if (controlMessageBuilder_ == null) { - return controlMessage_.get(index); } else { - return controlMessageBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List - getControlMessageOrBuilderList() { - if (controlMessageBuilder_ != null) { - return controlMessageBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(controlMessage_); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder addControlMessageBuilder() { - return getControlMessageFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()); - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder addControlMessageBuilder( - int index) { - return getControlMessageFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()); - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List - getControlMessageBuilderList() { - return getControlMessageFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> - getControlMessageFieldBuilder() { - if (controlMessageBuilder_ == null) { - controlMessageBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder>( - controlMessage_, - ((bitField0_ & 0x00000002) != 0), - getParentForChildren(), - isClean()); - controlMessage_ = null; - } - return controlMessageBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.ClickCas) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.ClickCas) - private static final com.acme.glup.ExampleProtoAcme.ClickCas DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.ExampleProtoAcme.ClickCas(); - } - - public static com.acme.glup.ExampleProtoAcme.ClickCas getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ClickCas parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ClickCas(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.ExampleProtoAcme.ClickCas getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ClickCas_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ClickCas_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ClickCas_SetFieldsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ClickCas_SetFieldsEntry_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\026exampleProtoAcme.proto\022\tAcme.Glup\032\024met" + - "adata_proto.proto\032\022common_proto.proto\"\353\002" + - "\n\010ClickCas\022&\n\013glup_origin\030\001 \001(\0132\021.Acme.G" + - "lup.Origin\022\'\n\tpartition\030\002 \001(\0132\024.Acme.Glu" + - "p.Partition\022\013\n\003uid\030\005 \001(\t\0228\n\nset_fields\030\332" + - "\206\003 \003(\0132\".Acme.Glup.ClickCas.SetFieldsEnt" + - "ry\022P\n\017control_message\030\377\377\177 \003(\0132#.Acme.Glu" + - "p.ControlMessage.WatermarkB\020\222\265\030\014\n\n__meta" + - "data\0320\n\016SetFieldsEntry\022\013\n\003key\030\001 \001(\005\022\r\n\005v" + - "alue\030\002 \001(\010:\0028\001:\"\210\265\030\001\202\265\030\004:\002\020\001\202\265\030\022\n\020\n\016glup" + - "_click_casJ\004\010F\020JJ\004\010K\020LR\010obsoleteR\tobsole" + - "te2B\017\n\rcom.acme.glupb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.acme.glup.MetadataProto.getDescriptor(), - com.acme.glup.CommonProto.getDescriptor(), - }); - internal_static_Acme_Glup_ClickCas_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_Acme_Glup_ClickCas_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ClickCas_descriptor, - new java.lang.String[] { "GlupOrigin", "Partition", "Uid", "SetFields", "ControlMessage", }); - internal_static_Acme_Glup_ClickCas_SetFieldsEntry_descriptor = - internal_static_Acme_Glup_ClickCas_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_ClickCas_SetFieldsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ClickCas_SetFieldsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(com.acme.glup.MetadataProto.containsNullableFields); - registry.add(com.acme.glup.MetadataProto.glup); - registry.add(com.acme.glup.MetadataProto.json); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - com.acme.glup.MetadataProto.getDescriptor(); - com.acme.glup.CommonProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/com/acme/glup/MetadataProto.java b/protobuf-serializer/src/test/java/com/acme/glup/MetadataProto.java deleted file mode 100644 index 1ebe41d52c8..00000000000 --- a/protobuf-serializer/src/test/java/com/acme/glup/MetadataProto.java +++ /dev/null @@ -1,47798 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: metadata_proto.proto - -package com.acme.glup; - -public final class MetadataProto { - private MetadataProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - registry.add(com.acme.glup.MetadataProto.glup); - registry.add(com.acme.glup.MetadataProto.containsNullableFields); - registry.add(com.acme.glup.MetadataProto.glupfield); - registry.add(com.acme.glup.MetadataProto.jsonMapping); - registry.add(com.acme.glup.MetadataProto.json); - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - /** - *
-   * It describes the currently supported partitioning scheme
-   * 
- * - * Protobuf enum {@code Acme.Glup.PartitionScheme} - */ - public enum PartitionScheme - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_PARTITION_SCHEME = 0; - */ - UNSUPPORTED_PARTITION_SCHEME(0), - /** - *
-     * Deprecated, use PLATFORM_HOURLY instead 
-     * 
- * - * DAILY = 2; - */ - DAILY(2), - /** - * HOURLY = 3; - */ - HOURLY(3), - /** - * PLATFORM_HOURLY = 4; - */ - PLATFORM_HOURLY(4), - /** - * EVENTTYPE_PLATFORM_HOURLY = 5; - */ - EVENTTYPE_PLATFORM_HOURLY(5), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_PARTITION_SCHEME = 0; - */ - public static final int UNSUPPORTED_PARTITION_SCHEME_VALUE = 0; - /** - *
-     * Deprecated, use PLATFORM_HOURLY instead 
-     * 
- * - * DAILY = 2; - */ - public static final int DAILY_VALUE = 2; - /** - * HOURLY = 3; - */ - public static final int HOURLY_VALUE = 3; - /** - * PLATFORM_HOURLY = 4; - */ - public static final int PLATFORM_HOURLY_VALUE = 4; - /** - * EVENTTYPE_PLATFORM_HOURLY = 5; - */ - public static final int EVENTTYPE_PLATFORM_HOURLY_VALUE = 5; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static PartitionScheme valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static PartitionScheme forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_PARTITION_SCHEME; - case 2: return DAILY; - case 3: return HOURLY; - case 4: return PLATFORM_HOURLY; - case 5: return EVENTTYPE_PLATFORM_HOURLY; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - PartitionScheme> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public PartitionScheme findValueByNumber(int number) { - return PartitionScheme.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(0); - } - - private static final PartitionScheme[] VALUES = values(); - - public static PartitionScheme valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private PartitionScheme(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.PartitionScheme) - } - - /** - * Protobuf enum {@code Acme.Glup.MessageFormat} - */ - public enum MessageFormat - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_FORMAT = 0; - */ - UNSUPPORTED_FORMAT(0), - /** - * JSON = 1; - */ - JSON(1), - /** - * PROTOBUF = 2; - */ - PROTOBUF(2), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_FORMAT = 0; - */ - public static final int UNSUPPORTED_FORMAT_VALUE = 0; - /** - * JSON = 1; - */ - public static final int JSON_VALUE = 1; - /** - * PROTOBUF = 2; - */ - public static final int PROTOBUF_VALUE = 2; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static MessageFormat valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static MessageFormat forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_FORMAT; - case 1: return JSON; - case 2: return PROTOBUF; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - MessageFormat> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public MessageFormat findValueByNumber(int number) { - return MessageFormat.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(1); - } - - private static final MessageFormat[] VALUES = values(); - - public static MessageFormat valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private MessageFormat(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.MessageFormat) - } - - /** - *
-   * It describes the currently supported data on HDFS, usually partitioned in PAIL files
-   * 
- * - * Protobuf enum {@code Acme.Glup.HDFSDataFormat} - */ - public enum HDFSDataFormat - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_DATA_FORMAT = 0; - */ - UNSUPPORTED_DATA_FORMAT(0), - /** - * JSON_PAIL = 2; - */ - JSON_PAIL(2), - /** - * PROTOBUF_SEQ = 3; - */ - PROTOBUF_SEQ(3), - /** - * PROTOBUF_PARQUET = 4; - */ - PROTOBUF_PARQUET(4), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_DATA_FORMAT = 0; - */ - public static final int UNSUPPORTED_DATA_FORMAT_VALUE = 0; - /** - * JSON_PAIL = 2; - */ - public static final int JSON_PAIL_VALUE = 2; - /** - * PROTOBUF_SEQ = 3; - */ - public static final int PROTOBUF_SEQ_VALUE = 3; - /** - * PROTOBUF_PARQUET = 4; - */ - public static final int PROTOBUF_PARQUET_VALUE = 4; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static HDFSDataFormat valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static HDFSDataFormat forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_DATA_FORMAT; - case 2: return JSON_PAIL; - case 3: return PROTOBUF_SEQ; - case 4: return PROTOBUF_PARQUET; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - HDFSDataFormat> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public HDFSDataFormat findValueByNumber(int number) { - return HDFSDataFormat.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(2); - } - - private static final HDFSDataFormat[] VALUES = values(); - - public static HDFSDataFormat valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private HDFSDataFormat(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.HDFSDataFormat) - } - - /** - * Protobuf enum {@code Acme.Glup.DataSetKind} - */ - public enum DataSetKind - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_KIND = 0; - */ - UNSUPPORTED_KIND(0), - /** - * TIMESERIES = 1; - */ - TIMESERIES(1), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_KIND = 0; - */ - public static final int UNSUPPORTED_KIND_VALUE = 0; - /** - * TIMESERIES = 1; - */ - public static final int TIMESERIES_VALUE = 1; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static DataSetKind valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static DataSetKind forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_KIND; - case 1: return TIMESERIES; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - DataSetKind> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public DataSetKind findValueByNumber(int number) { - return DataSetKind.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(3); - } - - private static final DataSetKind[] VALUES = values(); - - public static DataSetKind valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private DataSetKind(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.DataSetKind) - } - - /** - * Protobuf enum {@code Acme.Glup.MonitoringLevel} - */ - public enum MonitoringLevel - implements com.google.protobuf.ProtocolMessageEnum { - /** - * DEFAULT = 0; - */ - DEFAULT(0), - /** - *
-     * consensus and last_run monitoring will be skipped
-     * 
- * - * REMOVE_MONITORING = 1; - */ - REMOVE_MONITORING(1), - /** - *
-     * No page for consensus or last_run monitoring
-     * 
- * - * INFORMATIVE_MONITORING = 2; - */ - INFORMATIVE_MONITORING(2), - /** - *
-     * consensus monitoring will be skip but last_run will be monitored (can page)
-     * 
- * - * CONSENSUS_IGNORED = 3; - */ - CONSENSUS_IGNORED(3), - /** - *
-     * consensus monitoring will be skip and last_run will be monitored as informative (no page)
-     * 
- * - * CONSENSUS_IGNORED_AND_INFORMATIVE_MONITORING = 4; - */ - CONSENSUS_IGNORED_AND_INFORMATIVE_MONITORING(4), - UNRECOGNIZED(-1), - ; - - /** - * DEFAULT = 0; - */ - public static final int DEFAULT_VALUE = 0; - /** - *
-     * consensus and last_run monitoring will be skipped
-     * 
- * - * REMOVE_MONITORING = 1; - */ - public static final int REMOVE_MONITORING_VALUE = 1; - /** - *
-     * No page for consensus or last_run monitoring
-     * 
- * - * INFORMATIVE_MONITORING = 2; - */ - public static final int INFORMATIVE_MONITORING_VALUE = 2; - /** - *
-     * consensus monitoring will be skip but last_run will be monitored (can page)
-     * 
- * - * CONSENSUS_IGNORED = 3; - */ - public static final int CONSENSUS_IGNORED_VALUE = 3; - /** - *
-     * consensus monitoring will be skip and last_run will be monitored as informative (no page)
-     * 
- * - * CONSENSUS_IGNORED_AND_INFORMATIVE_MONITORING = 4; - */ - public static final int CONSENSUS_IGNORED_AND_INFORMATIVE_MONITORING_VALUE = 4; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static MonitoringLevel valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static MonitoringLevel forNumber(int value) { - switch (value) { - case 0: return DEFAULT; - case 1: return REMOVE_MONITORING; - case 2: return INFORMATIVE_MONITORING; - case 3: return CONSENSUS_IGNORED; - case 4: return CONSENSUS_IGNORED_AND_INFORMATIVE_MONITORING; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - MonitoringLevel> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public MonitoringLevel findValueByNumber(int number) { - return MonitoringLevel.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(4); - } - - private static final MonitoringLevel[] VALUES = values(); - - public static MonitoringLevel valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private MonitoringLevel(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.MonitoringLevel) - } - - /** - *
-   * Describes the emitter of a message. 
-   * 
- * - * Protobuf enum {@code Acme.Glup.DataCenter} - */ - public enum DataCenter - implements com.google.protobuf.ProtocolMessageEnum { - /** - *
-     * If a MARS datacenter gets added, code built before that will see
-     * UNSUPPORTED_DATACENTER as the value.
-     * Never emit the actual value of UNSUPPORTED_DATACENTER.
-     * 
- * - * UNSUPPORTED_DATACENTER = 0; - */ - UNSUPPORTED_DATACENTER(0), - /** - * AM5 = 2; - */ - AM5(2), - /** - * HK5 = 3; - */ - HK5(3), - /** - * NY8 = 4; - */ - NY8(4), - /** - * PAR = 5; - */ - PAR(5), - /** - * PA4 = 6; - */ - PA4(6), - /** - * SH5 = 7; - */ - SH5(7), - /** - * SV6 = 8; - */ - SV6(8), - /** - * TY5 = 9; - */ - TY5(9), - /** - * VA1 = 10; - */ - VA1(10), - /** - * AM6 = 11; - */ - AM6(11), - /** - * DA1 = 12; - */ - DA1(12), - UNRECOGNIZED(-1), - ; - - /** - *
-     * If a MARS datacenter gets added, code built before that will see
-     * UNSUPPORTED_DATACENTER as the value.
-     * Never emit the actual value of UNSUPPORTED_DATACENTER.
-     * 
- * - * UNSUPPORTED_DATACENTER = 0; - */ - public static final int UNSUPPORTED_DATACENTER_VALUE = 0; - /** - * AM5 = 2; - */ - public static final int AM5_VALUE = 2; - /** - * HK5 = 3; - */ - public static final int HK5_VALUE = 3; - /** - * NY8 = 4; - */ - public static final int NY8_VALUE = 4; - /** - * PAR = 5; - */ - public static final int PAR_VALUE = 5; - /** - * PA4 = 6; - */ - public static final int PA4_VALUE = 6; - /** - * SH5 = 7; - */ - public static final int SH5_VALUE = 7; - /** - * SV6 = 8; - */ - public static final int SV6_VALUE = 8; - /** - * TY5 = 9; - */ - public static final int TY5_VALUE = 9; - /** - * VA1 = 10; - */ - public static final int VA1_VALUE = 10; - /** - * AM6 = 11; - */ - public static final int AM6_VALUE = 11; - /** - * DA1 = 12; - */ - public static final int DA1_VALUE = 12; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static DataCenter valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static DataCenter forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_DATACENTER; - case 2: return AM5; - case 3: return HK5; - case 4: return NY8; - case 5: return PAR; - case 6: return PA4; - case 7: return SH5; - case 8: return SV6; - case 9: return TY5; - case 10: return VA1; - case 11: return AM6; - case 12: return DA1; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - DataCenter> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public DataCenter findValueByNumber(int number) { - return DataCenter.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(5); - } - - private static final DataCenter[] VALUES = values(); - - public static DataCenter valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private DataCenter(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.DataCenter) - } - - /** - * Protobuf enum {@code Acme.Glup.Environment} - */ - public enum Environment - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_ENVIRONMENT = 0; - */ - UNSUPPORTED_ENVIRONMENT(0), - /** - * PREPROD = 1; - */ - PREPROD(1), - /** - * PROD = 2; - */ - PROD(2), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_ENVIRONMENT = 0; - */ - public static final int UNSUPPORTED_ENVIRONMENT_VALUE = 0; - /** - * PREPROD = 1; - */ - public static final int PREPROD_VALUE = 1; - /** - * PROD = 2; - */ - public static final int PROD_VALUE = 2; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static Environment valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static Environment forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_ENVIRONMENT; - case 1: return PREPROD; - case 2: return PROD; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - Environment> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public Environment findValueByNumber(int number) { - return Environment.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(6); - } - - private static final Environment[] VALUES = values(); - - public static Environment valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private Environment(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.Environment) - } - - /** - *
-   * Used in HourlyPlatformPartition to describe where should the message go on HDFS. 
-   * 
- * - * Protobuf enum {@code Acme.Glup.Platform} - */ - public enum Platform - implements com.google.protobuf.ProtocolMessageEnum { - /** - *
-     * If a MARS platform gets added, code built before that will see
-     * UNSUPPORTED_PLATFORM as the value.
-     * Never emit the actual value of UNSUPPORTED_PLATFORM.
-     * 
- * - * UNSUPPORTED_PLATFORM = 0; - */ - UNSUPPORTED_PLATFORM(0), - /** - * EU = 2; - */ - EU(2), - /** - * US = 3; - */ - US(3), - /** - * AS = 4; - */ - AS(4), - /** - * CN = 5; - */ - CN(5), - UNRECOGNIZED(-1), - ; - - /** - *
-     * If a MARS platform gets added, code built before that will see
-     * UNSUPPORTED_PLATFORM as the value.
-     * Never emit the actual value of UNSUPPORTED_PLATFORM.
-     * 
- * - * UNSUPPORTED_PLATFORM = 0; - */ - public static final int UNSUPPORTED_PLATFORM_VALUE = 0; - /** - * EU = 2; - */ - public static final int EU_VALUE = 2; - /** - * US = 3; - */ - public static final int US_VALUE = 3; - /** - * AS = 4; - */ - public static final int AS_VALUE = 4; - /** - * CN = 5; - */ - public static final int CN_VALUE = 5; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static Platform valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static Platform forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_PLATFORM; - case 2: return EU; - case 3: return US; - case 4: return AS; - case 5: return CN; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - Platform> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public Platform findValueByNumber(int number) { - return Platform.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(7); - } - - private static final Platform[] VALUES = values(); - - public static Platform valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private Platform(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.Platform) - } - - /** - * Protobuf enum {@code Acme.Glup.EventType} - */ - public enum EventType - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_EVENT_TYPE = 0; - */ - UNSUPPORTED_EVENT_TYPE(0), - /** - * ItemPageView = 2; - */ - ItemPageView(2), - /** - * Sales = 3; - */ - Sales(3), - /** - * Basket = 4; - */ - Basket(4), - /** - * Other = 5; - */ - Other(5), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_EVENT_TYPE = 0; - */ - public static final int UNSUPPORTED_EVENT_TYPE_VALUE = 0; - /** - * ItemPageView = 2; - */ - public static final int ItemPageView_VALUE = 2; - /** - * Sales = 3; - */ - public static final int Sales_VALUE = 3; - /** - * Basket = 4; - */ - public static final int Basket_VALUE = 4; - /** - * Other = 5; - */ - public static final int Other_VALUE = 5; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static EventType valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static EventType forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_EVENT_TYPE; - case 2: return ItemPageView; - case 3: return Sales; - case 4: return Basket; - case 5: return Other; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - EventType> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public EventType findValueByNumber(int number) { - return EventType.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(8); - } - - private static final EventType[] VALUES = values(); - - public static EventType valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private EventType(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.EventType) - } - - /** - *
-   * Three-state boolean to use when willing to express the absence of
-   * information for a field. 
-   * 
- * - * Protobuf enum {@code Acme.Glup.YesNo} - */ - public enum YesNo - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNKNOWN = 0; - */ - UNKNOWN(0), - /** - * NO = 1; - */ - NO(1), - /** - * YES = 2; - */ - YES(2), - UNRECOGNIZED(-1), - ; - - /** - * UNKNOWN = 0; - */ - public static final int UNKNOWN_VALUE = 0; - /** - * NO = 1; - */ - public static final int NO_VALUE = 1; - /** - * YES = 2; - */ - public static final int YES_VALUE = 2; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static YesNo valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static YesNo forNumber(int value) { - switch (value) { - case 0: return UNKNOWN; - case 1: return NO; - case 2: return YES; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - YesNo> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public YesNo findValueByNumber(int number) { - return YesNo.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.getDescriptor().getEnumTypes().get(9); - } - - private static final YesNo[] VALUES = values(); - - public static YesNo valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private YesNo(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.YesNo) - } - - public interface KafkaMessageOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.KafkaMessageOptions) - com.google.protobuf.MessageOrBuilder { - - /** - * repeated string topic = 1; - * @return A list containing the topic. - */ - java.util.List - getTopicList(); - /** - * repeated string topic = 1; - * @return The count of topic. - */ - int getTopicCount(); - /** - * repeated string topic = 1; - * @param index The index of the element to return. - * @return The topic at the given index. - */ - java.lang.String getTopic(int index); - /** - * repeated string topic = 1; - * @param index The index of the value to return. - * @return The bytes of the topic at the given index. - */ - com.google.protobuf.ByteString - getTopicBytes(int index); - } - /** - *
-   * It holds the kafka topic name
-   * 
- * - * Protobuf type {@code Acme.Glup.KafkaMessageOptions} - */ - public static final class KafkaMessageOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.KafkaMessageOptions) - KafkaMessageOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use KafkaMessageOptions.newBuilder() to construct. - private KafkaMessageOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private KafkaMessageOptions() { - topic_ = com.google.protobuf.LazyStringArrayList.EMPTY; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new KafkaMessageOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private KafkaMessageOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - topic_ = new com.google.protobuf.LazyStringArrayList(); - mutable_bitField0_ |= 0x00000001; - } - topic_.add(s); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - topic_ = topic_.getUnmodifiableView(); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_KafkaMessageOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_KafkaMessageOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.KafkaMessageOptions.class, com.acme.glup.MetadataProto.KafkaMessageOptions.Builder.class); - } - - public static final int TOPIC_FIELD_NUMBER = 1; - private com.google.protobuf.LazyStringList topic_; - /** - * repeated string topic = 1; - * @return A list containing the topic. - */ - public com.google.protobuf.ProtocolStringList - getTopicList() { - return topic_; - } - /** - * repeated string topic = 1; - * @return The count of topic. - */ - public int getTopicCount() { - return topic_.size(); - } - /** - * repeated string topic = 1; - * @param index The index of the element to return. - * @return The topic at the given index. - */ - public java.lang.String getTopic(int index) { - return topic_.get(index); - } - /** - * repeated string topic = 1; - * @param index The index of the value to return. - * @return The bytes of the topic at the given index. - */ - public com.google.protobuf.ByteString - getTopicBytes(int index) { - return topic_.getByteString(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - for (int i = 0; i < topic_.size(); i++) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, topic_.getRaw(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - { - int dataSize = 0; - for (int i = 0; i < topic_.size(); i++) { - dataSize += computeStringSizeNoTag(topic_.getRaw(i)); - } - size += dataSize; - size += 1 * getTopicList().size(); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.KafkaMessageOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.KafkaMessageOptions other = (com.acme.glup.MetadataProto.KafkaMessageOptions) obj; - - if (!getTopicList() - .equals(other.getTopicList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (getTopicCount() > 0) { - hash = (37 * hash) + TOPIC_FIELD_NUMBER; - hash = (53 * hash) + getTopicList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.KafkaMessageOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.KafkaMessageOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * It holds the kafka topic name
-     * 
- * - * Protobuf type {@code Acme.Glup.KafkaMessageOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.KafkaMessageOptions) - com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_KafkaMessageOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_KafkaMessageOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.KafkaMessageOptions.class, com.acme.glup.MetadataProto.KafkaMessageOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.KafkaMessageOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - topic_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_KafkaMessageOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.KafkaMessageOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.KafkaMessageOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.KafkaMessageOptions build() { - com.acme.glup.MetadataProto.KafkaMessageOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.KafkaMessageOptions buildPartial() { - com.acme.glup.MetadataProto.KafkaMessageOptions result = new com.acme.glup.MetadataProto.KafkaMessageOptions(this); - int from_bitField0_ = bitField0_; - if (((bitField0_ & 0x00000001) != 0)) { - topic_ = topic_.getUnmodifiableView(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.topic_ = topic_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.KafkaMessageOptions) { - return mergeFrom((com.acme.glup.MetadataProto.KafkaMessageOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.KafkaMessageOptions other) { - if (other == com.acme.glup.MetadataProto.KafkaMessageOptions.getDefaultInstance()) return this; - if (!other.topic_.isEmpty()) { - if (topic_.isEmpty()) { - topic_ = other.topic_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureTopicIsMutable(); - topic_.addAll(other.topic_); - } - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.KafkaMessageOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.KafkaMessageOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.google.protobuf.LazyStringList topic_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureTopicIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - topic_ = new com.google.protobuf.LazyStringArrayList(topic_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated string topic = 1; - * @return A list containing the topic. - */ - public com.google.protobuf.ProtocolStringList - getTopicList() { - return topic_.getUnmodifiableView(); - } - /** - * repeated string topic = 1; - * @return The count of topic. - */ - public int getTopicCount() { - return topic_.size(); - } - /** - * repeated string topic = 1; - * @param index The index of the element to return. - * @return The topic at the given index. - */ - public java.lang.String getTopic(int index) { - return topic_.get(index); - } - /** - * repeated string topic = 1; - * @param index The index of the value to return. - * @return The bytes of the topic at the given index. - */ - public com.google.protobuf.ByteString - getTopicBytes(int index) { - return topic_.getByteString(index); - } - /** - * repeated string topic = 1; - * @param index The index to set the value at. - * @param value The topic to set. - * @return This builder for chaining. - */ - public Builder setTopic( - int index, java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureTopicIsMutable(); - topic_.set(index, value); - onChanged(); - return this; - } - /** - * repeated string topic = 1; - * @param value The topic to add. - * @return This builder for chaining. - */ - public Builder addTopic( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureTopicIsMutable(); - topic_.add(value); - onChanged(); - return this; - } - /** - * repeated string topic = 1; - * @param values The topic to add. - * @return This builder for chaining. - */ - public Builder addAllTopic( - java.lang.Iterable values) { - ensureTopicIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, topic_); - onChanged(); - return this; - } - /** - * repeated string topic = 1; - * @return This builder for chaining. - */ - public Builder clearTopic() { - topic_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - * repeated string topic = 1; - * @param value The bytes of the topic to add. - * @return This builder for chaining. - */ - public Builder addTopicBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - ensureTopicIsMutable(); - topic_.add(value); - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.KafkaMessageOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.KafkaMessageOptions) - private static final com.acme.glup.MetadataProto.KafkaMessageOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.KafkaMessageOptions(); - } - - public static com.acme.glup.MetadataProto.KafkaMessageOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public KafkaMessageOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new KafkaMessageOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.KafkaMessageOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface DataSetOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.DataSet) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * A uniq identifier for this dataset.
-     * This string must be lowercase and only contain alphanumerical characters
-     * or underscores.
-     * 
- * - * string id = 1; - * @return The id. - */ - java.lang.String getId(); - /** - *
-     * A uniq identifier for this dataset.
-     * This string must be lowercase and only contain alphanumerical characters
-     * or underscores.
-     * 
- * - * string id = 1; - * @return The bytes for id. - */ - com.google.protobuf.ByteString - getIdBytes(); - - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - java.util.List - getFormatList(); - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - com.acme.glup.MetadataProto.DataSetFormat getFormat(int index); - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - int getFormatCount(); - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - java.util.List - getFormatOrBuilderList(); - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - com.acme.glup.MetadataProto.DataSetFormatOrBuilder getFormatOrBuilder( - int index); - - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The enum numeric value on the wire for partitionScheme. - */ - int getPartitionSchemeValue(); - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The partitionScheme. - */ - com.acme.glup.MetadataProto.PartitionScheme getPartitionScheme(); - - /** - *
-     * (Mandatory) This should be java class which will represent the dataset's schema.
-     * 
- * - * string java_class = 4; - * @return The javaClass. - */ - java.lang.String getJavaClass(); - /** - *
-     * (Mandatory) This should be java class which will represent the dataset's schema.
-     * 
- * - * string java_class = 4; - * @return The bytes for javaClass. - */ - com.google.protobuf.ByteString - getJavaClassBytes(); - - /** - *
-     * is this dataset a unit test dataset
-     * 
- * - * bool for_tests = 5; - * @return The forTests. - */ - boolean getForTests(); - - /** - *
-     * owner of this dataset
-     * 
- * - * string owner = 6; - * @return The owner. - */ - java.lang.String getOwner(); - /** - *
-     * owner of this dataset
-     * 
- * - * string owner = 6; - * @return The bytes for owner. - */ - com.google.protobuf.ByteString - getOwnerBytes(); - - /** - *
-     * is this dataset private
-     * 
- * - * bool private = 7; - * @return The private. - */ - boolean getPrivate(); - - /** - *
-     * kind of dataset
-     * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return The enum numeric value on the wire for kind. - */ - int getKindValue(); - /** - *
-     * kind of dataset
-     * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return The kind. - */ - com.acme.glup.MetadataProto.DataSetKind getKind(); - - /** - *
-     * retention period (in days)
-     * 
- * - * int32 retention_days = 9; - * @return The retentionDays. - */ - int getRetentionDays(); - } - /** - *
-   * Defines a data set with its underlying available formats
-   * 
- * - * Protobuf type {@code Acme.Glup.DataSet} - */ - public static final class DataSet extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.DataSet) - DataSetOrBuilder { - private static final long serialVersionUID = 0L; - // Use DataSet.newBuilder() to construct. - private DataSet(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DataSet() { - id_ = ""; - format_ = java.util.Collections.emptyList(); - partitionScheme_ = 0; - javaClass_ = ""; - owner_ = ""; - kind_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DataSet(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DataSet( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - id_ = s; - break; - } - case 18: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - format_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - format_.add( - input.readMessage(com.acme.glup.MetadataProto.DataSetFormat.parser(), extensionRegistry)); - break; - } - case 24: { - int rawValue = input.readEnum(); - - partitionScheme_ = rawValue; - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - javaClass_ = s; - break; - } - case 40: { - - forTests_ = input.readBool(); - break; - } - case 50: { - java.lang.String s = input.readStringRequireUtf8(); - - owner_ = s; - break; - } - case 56: { - - private_ = input.readBool(); - break; - } - case 64: { - int rawValue = input.readEnum(); - - kind_ = rawValue; - break; - } - case 72: { - - retentionDays_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - format_ = java.util.Collections.unmodifiableList(format_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSet_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSet_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.DataSet.class, com.acme.glup.MetadataProto.DataSet.Builder.class); - } - - public static final int ID_FIELD_NUMBER = 1; - private volatile java.lang.Object id_; - /** - *
-     * A uniq identifier for this dataset.
-     * This string must be lowercase and only contain alphanumerical characters
-     * or underscores.
-     * 
- * - * string id = 1; - * @return The id. - */ - @java.lang.Override - public java.lang.String getId() { - java.lang.Object ref = id_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - id_ = s; - return s; - } - } - /** - *
-     * A uniq identifier for this dataset.
-     * This string must be lowercase and only contain alphanumerical characters
-     * or underscores.
-     * 
- * - * string id = 1; - * @return The bytes for id. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getIdBytes() { - java.lang.Object ref = id_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - id_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int FORMAT_FIELD_NUMBER = 2; - private java.util.List format_; - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - @java.lang.Override - public java.util.List getFormatList() { - return format_; - } - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - @java.lang.Override - public java.util.List - getFormatOrBuilderList() { - return format_; - } - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - @java.lang.Override - public int getFormatCount() { - return format_.size(); - } - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormat getFormat(int index) { - return format_.get(index); - } - /** - *
-     * A set of formats available for this dataset.
-     * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormatOrBuilder getFormatOrBuilder( - int index) { - return format_.get(index); - } - - public static final int PARTITION_SCHEME_FIELD_NUMBER = 3; - private int partitionScheme_; - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The enum numeric value on the wire for partitionScheme. - */ - @java.lang.Override public int getPartitionSchemeValue() { - return partitionScheme_; - } - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The partitionScheme. - */ - @java.lang.Override public com.acme.glup.MetadataProto.PartitionScheme getPartitionScheme() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitionScheme_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - - public static final int JAVA_CLASS_FIELD_NUMBER = 4; - private volatile java.lang.Object javaClass_; - /** - *
-     * (Mandatory) This should be java class which will represent the dataset's schema.
-     * 
- * - * string java_class = 4; - * @return The javaClass. - */ - @java.lang.Override - public java.lang.String getJavaClass() { - java.lang.Object ref = javaClass_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - javaClass_ = s; - return s; - } - } - /** - *
-     * (Mandatory) This should be java class which will represent the dataset's schema.
-     * 
- * - * string java_class = 4; - * @return The bytes for javaClass. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getJavaClassBytes() { - java.lang.Object ref = javaClass_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - javaClass_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int FOR_TESTS_FIELD_NUMBER = 5; - private boolean forTests_; - /** - *
-     * is this dataset a unit test dataset
-     * 
- * - * bool for_tests = 5; - * @return The forTests. - */ - @java.lang.Override - public boolean getForTests() { - return forTests_; - } - - public static final int OWNER_FIELD_NUMBER = 6; - private volatile java.lang.Object owner_; - /** - *
-     * owner of this dataset
-     * 
- * - * string owner = 6; - * @return The owner. - */ - @java.lang.Override - public java.lang.String getOwner() { - java.lang.Object ref = owner_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - owner_ = s; - return s; - } - } - /** - *
-     * owner of this dataset
-     * 
- * - * string owner = 6; - * @return The bytes for owner. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOwnerBytes() { - java.lang.Object ref = owner_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - owner_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PRIVATE_FIELD_NUMBER = 7; - private boolean private_; - /** - *
-     * is this dataset private
-     * 
- * - * bool private = 7; - * @return The private. - */ - @java.lang.Override - public boolean getPrivate() { - return private_; - } - - public static final int KIND_FIELD_NUMBER = 8; - private int kind_; - /** - *
-     * kind of dataset
-     * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return The enum numeric value on the wire for kind. - */ - @java.lang.Override public int getKindValue() { - return kind_; - } - /** - *
-     * kind of dataset
-     * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return The kind. - */ - @java.lang.Override public com.acme.glup.MetadataProto.DataSetKind getKind() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataSetKind result = com.acme.glup.MetadataProto.DataSetKind.valueOf(kind_); - return result == null ? com.acme.glup.MetadataProto.DataSetKind.UNRECOGNIZED : result; - } - - public static final int RETENTION_DAYS_FIELD_NUMBER = 9; - private int retentionDays_; - /** - *
-     * retention period (in days)
-     * 
- * - * int32 retention_days = 9; - * @return The retentionDays. - */ - @java.lang.Override - public int getRetentionDays() { - return retentionDays_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, id_); - } - for (int i = 0; i < format_.size(); i++) { - output.writeMessage(2, format_.get(i)); - } - if (partitionScheme_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - output.writeEnum(3, partitionScheme_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(javaClass_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, javaClass_); - } - if (forTests_ != false) { - output.writeBool(5, forTests_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(owner_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 6, owner_); - } - if (private_ != false) { - output.writeBool(7, private_); - } - if (kind_ != com.acme.glup.MetadataProto.DataSetKind.UNSUPPORTED_KIND.getNumber()) { - output.writeEnum(8, kind_); - } - if (retentionDays_ != 0) { - output.writeInt32(9, retentionDays_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, id_); - } - for (int i = 0; i < format_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, format_.get(i)); - } - if (partitionScheme_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, partitionScheme_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(javaClass_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, javaClass_); - } - if (forTests_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(5, forTests_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(owner_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, owner_); - } - if (private_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(7, private_); - } - if (kind_ != com.acme.glup.MetadataProto.DataSetKind.UNSUPPORTED_KIND.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(8, kind_); - } - if (retentionDays_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(9, retentionDays_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.DataSet)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.DataSet other = (com.acme.glup.MetadataProto.DataSet) obj; - - if (!getId() - .equals(other.getId())) return false; - if (!getFormatList() - .equals(other.getFormatList())) return false; - if (partitionScheme_ != other.partitionScheme_) return false; - if (!getJavaClass() - .equals(other.getJavaClass())) return false; - if (getForTests() - != other.getForTests()) return false; - if (!getOwner() - .equals(other.getOwner())) return false; - if (getPrivate() - != other.getPrivate()) return false; - if (kind_ != other.kind_) return false; - if (getRetentionDays() - != other.getRetentionDays()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ID_FIELD_NUMBER; - hash = (53 * hash) + getId().hashCode(); - if (getFormatCount() > 0) { - hash = (37 * hash) + FORMAT_FIELD_NUMBER; - hash = (53 * hash) + getFormatList().hashCode(); - } - hash = (37 * hash) + PARTITION_SCHEME_FIELD_NUMBER; - hash = (53 * hash) + partitionScheme_; - hash = (37 * hash) + JAVA_CLASS_FIELD_NUMBER; - hash = (53 * hash) + getJavaClass().hashCode(); - hash = (37 * hash) + FOR_TESTS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getForTests()); - hash = (37 * hash) + OWNER_FIELD_NUMBER; - hash = (53 * hash) + getOwner().hashCode(); - hash = (37 * hash) + PRIVATE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getPrivate()); - hash = (37 * hash) + KIND_FIELD_NUMBER; - hash = (53 * hash) + kind_; - hash = (37 * hash) + RETENTION_DAYS_FIELD_NUMBER; - hash = (53 * hash) + getRetentionDays(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.DataSet parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSet parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSet parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSet parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.DataSet prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Defines a data set with its underlying available formats
-     * 
- * - * Protobuf type {@code Acme.Glup.DataSet} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.DataSet) - com.acme.glup.MetadataProto.DataSetOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSet_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSet_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.DataSet.class, com.acme.glup.MetadataProto.DataSet.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.DataSet.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getFormatFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - id_ = ""; - - if (formatBuilder_ == null) { - format_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - formatBuilder_.clear(); - } - partitionScheme_ = 0; - - javaClass_ = ""; - - forTests_ = false; - - owner_ = ""; - - private_ = false; - - kind_ = 0; - - retentionDays_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSet_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSet getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.DataSet.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSet build() { - com.acme.glup.MetadataProto.DataSet result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSet buildPartial() { - com.acme.glup.MetadataProto.DataSet result = new com.acme.glup.MetadataProto.DataSet(this); - int from_bitField0_ = bitField0_; - result.id_ = id_; - if (formatBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - format_ = java.util.Collections.unmodifiableList(format_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.format_ = format_; - } else { - result.format_ = formatBuilder_.build(); - } - result.partitionScheme_ = partitionScheme_; - result.javaClass_ = javaClass_; - result.forTests_ = forTests_; - result.owner_ = owner_; - result.private_ = private_; - result.kind_ = kind_; - result.retentionDays_ = retentionDays_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.DataSet) { - return mergeFrom((com.acme.glup.MetadataProto.DataSet)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.DataSet other) { - if (other == com.acme.glup.MetadataProto.DataSet.getDefaultInstance()) return this; - if (!other.getId().isEmpty()) { - id_ = other.id_; - onChanged(); - } - if (formatBuilder_ == null) { - if (!other.format_.isEmpty()) { - if (format_.isEmpty()) { - format_ = other.format_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureFormatIsMutable(); - format_.addAll(other.format_); - } - onChanged(); - } - } else { - if (!other.format_.isEmpty()) { - if (formatBuilder_.isEmpty()) { - formatBuilder_.dispose(); - formatBuilder_ = null; - format_ = other.format_; - bitField0_ = (bitField0_ & ~0x00000001); - formatBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getFormatFieldBuilder() : null; - } else { - formatBuilder_.addAllMessages(other.format_); - } - } - } - if (other.partitionScheme_ != 0) { - setPartitionSchemeValue(other.getPartitionSchemeValue()); - } - if (!other.getJavaClass().isEmpty()) { - javaClass_ = other.javaClass_; - onChanged(); - } - if (other.getForTests() != false) { - setForTests(other.getForTests()); - } - if (!other.getOwner().isEmpty()) { - owner_ = other.owner_; - onChanged(); - } - if (other.getPrivate() != false) { - setPrivate(other.getPrivate()); - } - if (other.kind_ != 0) { - setKindValue(other.getKindValue()); - } - if (other.getRetentionDays() != 0) { - setRetentionDays(other.getRetentionDays()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.DataSet parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.DataSet) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.lang.Object id_ = ""; - /** - *
-       * A uniq identifier for this dataset.
-       * This string must be lowercase and only contain alphanumerical characters
-       * or underscores.
-       * 
- * - * string id = 1; - * @return The id. - */ - public java.lang.String getId() { - java.lang.Object ref = id_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - id_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * A uniq identifier for this dataset.
-       * This string must be lowercase and only contain alphanumerical characters
-       * or underscores.
-       * 
- * - * string id = 1; - * @return The bytes for id. - */ - public com.google.protobuf.ByteString - getIdBytes() { - java.lang.Object ref = id_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - id_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * A uniq identifier for this dataset.
-       * This string must be lowercase and only contain alphanumerical characters
-       * or underscores.
-       * 
- * - * string id = 1; - * @param value The id to set. - * @return This builder for chaining. - */ - public Builder setId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - id_ = value; - onChanged(); - return this; - } - /** - *
-       * A uniq identifier for this dataset.
-       * This string must be lowercase and only contain alphanumerical characters
-       * or underscores.
-       * 
- * - * string id = 1; - * @return This builder for chaining. - */ - public Builder clearId() { - - id_ = getDefaultInstance().getId(); - onChanged(); - return this; - } - /** - *
-       * A uniq identifier for this dataset.
-       * This string must be lowercase and only contain alphanumerical characters
-       * or underscores.
-       * 
- * - * string id = 1; - * @param value The bytes for id to set. - * @return This builder for chaining. - */ - public Builder setIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - id_ = value; - onChanged(); - return this; - } - - private java.util.List format_ = - java.util.Collections.emptyList(); - private void ensureFormatIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - format_ = new java.util.ArrayList(format_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.DataSetFormat, com.acme.glup.MetadataProto.DataSetFormat.Builder, com.acme.glup.MetadataProto.DataSetFormatOrBuilder> formatBuilder_; - - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public java.util.List getFormatList() { - if (formatBuilder_ == null) { - return java.util.Collections.unmodifiableList(format_); - } else { - return formatBuilder_.getMessageList(); - } - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public int getFormatCount() { - if (formatBuilder_ == null) { - return format_.size(); - } else { - return formatBuilder_.getCount(); - } - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormat getFormat(int index) { - if (formatBuilder_ == null) { - return format_.get(index); - } else { - return formatBuilder_.getMessage(index); - } - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder setFormat( - int index, com.acme.glup.MetadataProto.DataSetFormat value) { - if (formatBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureFormatIsMutable(); - format_.set(index, value); - onChanged(); - } else { - formatBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder setFormat( - int index, com.acme.glup.MetadataProto.DataSetFormat.Builder builderForValue) { - if (formatBuilder_ == null) { - ensureFormatIsMutable(); - format_.set(index, builderForValue.build()); - onChanged(); - } else { - formatBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder addFormat(com.acme.glup.MetadataProto.DataSetFormat value) { - if (formatBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureFormatIsMutable(); - format_.add(value); - onChanged(); - } else { - formatBuilder_.addMessage(value); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder addFormat( - int index, com.acme.glup.MetadataProto.DataSetFormat value) { - if (formatBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureFormatIsMutable(); - format_.add(index, value); - onChanged(); - } else { - formatBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder addFormat( - com.acme.glup.MetadataProto.DataSetFormat.Builder builderForValue) { - if (formatBuilder_ == null) { - ensureFormatIsMutable(); - format_.add(builderForValue.build()); - onChanged(); - } else { - formatBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder addFormat( - int index, com.acme.glup.MetadataProto.DataSetFormat.Builder builderForValue) { - if (formatBuilder_ == null) { - ensureFormatIsMutable(); - format_.add(index, builderForValue.build()); - onChanged(); - } else { - formatBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder addAllFormat( - java.lang.Iterable values) { - if (formatBuilder_ == null) { - ensureFormatIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, format_); - onChanged(); - } else { - formatBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder clearFormat() { - if (formatBuilder_ == null) { - format_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - formatBuilder_.clear(); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public Builder removeFormat(int index) { - if (formatBuilder_ == null) { - ensureFormatIsMutable(); - format_.remove(index); - onChanged(); - } else { - formatBuilder_.remove(index); - } - return this; - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormat.Builder getFormatBuilder( - int index) { - return getFormatFieldBuilder().getBuilder(index); - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormatOrBuilder getFormatOrBuilder( - int index) { - if (formatBuilder_ == null) { - return format_.get(index); } else { - return formatBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public java.util.List - getFormatOrBuilderList() { - if (formatBuilder_ != null) { - return formatBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(format_); - } - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormat.Builder addFormatBuilder() { - return getFormatFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance()); - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormat.Builder addFormatBuilder( - int index) { - return getFormatFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance()); - } - /** - *
-       * A set of formats available for this dataset.
-       * 
- * - * repeated .Acme.Glup.DataSetFormat format = 2; - */ - public java.util.List - getFormatBuilderList() { - return getFormatFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.DataSetFormat, com.acme.glup.MetadataProto.DataSetFormat.Builder, com.acme.glup.MetadataProto.DataSetFormatOrBuilder> - getFormatFieldBuilder() { - if (formatBuilder_ == null) { - formatBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.DataSetFormat, com.acme.glup.MetadataProto.DataSetFormat.Builder, com.acme.glup.MetadataProto.DataSetFormatOrBuilder>( - format_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - format_ = null; - } - return formatBuilder_; - } - - private int partitionScheme_ = 0; - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The enum numeric value on the wire for partitionScheme. - */ - @java.lang.Override public int getPartitionSchemeValue() { - return partitionScheme_; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @param value The enum numeric value on the wire for partitionScheme to set. - * @return This builder for chaining. - */ - public Builder setPartitionSchemeValue(int value) { - - partitionScheme_ = value; - onChanged(); - return this; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The partitionScheme. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionScheme getPartitionScheme() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitionScheme_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @param value The partitionScheme to set. - * @return This builder for chaining. - */ - public Builder setPartitionScheme(com.acme.glup.MetadataProto.PartitionScheme value) { - if (value == null) { - throw new NullPointerException(); - } - - partitionScheme_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return This builder for chaining. - */ - public Builder clearPartitionScheme() { - - partitionScheme_ = 0; - onChanged(); - return this; - } - - private java.lang.Object javaClass_ = ""; - /** - *
-       * (Mandatory) This should be java class which will represent the dataset's schema.
-       * 
- * - * string java_class = 4; - * @return The javaClass. - */ - public java.lang.String getJavaClass() { - java.lang.Object ref = javaClass_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - javaClass_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * (Mandatory) This should be java class which will represent the dataset's schema.
-       * 
- * - * string java_class = 4; - * @return The bytes for javaClass. - */ - public com.google.protobuf.ByteString - getJavaClassBytes() { - java.lang.Object ref = javaClass_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - javaClass_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * (Mandatory) This should be java class which will represent the dataset's schema.
-       * 
- * - * string java_class = 4; - * @param value The javaClass to set. - * @return This builder for chaining. - */ - public Builder setJavaClass( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - javaClass_ = value; - onChanged(); - return this; - } - /** - *
-       * (Mandatory) This should be java class which will represent the dataset's schema.
-       * 
- * - * string java_class = 4; - * @return This builder for chaining. - */ - public Builder clearJavaClass() { - - javaClass_ = getDefaultInstance().getJavaClass(); - onChanged(); - return this; - } - /** - *
-       * (Mandatory) This should be java class which will represent the dataset's schema.
-       * 
- * - * string java_class = 4; - * @param value The bytes for javaClass to set. - * @return This builder for chaining. - */ - public Builder setJavaClassBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - javaClass_ = value; - onChanged(); - return this; - } - - private boolean forTests_ ; - /** - *
-       * is this dataset a unit test dataset
-       * 
- * - * bool for_tests = 5; - * @return The forTests. - */ - @java.lang.Override - public boolean getForTests() { - return forTests_; - } - /** - *
-       * is this dataset a unit test dataset
-       * 
- * - * bool for_tests = 5; - * @param value The forTests to set. - * @return This builder for chaining. - */ - public Builder setForTests(boolean value) { - - forTests_ = value; - onChanged(); - return this; - } - /** - *
-       * is this dataset a unit test dataset
-       * 
- * - * bool for_tests = 5; - * @return This builder for chaining. - */ - public Builder clearForTests() { - - forTests_ = false; - onChanged(); - return this; - } - - private java.lang.Object owner_ = ""; - /** - *
-       * owner of this dataset
-       * 
- * - * string owner = 6; - * @return The owner. - */ - public java.lang.String getOwner() { - java.lang.Object ref = owner_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - owner_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * owner of this dataset
-       * 
- * - * string owner = 6; - * @return The bytes for owner. - */ - public com.google.protobuf.ByteString - getOwnerBytes() { - java.lang.Object ref = owner_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - owner_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * owner of this dataset
-       * 
- * - * string owner = 6; - * @param value The owner to set. - * @return This builder for chaining. - */ - public Builder setOwner( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - owner_ = value; - onChanged(); - return this; - } - /** - *
-       * owner of this dataset
-       * 
- * - * string owner = 6; - * @return This builder for chaining. - */ - public Builder clearOwner() { - - owner_ = getDefaultInstance().getOwner(); - onChanged(); - return this; - } - /** - *
-       * owner of this dataset
-       * 
- * - * string owner = 6; - * @param value The bytes for owner to set. - * @return This builder for chaining. - */ - public Builder setOwnerBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - owner_ = value; - onChanged(); - return this; - } - - private boolean private_ ; - /** - *
-       * is this dataset private
-       * 
- * - * bool private = 7; - * @return The private. - */ - @java.lang.Override - public boolean getPrivate() { - return private_; - } - /** - *
-       * is this dataset private
-       * 
- * - * bool private = 7; - * @param value The private to set. - * @return This builder for chaining. - */ - public Builder setPrivate(boolean value) { - - private_ = value; - onChanged(); - return this; - } - /** - *
-       * is this dataset private
-       * 
- * - * bool private = 7; - * @return This builder for chaining. - */ - public Builder clearPrivate() { - - private_ = false; - onChanged(); - return this; - } - - private int kind_ = 0; - /** - *
-       * kind of dataset
-       * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return The enum numeric value on the wire for kind. - */ - @java.lang.Override public int getKindValue() { - return kind_; - } - /** - *
-       * kind of dataset
-       * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @param value The enum numeric value on the wire for kind to set. - * @return This builder for chaining. - */ - public Builder setKindValue(int value) { - - kind_ = value; - onChanged(); - return this; - } - /** - *
-       * kind of dataset
-       * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return The kind. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetKind getKind() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataSetKind result = com.acme.glup.MetadataProto.DataSetKind.valueOf(kind_); - return result == null ? com.acme.glup.MetadataProto.DataSetKind.UNRECOGNIZED : result; - } - /** - *
-       * kind of dataset
-       * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @param value The kind to set. - * @return This builder for chaining. - */ - public Builder setKind(com.acme.glup.MetadataProto.DataSetKind value) { - if (value == null) { - throw new NullPointerException(); - } - - kind_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * kind of dataset
-       * 
- * - * .Acme.Glup.DataSetKind kind = 8; - * @return This builder for chaining. - */ - public Builder clearKind() { - - kind_ = 0; - onChanged(); - return this; - } - - private int retentionDays_ ; - /** - *
-       * retention period (in days)
-       * 
- * - * int32 retention_days = 9; - * @return The retentionDays. - */ - @java.lang.Override - public int getRetentionDays() { - return retentionDays_; - } - /** - *
-       * retention period (in days)
-       * 
- * - * int32 retention_days = 9; - * @param value The retentionDays to set. - * @return This builder for chaining. - */ - public Builder setRetentionDays(int value) { - - retentionDays_ = value; - onChanged(); - return this; - } - /** - *
-       * retention period (in days)
-       * 
- * - * int32 retention_days = 9; - * @return This builder for chaining. - */ - public Builder clearRetentionDays() { - - retentionDays_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.DataSet) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.DataSet) - private static final com.acme.glup.MetadataProto.DataSet DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.DataSet(); - } - - public static com.acme.glup.MetadataProto.DataSet getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DataSet parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DataSet(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSet getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface DataSetChunkOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.DataSetChunk) - com.google.protobuf.MessageOrBuilder { - - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - java.util.List - getPartitionList(); - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - com.acme.glup.MetadataProto.Partition getPartition(int index); - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - int getPartitionCount(); - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - java.util.List - getPartitionOrBuilderList(); - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder( - int index); - - /** - * .Acme.Glup.DataSetFormat format = 2; - * @return Whether the format field is set. - */ - boolean hasFormat(); - /** - * .Acme.Glup.DataSetFormat format = 2; - * @return The format. - */ - com.acme.glup.MetadataProto.DataSetFormat getFormat(); - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - com.acme.glup.MetadataProto.DataSetFormatOrBuilder getFormatOrBuilder(); - - /** - * string datasetId = 3; - * @return The datasetId. - */ - java.lang.String getDatasetId(); - /** - * string datasetId = 3; - * @return The bytes for datasetId. - */ - com.google.protobuf.ByteString - getDatasetIdBytes(); - } - /** - *
-   * Defines a set of dataset partitions
-   * 
- * - * Protobuf type {@code Acme.Glup.DataSetChunk} - */ - public static final class DataSetChunk extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.DataSetChunk) - DataSetChunkOrBuilder { - private static final long serialVersionUID = 0L; - // Use DataSetChunk.newBuilder() to construct. - private DataSetChunk(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DataSetChunk() { - partition_ = java.util.Collections.emptyList(); - datasetId_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DataSetChunk(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DataSetChunk( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - partition_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - partition_.add( - input.readMessage(com.acme.glup.MetadataProto.Partition.parser(), extensionRegistry)); - break; - } - case 18: { - com.acme.glup.MetadataProto.DataSetFormat.Builder subBuilder = null; - if (format_ != null) { - subBuilder = format_.toBuilder(); - } - format_ = input.readMessage(com.acme.glup.MetadataProto.DataSetFormat.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(format_); - format_ = subBuilder.buildPartial(); - } - - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - datasetId_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - partition_ = java.util.Collections.unmodifiableList(partition_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetChunk_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetChunk_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.DataSetChunk.class, com.acme.glup.MetadataProto.DataSetChunk.Builder.class); - } - - public static final int PARTITION_FIELD_NUMBER = 1; - private java.util.List partition_; - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - @java.lang.Override - public java.util.List getPartitionList() { - return partition_; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - @java.lang.Override - public java.util.List - getPartitionOrBuilderList() { - return partition_; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - @java.lang.Override - public int getPartitionCount() { - return partition_.size(); - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Partition getPartition(int index) { - return partition_.get(index); - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder( - int index) { - return partition_.get(index); - } - - public static final int FORMAT_FIELD_NUMBER = 2; - private com.acme.glup.MetadataProto.DataSetFormat format_; - /** - * .Acme.Glup.DataSetFormat format = 2; - * @return Whether the format field is set. - */ - @java.lang.Override - public boolean hasFormat() { - return format_ != null; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - * @return The format. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormat getFormat() { - return format_ == null ? com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance() : format_; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormatOrBuilder getFormatOrBuilder() { - return getFormat(); - } - - public static final int DATASETID_FIELD_NUMBER = 3; - private volatile java.lang.Object datasetId_; - /** - * string datasetId = 3; - * @return The datasetId. - */ - @java.lang.Override - public java.lang.String getDatasetId() { - java.lang.Object ref = datasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetId_ = s; - return s; - } - } - /** - * string datasetId = 3; - * @return The bytes for datasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDatasetIdBytes() { - java.lang.Object ref = datasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - for (int i = 0; i < partition_.size(); i++) { - output.writeMessage(1, partition_.get(i)); - } - if (format_ != null) { - output.writeMessage(2, getFormat()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, datasetId_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - for (int i = 0; i < partition_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, partition_.get(i)); - } - if (format_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getFormat()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, datasetId_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.DataSetChunk)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.DataSetChunk other = (com.acme.glup.MetadataProto.DataSetChunk) obj; - - if (!getPartitionList() - .equals(other.getPartitionList())) return false; - if (hasFormat() != other.hasFormat()) return false; - if (hasFormat()) { - if (!getFormat() - .equals(other.getFormat())) return false; - } - if (!getDatasetId() - .equals(other.getDatasetId())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (getPartitionCount() > 0) { - hash = (37 * hash) + PARTITION_FIELD_NUMBER; - hash = (53 * hash) + getPartitionList().hashCode(); - } - if (hasFormat()) { - hash = (37 * hash) + FORMAT_FIELD_NUMBER; - hash = (53 * hash) + getFormat().hashCode(); - } - hash = (37 * hash) + DATASETID_FIELD_NUMBER; - hash = (53 * hash) + getDatasetId().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSetChunk parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.DataSetChunk prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Defines a set of dataset partitions
-     * 
- * - * Protobuf type {@code Acme.Glup.DataSetChunk} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.DataSetChunk) - com.acme.glup.MetadataProto.DataSetChunkOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetChunk_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetChunk_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.DataSetChunk.class, com.acme.glup.MetadataProto.DataSetChunk.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.DataSetChunk.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getPartitionFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (partitionBuilder_ == null) { - partition_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - partitionBuilder_.clear(); - } - if (formatBuilder_ == null) { - format_ = null; - } else { - format_ = null; - formatBuilder_ = null; - } - datasetId_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetChunk_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetChunk getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.DataSetChunk.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetChunk build() { - com.acme.glup.MetadataProto.DataSetChunk result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetChunk buildPartial() { - com.acme.glup.MetadataProto.DataSetChunk result = new com.acme.glup.MetadataProto.DataSetChunk(this); - int from_bitField0_ = bitField0_; - if (partitionBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - partition_ = java.util.Collections.unmodifiableList(partition_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.partition_ = partition_; - } else { - result.partition_ = partitionBuilder_.build(); - } - if (formatBuilder_ == null) { - result.format_ = format_; - } else { - result.format_ = formatBuilder_.build(); - } - result.datasetId_ = datasetId_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.DataSetChunk) { - return mergeFrom((com.acme.glup.MetadataProto.DataSetChunk)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.DataSetChunk other) { - if (other == com.acme.glup.MetadataProto.DataSetChunk.getDefaultInstance()) return this; - if (partitionBuilder_ == null) { - if (!other.partition_.isEmpty()) { - if (partition_.isEmpty()) { - partition_ = other.partition_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensurePartitionIsMutable(); - partition_.addAll(other.partition_); - } - onChanged(); - } - } else { - if (!other.partition_.isEmpty()) { - if (partitionBuilder_.isEmpty()) { - partitionBuilder_.dispose(); - partitionBuilder_ = null; - partition_ = other.partition_; - bitField0_ = (bitField0_ & ~0x00000001); - partitionBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getPartitionFieldBuilder() : null; - } else { - partitionBuilder_.addAllMessages(other.partition_); - } - } - } - if (other.hasFormat()) { - mergeFormat(other.getFormat()); - } - if (!other.getDatasetId().isEmpty()) { - datasetId_ = other.datasetId_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.DataSetChunk parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.DataSetChunk) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.util.List partition_ = - java.util.Collections.emptyList(); - private void ensurePartitionIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - partition_ = new java.util.ArrayList(partition_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder> partitionBuilder_; - - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public java.util.List getPartitionList() { - if (partitionBuilder_ == null) { - return java.util.Collections.unmodifiableList(partition_); - } else { - return partitionBuilder_.getMessageList(); - } - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public int getPartitionCount() { - if (partitionBuilder_ == null) { - return partition_.size(); - } else { - return partitionBuilder_.getCount(); - } - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public com.acme.glup.MetadataProto.Partition getPartition(int index) { - if (partitionBuilder_ == null) { - return partition_.get(index); - } else { - return partitionBuilder_.getMessage(index); - } - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder setPartition( - int index, com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePartitionIsMutable(); - partition_.set(index, value); - onChanged(); - } else { - partitionBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder setPartition( - int index, com.acme.glup.MetadataProto.Partition.Builder builderForValue) { - if (partitionBuilder_ == null) { - ensurePartitionIsMutable(); - partition_.set(index, builderForValue.build()); - onChanged(); - } else { - partitionBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder addPartition(com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePartitionIsMutable(); - partition_.add(value); - onChanged(); - } else { - partitionBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder addPartition( - int index, com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePartitionIsMutable(); - partition_.add(index, value); - onChanged(); - } else { - partitionBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder addPartition( - com.acme.glup.MetadataProto.Partition.Builder builderForValue) { - if (partitionBuilder_ == null) { - ensurePartitionIsMutable(); - partition_.add(builderForValue.build()); - onChanged(); - } else { - partitionBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder addPartition( - int index, com.acme.glup.MetadataProto.Partition.Builder builderForValue) { - if (partitionBuilder_ == null) { - ensurePartitionIsMutable(); - partition_.add(index, builderForValue.build()); - onChanged(); - } else { - partitionBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder addAllPartition( - java.lang.Iterable values) { - if (partitionBuilder_ == null) { - ensurePartitionIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, partition_); - onChanged(); - } else { - partitionBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder clearPartition() { - if (partitionBuilder_ == null) { - partition_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - partitionBuilder_.clear(); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public Builder removePartition(int index) { - if (partitionBuilder_ == null) { - ensurePartitionIsMutable(); - partition_.remove(index); - onChanged(); - } else { - partitionBuilder_.remove(index); - } - return this; - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public com.acme.glup.MetadataProto.Partition.Builder getPartitionBuilder( - int index) { - return getPartitionFieldBuilder().getBuilder(index); - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder( - int index) { - if (partitionBuilder_ == null) { - return partition_.get(index); } else { - return partitionBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public java.util.List - getPartitionOrBuilderList() { - if (partitionBuilder_ != null) { - return partitionBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(partition_); - } - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public com.acme.glup.MetadataProto.Partition.Builder addPartitionBuilder() { - return getPartitionFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.Partition.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public com.acme.glup.MetadataProto.Partition.Builder addPartitionBuilder( - int index) { - return getPartitionFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.Partition.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.Partition partition = 1; - */ - public java.util.List - getPartitionBuilderList() { - return getPartitionFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder> - getPartitionFieldBuilder() { - if (partitionBuilder_ == null) { - partitionBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder>( - partition_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - partition_ = null; - } - return partitionBuilder_; - } - - private com.acme.glup.MetadataProto.DataSetFormat format_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.DataSetFormat, com.acme.glup.MetadataProto.DataSetFormat.Builder, com.acme.glup.MetadataProto.DataSetFormatOrBuilder> formatBuilder_; - /** - * .Acme.Glup.DataSetFormat format = 2; - * @return Whether the format field is set. - */ - public boolean hasFormat() { - return formatBuilder_ != null || format_ != null; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - * @return The format. - */ - public com.acme.glup.MetadataProto.DataSetFormat getFormat() { - if (formatBuilder_ == null) { - return format_ == null ? com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance() : format_; - } else { - return formatBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - public Builder setFormat(com.acme.glup.MetadataProto.DataSetFormat value) { - if (formatBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - format_ = value; - onChanged(); - } else { - formatBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - public Builder setFormat( - com.acme.glup.MetadataProto.DataSetFormat.Builder builderForValue) { - if (formatBuilder_ == null) { - format_ = builderForValue.build(); - onChanged(); - } else { - formatBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - public Builder mergeFormat(com.acme.glup.MetadataProto.DataSetFormat value) { - if (formatBuilder_ == null) { - if (format_ != null) { - format_ = - com.acme.glup.MetadataProto.DataSetFormat.newBuilder(format_).mergeFrom(value).buildPartial(); - } else { - format_ = value; - } - onChanged(); - } else { - formatBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - public Builder clearFormat() { - if (formatBuilder_ == null) { - format_ = null; - onChanged(); - } else { - format_ = null; - formatBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormat.Builder getFormatBuilder() { - - onChanged(); - return getFormatFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - public com.acme.glup.MetadataProto.DataSetFormatOrBuilder getFormatOrBuilder() { - if (formatBuilder_ != null) { - return formatBuilder_.getMessageOrBuilder(); - } else { - return format_ == null ? - com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance() : format_; - } - } - /** - * .Acme.Glup.DataSetFormat format = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.DataSetFormat, com.acme.glup.MetadataProto.DataSetFormat.Builder, com.acme.glup.MetadataProto.DataSetFormatOrBuilder> - getFormatFieldBuilder() { - if (formatBuilder_ == null) { - formatBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.DataSetFormat, com.acme.glup.MetadataProto.DataSetFormat.Builder, com.acme.glup.MetadataProto.DataSetFormatOrBuilder>( - getFormat(), - getParentForChildren(), - isClean()); - format_ = null; - } - return formatBuilder_; - } - - private java.lang.Object datasetId_ = ""; - /** - * string datasetId = 3; - * @return The datasetId. - */ - public java.lang.String getDatasetId() { - java.lang.Object ref = datasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string datasetId = 3; - * @return The bytes for datasetId. - */ - public com.google.protobuf.ByteString - getDatasetIdBytes() { - java.lang.Object ref = datasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string datasetId = 3; - * @param value The datasetId to set. - * @return This builder for chaining. - */ - public Builder setDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - datasetId_ = value; - onChanged(); - return this; - } - /** - * string datasetId = 3; - * @return This builder for chaining. - */ - public Builder clearDatasetId() { - - datasetId_ = getDefaultInstance().getDatasetId(); - onChanged(); - return this; - } - /** - * string datasetId = 3; - * @param value The bytes for datasetId to set. - * @return This builder for chaining. - */ - public Builder setDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - datasetId_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.DataSetChunk) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.DataSetChunk) - private static final com.acme.glup.MetadataProto.DataSetChunk DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.DataSetChunk(); - } - - public static com.acme.glup.MetadataProto.DataSetChunk getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DataSetChunk parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DataSetChunk(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetChunk getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface DataSetFormatOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.DataSetFormat) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * Location of the data.
-     * 
- * - * string path = 1; - * @return The path. - */ - java.lang.String getPath(); - /** - *
-     * Location of the data.
-     * 
- * - * string path = 1; - * @return The bytes for path. - */ - com.google.protobuf.ByteString - getPathBytes(); - - /** - *
-     * File format used to store records.
-     * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return The enum numeric value on the wire for fileFormat. - */ - int getFileFormatValue(); - /** - *
-     * File format used to store records.
-     * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return The fileFormat. - */ - com.acme.glup.MetadataProto.HDFSDataFormat getFileFormat(); - - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The enum numeric value on the wire for partitionScheme. - */ - int getPartitionSchemeValue(); - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The partitionScheme. - */ - com.acme.glup.MetadataProto.PartitionScheme getPartitionScheme(); - - /** - *
-     * The minimum defined partition for this format inclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - * @return Whether the startPartition field is set. - */ - boolean hasStartPartition(); - /** - *
-     * The minimum defined partition for this format inclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - * @return The startPartition. - */ - com.acme.glup.MetadataProto.HDFSPartition getStartPartition(); - /** - *
-     * The minimum defined partition for this format inclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - com.acme.glup.MetadataProto.HDFSPartitionOrBuilder getStartPartitionOrBuilder(); - - /** - *
-     * The maximum defined partition for this format exclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - * @return Whether the endPartition field is set. - */ - boolean hasEndPartition(); - /** - *
-     * The maximum defined partition for this format exclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - * @return The endPartition. - */ - com.acme.glup.MetadataProto.HDFSPartition getEndPartition(); - /** - *
-     * The maximum defined partition for this format exclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - com.acme.glup.MetadataProto.HDFSPartitionOrBuilder getEndPartitionOrBuilder(); - - /** - *
-     * Retention in days
-     * 
- * - * int32 retention_days = 7; - * @return The retentionDays. - */ - int getRetentionDays(); - - /** - *
-     * Priority, bigger number means higher priority, 0 as the lowest, used to decide which format to use when several are available.
-     * 
- * - * int32 priority = 8; - * @return The priority. - */ - int getPriority(); - - /** - *
-     * Label, should be unique across all formats in a same dataset.
-     * 
- * - * string label = 9; - * @return The label. - */ - java.lang.String getLabel(); - /** - *
-     * Label, should be unique across all formats in a same dataset.
-     * 
- * - * string label = 9; - * @return The bytes for label. - */ - com.google.protobuf.ByteString - getLabelBytes(); - - /** - *
-     *Monitoring level, if not set DEFAULT will be applied
-     * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return The enum numeric value on the wire for monitoringLevel. - */ - int getMonitoringLevelValue(); - /** - *
-     *Monitoring level, if not set DEFAULT will be applied
-     * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return The monitoringLevel. - */ - com.acme.glup.MetadataProto.MonitoringLevel getMonitoringLevel(); - } - /** - *
-   * Defines a dataset format.
-   * 
- * - * Protobuf type {@code Acme.Glup.DataSetFormat} - */ - public static final class DataSetFormat extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.DataSetFormat) - DataSetFormatOrBuilder { - private static final long serialVersionUID = 0L; - // Use DataSetFormat.newBuilder() to construct. - private DataSetFormat(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DataSetFormat() { - path_ = ""; - fileFormat_ = 0; - partitionScheme_ = 0; - label_ = ""; - monitoringLevel_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DataSetFormat(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DataSetFormat( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - path_ = s; - break; - } - case 16: { - int rawValue = input.readEnum(); - - fileFormat_ = rawValue; - break; - } - case 24: { - int rawValue = input.readEnum(); - - partitionScheme_ = rawValue; - break; - } - case 34: { - com.acme.glup.MetadataProto.HDFSPartition.Builder subBuilder = null; - if (startPartition_ != null) { - subBuilder = startPartition_.toBuilder(); - } - startPartition_ = input.readMessage(com.acme.glup.MetadataProto.HDFSPartition.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(startPartition_); - startPartition_ = subBuilder.buildPartial(); - } - - break; - } - case 42: { - com.acme.glup.MetadataProto.HDFSPartition.Builder subBuilder = null; - if (endPartition_ != null) { - subBuilder = endPartition_.toBuilder(); - } - endPartition_ = input.readMessage(com.acme.glup.MetadataProto.HDFSPartition.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(endPartition_); - endPartition_ = subBuilder.buildPartial(); - } - - break; - } - case 56: { - - retentionDays_ = input.readInt32(); - break; - } - case 64: { - - priority_ = input.readInt32(); - break; - } - case 74: { - java.lang.String s = input.readStringRequireUtf8(); - - label_ = s; - break; - } - case 80: { - int rawValue = input.readEnum(); - - monitoringLevel_ = rawValue; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetFormat_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetFormat_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.DataSetFormat.class, com.acme.glup.MetadataProto.DataSetFormat.Builder.class); - } - - public static final int PATH_FIELD_NUMBER = 1; - private volatile java.lang.Object path_; - /** - *
-     * Location of the data.
-     * 
- * - * string path = 1; - * @return The path. - */ - @java.lang.Override - public java.lang.String getPath() { - java.lang.Object ref = path_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - path_ = s; - return s; - } - } - /** - *
-     * Location of the data.
-     * 
- * - * string path = 1; - * @return The bytes for path. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getPathBytes() { - java.lang.Object ref = path_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - path_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int FILE_FORMAT_FIELD_NUMBER = 2; - private int fileFormat_; - /** - *
-     * File format used to store records.
-     * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return The enum numeric value on the wire for fileFormat. - */ - @java.lang.Override public int getFileFormatValue() { - return fileFormat_; - } - /** - *
-     * File format used to store records.
-     * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return The fileFormat. - */ - @java.lang.Override public com.acme.glup.MetadataProto.HDFSDataFormat getFileFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(fileFormat_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - - public static final int PARTITION_SCHEME_FIELD_NUMBER = 3; - private int partitionScheme_; - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The enum numeric value on the wire for partitionScheme. - */ - @java.lang.Override public int getPartitionSchemeValue() { - return partitionScheme_; - } - /** - *
-     * Partition scheme used to store data inside the path.
-     * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The partitionScheme. - */ - @java.lang.Override public com.acme.glup.MetadataProto.PartitionScheme getPartitionScheme() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitionScheme_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - - public static final int START_PARTITION_FIELD_NUMBER = 4; - private com.acme.glup.MetadataProto.HDFSPartition startPartition_; - /** - *
-     * The minimum defined partition for this format inclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - * @return Whether the startPartition field is set. - */ - @java.lang.Override - public boolean hasStartPartition() { - return startPartition_ != null; - } - /** - *
-     * The minimum defined partition for this format inclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - * @return The startPartition. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartition getStartPartition() { - return startPartition_ == null ? com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance() : startPartition_; - } - /** - *
-     * The minimum defined partition for this format inclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartitionOrBuilder getStartPartitionOrBuilder() { - return getStartPartition(); - } - - public static final int END_PARTITION_FIELD_NUMBER = 5; - private com.acme.glup.MetadataProto.HDFSPartition endPartition_; - /** - *
-     * The maximum defined partition for this format exclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - * @return Whether the endPartition field is set. - */ - @java.lang.Override - public boolean hasEndPartition() { - return endPartition_ != null; - } - /** - *
-     * The maximum defined partition for this format exclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - * @return The endPartition. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartition getEndPartition() { - return endPartition_ == null ? com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance() : endPartition_; - } - /** - *
-     * The maximum defined partition for this format exclusive.
-     * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartitionOrBuilder getEndPartitionOrBuilder() { - return getEndPartition(); - } - - public static final int RETENTION_DAYS_FIELD_NUMBER = 7; - private int retentionDays_; - /** - *
-     * Retention in days
-     * 
- * - * int32 retention_days = 7; - * @return The retentionDays. - */ - @java.lang.Override - public int getRetentionDays() { - return retentionDays_; - } - - public static final int PRIORITY_FIELD_NUMBER = 8; - private int priority_; - /** - *
-     * Priority, bigger number means higher priority, 0 as the lowest, used to decide which format to use when several are available.
-     * 
- * - * int32 priority = 8; - * @return The priority. - */ - @java.lang.Override - public int getPriority() { - return priority_; - } - - public static final int LABEL_FIELD_NUMBER = 9; - private volatile java.lang.Object label_; - /** - *
-     * Label, should be unique across all formats in a same dataset.
-     * 
- * - * string label = 9; - * @return The label. - */ - @java.lang.Override - public java.lang.String getLabel() { - java.lang.Object ref = label_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - label_ = s; - return s; - } - } - /** - *
-     * Label, should be unique across all formats in a same dataset.
-     * 
- * - * string label = 9; - * @return The bytes for label. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getLabelBytes() { - java.lang.Object ref = label_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - label_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int MONITORING_LEVEL_FIELD_NUMBER = 10; - private int monitoringLevel_; - /** - *
-     *Monitoring level, if not set DEFAULT will be applied
-     * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return The enum numeric value on the wire for monitoringLevel. - */ - @java.lang.Override public int getMonitoringLevelValue() { - return monitoringLevel_; - } - /** - *
-     *Monitoring level, if not set DEFAULT will be applied
-     * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return The monitoringLevel. - */ - @java.lang.Override public com.acme.glup.MetadataProto.MonitoringLevel getMonitoringLevel() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.MonitoringLevel result = com.acme.glup.MetadataProto.MonitoringLevel.valueOf(monitoringLevel_); - return result == null ? com.acme.glup.MetadataProto.MonitoringLevel.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, path_); - } - if (fileFormat_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - output.writeEnum(2, fileFormat_); - } - if (partitionScheme_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - output.writeEnum(3, partitionScheme_); - } - if (startPartition_ != null) { - output.writeMessage(4, getStartPartition()); - } - if (endPartition_ != null) { - output.writeMessage(5, getEndPartition()); - } - if (retentionDays_ != 0) { - output.writeInt32(7, retentionDays_); - } - if (priority_ != 0) { - output.writeInt32(8, priority_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(label_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 9, label_); - } - if (monitoringLevel_ != com.acme.glup.MetadataProto.MonitoringLevel.DEFAULT.getNumber()) { - output.writeEnum(10, monitoringLevel_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, path_); - } - if (fileFormat_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, fileFormat_); - } - if (partitionScheme_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, partitionScheme_); - } - if (startPartition_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, getStartPartition()); - } - if (endPartition_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(5, getEndPartition()); - } - if (retentionDays_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(7, retentionDays_); - } - if (priority_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(8, priority_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(label_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, label_); - } - if (monitoringLevel_ != com.acme.glup.MetadataProto.MonitoringLevel.DEFAULT.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(10, monitoringLevel_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.DataSetFormat)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.DataSetFormat other = (com.acme.glup.MetadataProto.DataSetFormat) obj; - - if (!getPath() - .equals(other.getPath())) return false; - if (fileFormat_ != other.fileFormat_) return false; - if (partitionScheme_ != other.partitionScheme_) return false; - if (hasStartPartition() != other.hasStartPartition()) return false; - if (hasStartPartition()) { - if (!getStartPartition() - .equals(other.getStartPartition())) return false; - } - if (hasEndPartition() != other.hasEndPartition()) return false; - if (hasEndPartition()) { - if (!getEndPartition() - .equals(other.getEndPartition())) return false; - } - if (getRetentionDays() - != other.getRetentionDays()) return false; - if (getPriority() - != other.getPriority()) return false; - if (!getLabel() - .equals(other.getLabel())) return false; - if (monitoringLevel_ != other.monitoringLevel_) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + PATH_FIELD_NUMBER; - hash = (53 * hash) + getPath().hashCode(); - hash = (37 * hash) + FILE_FORMAT_FIELD_NUMBER; - hash = (53 * hash) + fileFormat_; - hash = (37 * hash) + PARTITION_SCHEME_FIELD_NUMBER; - hash = (53 * hash) + partitionScheme_; - if (hasStartPartition()) { - hash = (37 * hash) + START_PARTITION_FIELD_NUMBER; - hash = (53 * hash) + getStartPartition().hashCode(); - } - if (hasEndPartition()) { - hash = (37 * hash) + END_PARTITION_FIELD_NUMBER; - hash = (53 * hash) + getEndPartition().hashCode(); - } - hash = (37 * hash) + RETENTION_DAYS_FIELD_NUMBER; - hash = (53 * hash) + getRetentionDays(); - hash = (37 * hash) + PRIORITY_FIELD_NUMBER; - hash = (53 * hash) + getPriority(); - hash = (37 * hash) + LABEL_FIELD_NUMBER; - hash = (53 * hash) + getLabel().hashCode(); - hash = (37 * hash) + MONITORING_LEVEL_FIELD_NUMBER; - hash = (53 * hash) + monitoringLevel_; - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.DataSetFormat parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.DataSetFormat prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Defines a dataset format.
-     * 
- * - * Protobuf type {@code Acme.Glup.DataSetFormat} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.DataSetFormat) - com.acme.glup.MetadataProto.DataSetFormatOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetFormat_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetFormat_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.DataSetFormat.class, com.acme.glup.MetadataProto.DataSetFormat.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.DataSetFormat.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - path_ = ""; - - fileFormat_ = 0; - - partitionScheme_ = 0; - - if (startPartitionBuilder_ == null) { - startPartition_ = null; - } else { - startPartition_ = null; - startPartitionBuilder_ = null; - } - if (endPartitionBuilder_ == null) { - endPartition_ = null; - } else { - endPartition_ = null; - endPartitionBuilder_ = null; - } - retentionDays_ = 0; - - priority_ = 0; - - label_ = ""; - - monitoringLevel_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_DataSetFormat_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormat getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormat build() { - com.acme.glup.MetadataProto.DataSetFormat result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormat buildPartial() { - com.acme.glup.MetadataProto.DataSetFormat result = new com.acme.glup.MetadataProto.DataSetFormat(this); - result.path_ = path_; - result.fileFormat_ = fileFormat_; - result.partitionScheme_ = partitionScheme_; - if (startPartitionBuilder_ == null) { - result.startPartition_ = startPartition_; - } else { - result.startPartition_ = startPartitionBuilder_.build(); - } - if (endPartitionBuilder_ == null) { - result.endPartition_ = endPartition_; - } else { - result.endPartition_ = endPartitionBuilder_.build(); - } - result.retentionDays_ = retentionDays_; - result.priority_ = priority_; - result.label_ = label_; - result.monitoringLevel_ = monitoringLevel_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.DataSetFormat) { - return mergeFrom((com.acme.glup.MetadataProto.DataSetFormat)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.DataSetFormat other) { - if (other == com.acme.glup.MetadataProto.DataSetFormat.getDefaultInstance()) return this; - if (!other.getPath().isEmpty()) { - path_ = other.path_; - onChanged(); - } - if (other.fileFormat_ != 0) { - setFileFormatValue(other.getFileFormatValue()); - } - if (other.partitionScheme_ != 0) { - setPartitionSchemeValue(other.getPartitionSchemeValue()); - } - if (other.hasStartPartition()) { - mergeStartPartition(other.getStartPartition()); - } - if (other.hasEndPartition()) { - mergeEndPartition(other.getEndPartition()); - } - if (other.getRetentionDays() != 0) { - setRetentionDays(other.getRetentionDays()); - } - if (other.getPriority() != 0) { - setPriority(other.getPriority()); - } - if (!other.getLabel().isEmpty()) { - label_ = other.label_; - onChanged(); - } - if (other.monitoringLevel_ != 0) { - setMonitoringLevelValue(other.getMonitoringLevelValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.DataSetFormat parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.DataSetFormat) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object path_ = ""; - /** - *
-       * Location of the data.
-       * 
- * - * string path = 1; - * @return The path. - */ - public java.lang.String getPath() { - java.lang.Object ref = path_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - path_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * Location of the data.
-       * 
- * - * string path = 1; - * @return The bytes for path. - */ - public com.google.protobuf.ByteString - getPathBytes() { - java.lang.Object ref = path_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - path_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * Location of the data.
-       * 
- * - * string path = 1; - * @param value The path to set. - * @return This builder for chaining. - */ - public Builder setPath( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - path_ = value; - onChanged(); - return this; - } - /** - *
-       * Location of the data.
-       * 
- * - * string path = 1; - * @return This builder for chaining. - */ - public Builder clearPath() { - - path_ = getDefaultInstance().getPath(); - onChanged(); - return this; - } - /** - *
-       * Location of the data.
-       * 
- * - * string path = 1; - * @param value The bytes for path to set. - * @return This builder for chaining. - */ - public Builder setPathBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - path_ = value; - onChanged(); - return this; - } - - private int fileFormat_ = 0; - /** - *
-       * File format used to store records.
-       * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return The enum numeric value on the wire for fileFormat. - */ - @java.lang.Override public int getFileFormatValue() { - return fileFormat_; - } - /** - *
-       * File format used to store records.
-       * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @param value The enum numeric value on the wire for fileFormat to set. - * @return This builder for chaining. - */ - public Builder setFileFormatValue(int value) { - - fileFormat_ = value; - onChanged(); - return this; - } - /** - *
-       * File format used to store records.
-       * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return The fileFormat. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSDataFormat getFileFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(fileFormat_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - /** - *
-       * File format used to store records.
-       * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @param value The fileFormat to set. - * @return This builder for chaining. - */ - public Builder setFileFormat(com.acme.glup.MetadataProto.HDFSDataFormat value) { - if (value == null) { - throw new NullPointerException(); - } - - fileFormat_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * File format used to store records.
-       * 
- * - * .Acme.Glup.HDFSDataFormat file_format = 2; - * @return This builder for chaining. - */ - public Builder clearFileFormat() { - - fileFormat_ = 0; - onChanged(); - return this; - } - - private int partitionScheme_ = 0; - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The enum numeric value on the wire for partitionScheme. - */ - @java.lang.Override public int getPartitionSchemeValue() { - return partitionScheme_; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @param value The enum numeric value on the wire for partitionScheme to set. - * @return This builder for chaining. - */ - public Builder setPartitionSchemeValue(int value) { - - partitionScheme_ = value; - onChanged(); - return this; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return The partitionScheme. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionScheme getPartitionScheme() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitionScheme_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @param value The partitionScheme to set. - * @return This builder for chaining. - */ - public Builder setPartitionScheme(com.acme.glup.MetadataProto.PartitionScheme value) { - if (value == null) { - throw new NullPointerException(); - } - - partitionScheme_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * Partition scheme used to store data inside the path.
-       * 
- * - * .Acme.Glup.PartitionScheme partition_scheme = 3; - * @return This builder for chaining. - */ - public Builder clearPartitionScheme() { - - partitionScheme_ = 0; - onChanged(); - return this; - } - - private com.acme.glup.MetadataProto.HDFSPartition startPartition_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSPartition, com.acme.glup.MetadataProto.HDFSPartition.Builder, com.acme.glup.MetadataProto.HDFSPartitionOrBuilder> startPartitionBuilder_; - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - * @return Whether the startPartition field is set. - */ - public boolean hasStartPartition() { - return startPartitionBuilder_ != null || startPartition_ != null; - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - * @return The startPartition. - */ - public com.acme.glup.MetadataProto.HDFSPartition getStartPartition() { - if (startPartitionBuilder_ == null) { - return startPartition_ == null ? com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance() : startPartition_; - } else { - return startPartitionBuilder_.getMessage(); - } - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - public Builder setStartPartition(com.acme.glup.MetadataProto.HDFSPartition value) { - if (startPartitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - startPartition_ = value; - onChanged(); - } else { - startPartitionBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - public Builder setStartPartition( - com.acme.glup.MetadataProto.HDFSPartition.Builder builderForValue) { - if (startPartitionBuilder_ == null) { - startPartition_ = builderForValue.build(); - onChanged(); - } else { - startPartitionBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - public Builder mergeStartPartition(com.acme.glup.MetadataProto.HDFSPartition value) { - if (startPartitionBuilder_ == null) { - if (startPartition_ != null) { - startPartition_ = - com.acme.glup.MetadataProto.HDFSPartition.newBuilder(startPartition_).mergeFrom(value).buildPartial(); - } else { - startPartition_ = value; - } - onChanged(); - } else { - startPartitionBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - public Builder clearStartPartition() { - if (startPartitionBuilder_ == null) { - startPartition_ = null; - onChanged(); - } else { - startPartition_ = null; - startPartitionBuilder_ = null; - } - - return this; - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - public com.acme.glup.MetadataProto.HDFSPartition.Builder getStartPartitionBuilder() { - - onChanged(); - return getStartPartitionFieldBuilder().getBuilder(); - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - public com.acme.glup.MetadataProto.HDFSPartitionOrBuilder getStartPartitionOrBuilder() { - if (startPartitionBuilder_ != null) { - return startPartitionBuilder_.getMessageOrBuilder(); - } else { - return startPartition_ == null ? - com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance() : startPartition_; - } - } - /** - *
-       * The minimum defined partition for this format inclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition start_partition = 4; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSPartition, com.acme.glup.MetadataProto.HDFSPartition.Builder, com.acme.glup.MetadataProto.HDFSPartitionOrBuilder> - getStartPartitionFieldBuilder() { - if (startPartitionBuilder_ == null) { - startPartitionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSPartition, com.acme.glup.MetadataProto.HDFSPartition.Builder, com.acme.glup.MetadataProto.HDFSPartitionOrBuilder>( - getStartPartition(), - getParentForChildren(), - isClean()); - startPartition_ = null; - } - return startPartitionBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSPartition endPartition_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSPartition, com.acme.glup.MetadataProto.HDFSPartition.Builder, com.acme.glup.MetadataProto.HDFSPartitionOrBuilder> endPartitionBuilder_; - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - * @return Whether the endPartition field is set. - */ - public boolean hasEndPartition() { - return endPartitionBuilder_ != null || endPartition_ != null; - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - * @return The endPartition. - */ - public com.acme.glup.MetadataProto.HDFSPartition getEndPartition() { - if (endPartitionBuilder_ == null) { - return endPartition_ == null ? com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance() : endPartition_; - } else { - return endPartitionBuilder_.getMessage(); - } - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - public Builder setEndPartition(com.acme.glup.MetadataProto.HDFSPartition value) { - if (endPartitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - endPartition_ = value; - onChanged(); - } else { - endPartitionBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - public Builder setEndPartition( - com.acme.glup.MetadataProto.HDFSPartition.Builder builderForValue) { - if (endPartitionBuilder_ == null) { - endPartition_ = builderForValue.build(); - onChanged(); - } else { - endPartitionBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - public Builder mergeEndPartition(com.acme.glup.MetadataProto.HDFSPartition value) { - if (endPartitionBuilder_ == null) { - if (endPartition_ != null) { - endPartition_ = - com.acme.glup.MetadataProto.HDFSPartition.newBuilder(endPartition_).mergeFrom(value).buildPartial(); - } else { - endPartition_ = value; - } - onChanged(); - } else { - endPartitionBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - public Builder clearEndPartition() { - if (endPartitionBuilder_ == null) { - endPartition_ = null; - onChanged(); - } else { - endPartition_ = null; - endPartitionBuilder_ = null; - } - - return this; - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - public com.acme.glup.MetadataProto.HDFSPartition.Builder getEndPartitionBuilder() { - - onChanged(); - return getEndPartitionFieldBuilder().getBuilder(); - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - public com.acme.glup.MetadataProto.HDFSPartitionOrBuilder getEndPartitionOrBuilder() { - if (endPartitionBuilder_ != null) { - return endPartitionBuilder_.getMessageOrBuilder(); - } else { - return endPartition_ == null ? - com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance() : endPartition_; - } - } - /** - *
-       * The maximum defined partition for this format exclusive.
-       * 
- * - * .Acme.Glup.HDFSPartition end_partition = 5; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSPartition, com.acme.glup.MetadataProto.HDFSPartition.Builder, com.acme.glup.MetadataProto.HDFSPartitionOrBuilder> - getEndPartitionFieldBuilder() { - if (endPartitionBuilder_ == null) { - endPartitionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSPartition, com.acme.glup.MetadataProto.HDFSPartition.Builder, com.acme.glup.MetadataProto.HDFSPartitionOrBuilder>( - getEndPartition(), - getParentForChildren(), - isClean()); - endPartition_ = null; - } - return endPartitionBuilder_; - } - - private int retentionDays_ ; - /** - *
-       * Retention in days
-       * 
- * - * int32 retention_days = 7; - * @return The retentionDays. - */ - @java.lang.Override - public int getRetentionDays() { - return retentionDays_; - } - /** - *
-       * Retention in days
-       * 
- * - * int32 retention_days = 7; - * @param value The retentionDays to set. - * @return This builder for chaining. - */ - public Builder setRetentionDays(int value) { - - retentionDays_ = value; - onChanged(); - return this; - } - /** - *
-       * Retention in days
-       * 
- * - * int32 retention_days = 7; - * @return This builder for chaining. - */ - public Builder clearRetentionDays() { - - retentionDays_ = 0; - onChanged(); - return this; - } - - private int priority_ ; - /** - *
-       * Priority, bigger number means higher priority, 0 as the lowest, used to decide which format to use when several are available.
-       * 
- * - * int32 priority = 8; - * @return The priority. - */ - @java.lang.Override - public int getPriority() { - return priority_; - } - /** - *
-       * Priority, bigger number means higher priority, 0 as the lowest, used to decide which format to use when several are available.
-       * 
- * - * int32 priority = 8; - * @param value The priority to set. - * @return This builder for chaining. - */ - public Builder setPriority(int value) { - - priority_ = value; - onChanged(); - return this; - } - /** - *
-       * Priority, bigger number means higher priority, 0 as the lowest, used to decide which format to use when several are available.
-       * 
- * - * int32 priority = 8; - * @return This builder for chaining. - */ - public Builder clearPriority() { - - priority_ = 0; - onChanged(); - return this; - } - - private java.lang.Object label_ = ""; - /** - *
-       * Label, should be unique across all formats in a same dataset.
-       * 
- * - * string label = 9; - * @return The label. - */ - public java.lang.String getLabel() { - java.lang.Object ref = label_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - label_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * Label, should be unique across all formats in a same dataset.
-       * 
- * - * string label = 9; - * @return The bytes for label. - */ - public com.google.protobuf.ByteString - getLabelBytes() { - java.lang.Object ref = label_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - label_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * Label, should be unique across all formats in a same dataset.
-       * 
- * - * string label = 9; - * @param value The label to set. - * @return This builder for chaining. - */ - public Builder setLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - label_ = value; - onChanged(); - return this; - } - /** - *
-       * Label, should be unique across all formats in a same dataset.
-       * 
- * - * string label = 9; - * @return This builder for chaining. - */ - public Builder clearLabel() { - - label_ = getDefaultInstance().getLabel(); - onChanged(); - return this; - } - /** - *
-       * Label, should be unique across all formats in a same dataset.
-       * 
- * - * string label = 9; - * @param value The bytes for label to set. - * @return This builder for chaining. - */ - public Builder setLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - label_ = value; - onChanged(); - return this; - } - - private int monitoringLevel_ = 0; - /** - *
-       *Monitoring level, if not set DEFAULT will be applied
-       * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return The enum numeric value on the wire for monitoringLevel. - */ - @java.lang.Override public int getMonitoringLevelValue() { - return monitoringLevel_; - } - /** - *
-       *Monitoring level, if not set DEFAULT will be applied
-       * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @param value The enum numeric value on the wire for monitoringLevel to set. - * @return This builder for chaining. - */ - public Builder setMonitoringLevelValue(int value) { - - monitoringLevel_ = value; - onChanged(); - return this; - } - /** - *
-       *Monitoring level, if not set DEFAULT will be applied
-       * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return The monitoringLevel. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.MonitoringLevel getMonitoringLevel() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.MonitoringLevel result = com.acme.glup.MetadataProto.MonitoringLevel.valueOf(monitoringLevel_); - return result == null ? com.acme.glup.MetadataProto.MonitoringLevel.UNRECOGNIZED : result; - } - /** - *
-       *Monitoring level, if not set DEFAULT will be applied
-       * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @param value The monitoringLevel to set. - * @return This builder for chaining. - */ - public Builder setMonitoringLevel(com.acme.glup.MetadataProto.MonitoringLevel value) { - if (value == null) { - throw new NullPointerException(); - } - - monitoringLevel_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       *Monitoring level, if not set DEFAULT will be applied
-       * 
- * - * .Acme.Glup.MonitoringLevel monitoring_level = 10; - * @return This builder for chaining. - */ - public Builder clearMonitoringLevel() { - - monitoringLevel_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.DataSetFormat) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.DataSetFormat) - private static final com.acme.glup.MetadataProto.DataSetFormat DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.DataSetFormat(); - } - - public static com.acme.glup.MetadataProto.DataSetFormat getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DataSetFormat parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DataSetFormat(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetFormat getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface HDFSOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions) - com.google.protobuf.MessageOrBuilder { - - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - java.util.List - getImportList(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions getImport(int index); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - int getImportCount(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - java.util.List - getImportOrBuilderList(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder getImportOrBuilder( - int index); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions} - */ - public static final class HDFSOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions) - HDFSOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use HDFSOptions.newBuilder() to construct. - private HDFSOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private HDFSOptions() { - import_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new HDFSOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private HDFSOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 26: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - import_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - import_.add( - input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.parser(), extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - import_ = java.util.Collections.unmodifiableList(import_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.class, com.acme.glup.MetadataProto.HDFSOptions.Builder.class); - } - - public interface ImportOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-       * location on hdfs
-       * 
- * - * string owner = 1; - * @return The owner. - */ - java.lang.String getOwner(); - /** - *
-       * location on hdfs
-       * 
- * - * string owner = 1; - * @return The bytes for owner. - */ - com.google.protobuf.ByteString - getOwnerBytes(); - - /** - * string name = 2; - * @return The name. - */ - java.lang.String getName(); - /** - * string name = 2; - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return The enum numeric value on the wire for partitioning. - */ - int getPartitioningValue(); - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return The partitioning. - */ - com.acme.glup.MetadataProto.PartitionScheme getPartitioning(); - - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return The enum numeric value on the wire for format. - */ - int getFormatValue(); - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return The format. - */ - com.acme.glup.MetadataProto.HDFSDataFormat getFormat(); - - /** - *
-       * if set to true, imported data won't be readable from other users
-       * (permission o-rwx)
-       * 
- * - * bool private = 6; - * @return The private. - */ - boolean getPrivate(); - - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - java.util.List - getGeneratorList(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator getGenerator(int index); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - int getGeneratorCount(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - java.util.List - getGeneratorOrBuilderList(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder getGeneratorOrBuilder( - int index); - - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - java.util.List - getViewList(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View getView(int index); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - int getViewCount(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - java.util.List - getViewOrBuilderList(); - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder getViewOrBuilder( - int index); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions} - */ - public static final class ImportOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions) - ImportOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use ImportOptions.newBuilder() to construct. - private ImportOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ImportOptions() { - owner_ = ""; - name_ = ""; - partitioning_ = 0; - format_ = 0; - generator_ = java.util.Collections.emptyList(); - view_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ImportOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ImportOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - owner_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - name_ = s; - break; - } - case 32: { - int rawValue = input.readEnum(); - - partitioning_ = rawValue; - break; - } - case 40: { - int rawValue = input.readEnum(); - - format_ = rawValue; - break; - } - case 48: { - - private_ = input.readBool(); - break; - } - case 90: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - generator_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - generator_.add( - input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.parser(), extensionRegistry)); - break; - } - case 98: { - if (!((mutable_bitField0_ & 0x00000002) != 0)) { - view_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000002; - } - view_.add( - input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.parser(), extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - generator_ = java.util.Collections.unmodifiableList(generator_); - } - if (((mutable_bitField0_ & 0x00000002) != 0)) { - view_ = java.util.Collections.unmodifiableList(view_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder.class); - } - - public interface ViewOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.View) - com.google.protobuf.MessageOrBuilder { - - /** - *
-         * define table mapping in hive
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - * @return Whether the hive field is set. - */ - boolean hasHive(); - /** - *
-         * define table mapping in hive
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - * @return The hive. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions getHive(); - /** - *
-         * define table mapping in hive
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder getHiveOrBuilder(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.View} - */ - public static final class View extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.View) - ViewOrBuilder { - private static final long serialVersionUID = 0L; - // Use View.newBuilder() to construct. - private View(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private View() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new View(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private View( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 82: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder subBuilder = null; - if (hive_ != null) { - subBuilder = hive_.toBuilder(); - } - hive_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(hive_); - hive_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder.class); - } - - public interface HiveOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * if not provided it will default to the glup partition_scheme
-           * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return The enum numeric value on the wire for partitioning. - */ - int getPartitioningValue(); - /** - *
-           * if not provided it will default to the glup partition_scheme
-           * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return The partitioning. - */ - com.acme.glup.MetadataProto.PartitionScheme getPartitioning(); - } - /** - *
-         * Defines a table view of a surrounding hdfs import into hive.
-         * All other settings (owner, namespace, name) are already
-         * in the surrounding block.
-         * 
- * - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions} - */ - public static final class HiveOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions) - HiveOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use HiveOptions.newBuilder() to construct. - private HiveOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private HiveOptions() { - partitioning_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new HiveOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private HiveOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 24: { - int rawValue = input.readEnum(); - - partitioning_ = rawValue; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder.class); - } - - public static final int PARTITIONING_FIELD_NUMBER = 3; - private int partitioning_; - /** - *
-           * if not provided it will default to the glup partition_scheme
-           * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return The enum numeric value on the wire for partitioning. - */ - @java.lang.Override public int getPartitioningValue() { - return partitioning_; - } - /** - *
-           * if not provided it will default to the glup partition_scheme
-           * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return The partitioning. - */ - @java.lang.Override public com.acme.glup.MetadataProto.PartitionScheme getPartitioning() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitioning_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (partitioning_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - output.writeEnum(3, partitioning_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (partitioning_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, partitioning_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions) obj; - - if (partitioning_ != other.partitioning_) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + PARTITIONING_FIELD_NUMBER; - hash = (53 * hash) + partitioning_; - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-           * Defines a table view of a surrounding hdfs import into hive.
-           * All other settings (owner, namespace, name) are already
-           * in the surrounding block.
-           * 
- * - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - partitioning_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions(this); - result.partitioning_ = partitioning_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.getDefaultInstance()) return this; - if (other.partitioning_ != 0) { - setPartitioningValue(other.getPartitioningValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int partitioning_ = 0; - /** - *
-             * if not provided it will default to the glup partition_scheme
-             * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return The enum numeric value on the wire for partitioning. - */ - @java.lang.Override public int getPartitioningValue() { - return partitioning_; - } - /** - *
-             * if not provided it will default to the glup partition_scheme
-             * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @param value The enum numeric value on the wire for partitioning to set. - * @return This builder for chaining. - */ - public Builder setPartitioningValue(int value) { - - partitioning_ = value; - onChanged(); - return this; - } - /** - *
-             * if not provided it will default to the glup partition_scheme
-             * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return The partitioning. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionScheme getPartitioning() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitioning_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - /** - *
-             * if not provided it will default to the glup partition_scheme
-             * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @param value The partitioning to set. - * @return This builder for chaining. - */ - public Builder setPartitioning(com.acme.glup.MetadataProto.PartitionScheme value) { - if (value == null) { - throw new NullPointerException(); - } - - partitioning_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-             * if not provided it will default to the glup partition_scheme
-             * 
- * - * .Acme.Glup.PartitionScheme partitioning = 3; - * @return This builder for chaining. - */ - public Builder clearPartitioning() { - - partitioning_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public HiveOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new HiveOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int HIVE_FIELD_NUMBER = 10; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions hive_; - /** - *
-         * define table mapping in hive
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - * @return Whether the hive field is set. - */ - @java.lang.Override - public boolean hasHive() { - return hive_ != null; - } - /** - *
-         * define table mapping in hive
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - * @return The hive. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions getHive() { - return hive_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.getDefaultInstance() : hive_; - } - /** - *
-         * define table mapping in hive
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder getHiveOrBuilder() { - return getHive(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (hive_ != null) { - output.writeMessage(10, getHive()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (hive_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(10, getHive()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View) obj; - - if (hasHive() != other.hasHive()) return false; - if (hasHive()) { - if (!getHive() - .equals(other.getHive())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasHive()) { - hash = (37 * hash) + HIVE_FIELD_NUMBER; - hash = (53 * hash) + getHive().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.View} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.View) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (hiveBuilder_ == null) { - hive_ = null; - } else { - hive_ = null; - hiveBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View(this); - if (hiveBuilder_ == null) { - result.hive_ = hive_; - } else { - result.hive_ = hiveBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.getDefaultInstance()) return this; - if (other.hasHive()) { - mergeHive(other.getHive()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions hive_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder> hiveBuilder_; - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - * @return Whether the hive field is set. - */ - public boolean hasHive() { - return hiveBuilder_ != null || hive_ != null; - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - * @return The hive. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions getHive() { - if (hiveBuilder_ == null) { - return hive_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.getDefaultInstance() : hive_; - } else { - return hiveBuilder_.getMessage(); - } - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - public Builder setHive(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions value) { - if (hiveBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - hive_ = value; - onChanged(); - } else { - hiveBuilder_.setMessage(value); - } - - return this; - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - public Builder setHive( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder builderForValue) { - if (hiveBuilder_ == null) { - hive_ = builderForValue.build(); - onChanged(); - } else { - hiveBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - public Builder mergeHive(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions value) { - if (hiveBuilder_ == null) { - if (hive_ != null) { - hive_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.newBuilder(hive_).mergeFrom(value).buildPartial(); - } else { - hive_ = value; - } - onChanged(); - } else { - hiveBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - public Builder clearHive() { - if (hiveBuilder_ == null) { - hive_ = null; - onChanged(); - } else { - hive_ = null; - hiveBuilder_ = null; - } - - return this; - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder getHiveBuilder() { - - onChanged(); - return getHiveFieldBuilder().getBuilder(); - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder getHiveOrBuilder() { - if (hiveBuilder_ != null) { - return hiveBuilder_.getMessageOrBuilder(); - } else { - return hive_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.getDefaultInstance() : hive_; - } - } - /** - *
-           * define table mapping in hive
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.View.HiveOptions hive = 10; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder> - getHiveFieldBuilder() { - if (hiveBuilder_ == null) { - hiveBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.HiveOptionsOrBuilder>( - getHive(), - getParentForChildren(), - isClean()); - hive_ = null; - } - return hiveBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.View) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.View) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public View parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new View(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface GeneratorOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator) - com.google.protobuf.MessageOrBuilder { - - /** - *
-         * oneof is not currently supporte by protonet
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - * @return Whether the dataloader field is set. - */ - boolean hasDataloader(); - /** - *
-         * oneof is not currently supporte by protonet
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - * @return The dataloader. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions getDataloader(); - /** - *
-         * oneof is not currently supporte by protonet
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder getDataloaderOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - * @return Whether the kafka2hdfs field is set. - */ - boolean hasKafka2Hdfs(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - * @return The kafka2hdfs. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions getKafka2Hdfs(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder getKafka2HdfsOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - * @return Whether the sync field is set. - */ - boolean hasSync(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - * @return The sync. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions getSync(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder getSyncOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - * @return Whether the external field is set. - */ - boolean hasExternal(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - * @return The external. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions getExternal(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder getExternalOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - * @return Whether the backup field is set. - */ - boolean hasBackup(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - * @return The backup. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions getBackup(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder getBackupOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - * @return Whether the transcoding field is set. - */ - boolean hasTranscoding(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - * @return The transcoding. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions getTranscoding(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder getTranscodingOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - * @return Whether the kacoha field is set. - */ - boolean hasKacoha(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - * @return The kacoha. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions getKacoha(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder getKacohaOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - * @return Whether the deduplicate field is set. - */ - boolean hasDeduplicate(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - * @return The deduplicate. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions getDeduplicate(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder getDeduplicateOrBuilder(); - - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - * @return Whether the sampler field is set. - */ - boolean hasSampler(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - * @return The sampler. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions getSampler(); - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder getSamplerOrBuilder(); - - /** - *
-         * Add here any new hdfs producer
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - * @return Whether the comparator field is set. - */ - boolean hasComparator(); - /** - *
-         * Add here any new hdfs producer
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - * @return The comparator. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions getComparator(); - /** - *
-         * Add here any new hdfs producer
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder getComparatorOrBuilder(); - - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - java.util.List - getToList(); - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - com.acme.glup.MetadataProto.Location getTo(int index); - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - int getToCount(); - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - java.util.List - getToOrBuilderList(); - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - com.acme.glup.MetadataProto.LocationOrBuilder getToOrBuilder( - int index); - - /** - * string namespace = 251; - * @return The namespace. - */ - java.lang.String getNamespace(); - /** - * string namespace = 251; - * @return The bytes for namespace. - */ - com.google.protobuf.ByteString - getNamespaceBytes(); - - /** - *
-         * define beginning date inclusive
-         * 
- * - * string start_date = 253; - * @return The startDate. - */ - java.lang.String getStartDate(); - /** - *
-         * define beginning date inclusive
-         * 
- * - * string start_date = 253; - * @return The bytes for startDate. - */ - com.google.protobuf.ByteString - getStartDateBytes(); - - /** - *
-         * define stop date exclusive
-         * 
- * - * string stop_date = 254; - * @return The stopDate. - */ - java.lang.String getStopDate(); - /** - *
-         * define stop date exclusive
-         * 
- * - * string stop_date = 254; - * @return The bytes for stopDate. - */ - com.google.protobuf.ByteString - getStopDateBytes(); - - /** - *
-         * TODO : remove this property when RIVERS-3723 (remove CN platform) is over
-         * 
- * - * bool ignore_cn = 255; - * @return The ignoreCn. - */ - boolean getIgnoreCn(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator} - */ - public static final class Generator extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator) - GeneratorOrBuilder { - private static final long serialVersionUID = 0L; - // Use Generator.newBuilder() to construct. - private Generator(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Generator() { - to_ = java.util.Collections.emptyList(); - namespace_ = ""; - startDate_ = ""; - stopDate_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Generator(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Generator( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder subBuilder = null; - if (dataloader_ != null) { - subBuilder = dataloader_.toBuilder(); - } - dataloader_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(dataloader_); - dataloader_ = subBuilder.buildPartial(); - } - - break; - } - case 18: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder subBuilder = null; - if (kafka2Hdfs_ != null) { - subBuilder = kafka2Hdfs_.toBuilder(); - } - kafka2Hdfs_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(kafka2Hdfs_); - kafka2Hdfs_ = subBuilder.buildPartial(); - } - - break; - } - case 26: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder subBuilder = null; - if (sync_ != null) { - subBuilder = sync_.toBuilder(); - } - sync_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(sync_); - sync_ = subBuilder.buildPartial(); - } - - break; - } - case 34: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder subBuilder = null; - if (external_ != null) { - subBuilder = external_.toBuilder(); - } - external_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(external_); - external_ = subBuilder.buildPartial(); - } - - break; - } - case 42: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder subBuilder = null; - if (backup_ != null) { - subBuilder = backup_.toBuilder(); - } - backup_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(backup_); - backup_ = subBuilder.buildPartial(); - } - - break; - } - case 50: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder subBuilder = null; - if (transcoding_ != null) { - subBuilder = transcoding_.toBuilder(); - } - transcoding_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(transcoding_); - transcoding_ = subBuilder.buildPartial(); - } - - break; - } - case 58: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder subBuilder = null; - if (kacoha_ != null) { - subBuilder = kacoha_.toBuilder(); - } - kacoha_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(kacoha_); - kacoha_ = subBuilder.buildPartial(); - } - - break; - } - case 66: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder subBuilder = null; - if (deduplicate_ != null) { - subBuilder = deduplicate_.toBuilder(); - } - deduplicate_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(deduplicate_); - deduplicate_ = subBuilder.buildPartial(); - } - - break; - } - case 74: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder subBuilder = null; - if (sampler_ != null) { - subBuilder = sampler_.toBuilder(); - } - sampler_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(sampler_); - sampler_ = subBuilder.buildPartial(); - } - - break; - } - case 82: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder subBuilder = null; - if (comparator_ != null) { - subBuilder = comparator_.toBuilder(); - } - comparator_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(comparator_); - comparator_ = subBuilder.buildPartial(); - } - - break; - } - case 2002: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - to_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - to_.add( - input.readMessage(com.acme.glup.MetadataProto.Location.parser(), extensionRegistry)); - break; - } - case 2010: { - java.lang.String s = input.readStringRequireUtf8(); - - namespace_ = s; - break; - } - case 2026: { - java.lang.String s = input.readStringRequireUtf8(); - - startDate_ = s; - break; - } - case 2034: { - java.lang.String s = input.readStringRequireUtf8(); - - stopDate_ = s; - break; - } - case 2040: { - - ignoreCn_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - to_ = java.util.Collections.unmodifiableList(to_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder.class); - } - - public interface DedupOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * Name of input dataset to deduplicate
-           * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - java.lang.String getInputDatasetId(); - /** - *
-           * Name of input dataset to deduplicate
-           * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - com.google.protobuf.ByteString - getInputDatasetIdBytes(); - - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The inputFormatLabel. - */ - java.lang.String getInputFormatLabel(); - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The bytes for inputFormatLabel. - */ - com.google.protobuf.ByteString - getInputFormatLabelBytes(); - - /** - *
-           * Name of output dataset to deduplicate
-           * 
- * - * string output_dataset_id = 3; - * @return The outputDatasetId. - */ - java.lang.String getOutputDatasetId(); - /** - *
-           * Name of output dataset to deduplicate
-           * 
- * - * string output_dataset_id = 3; - * @return The bytes for outputDatasetId. - */ - com.google.protobuf.ByteString - getOutputDatasetIdBytes(); - - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The outputFormatLabel. - */ - java.lang.String getOutputFormatLabel(); - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The bytes for outputFormatLabel. - */ - com.google.protobuf.ByteString - getOutputFormatLabelBytes(); - - /** - *
-           * Generate the conf for the cuttle job and not for the legacy lobster job
-           * Check RIVERS-3614 for details
-           * TODO : remove this property when lobster job will be fully decomissioned
-           * 
- * - * bool use_hippo_cuttle_job = 5; - * @return The useHippoCuttleJob. - */ - boolean getUseHippoCuttleJob(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions} - */ - public static final class DedupOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions) - DedupOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use DedupOptions.newBuilder() to construct. - private DedupOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DedupOptions() { - inputDatasetId_ = ""; - inputFormatLabel_ = ""; - outputDatasetId_ = ""; - outputFormatLabel_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DedupOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DedupOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - inputDatasetId_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - inputFormatLabel_ = s; - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - outputDatasetId_ = s; - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - outputFormatLabel_ = s; - break; - } - case 40: { - - useHippoCuttleJob_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder.class); - } - - public static final int INPUT_DATASET_ID_FIELD_NUMBER = 1; - private volatile java.lang.Object inputDatasetId_; - /** - *
-           * Name of input dataset to deduplicate
-           * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - @java.lang.Override - public java.lang.String getInputDatasetId() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetId_ = s; - return s; - } - } - /** - *
-           * Name of input dataset to deduplicate
-           * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getInputDatasetIdBytes() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int INPUT_FORMAT_LABEL_FIELD_NUMBER = 2; - private volatile java.lang.Object inputFormatLabel_; - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The inputFormatLabel. - */ - @java.lang.Override - public java.lang.String getInputFormatLabel() { - java.lang.Object ref = inputFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputFormatLabel_ = s; - return s; - } - } - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The bytes for inputFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getInputFormatLabelBytes() { - java.lang.Object ref = inputFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_DATASET_ID_FIELD_NUMBER = 3; - private volatile java.lang.Object outputDatasetId_; - /** - *
-           * Name of output dataset to deduplicate
-           * 
- * - * string output_dataset_id = 3; - * @return The outputDatasetId. - */ - @java.lang.Override - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } - } - /** - *
-           * Name of output dataset to deduplicate
-           * 
- * - * string output_dataset_id = 3; - * @return The bytes for outputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_FORMAT_LABEL_FIELD_NUMBER = 4; - private volatile java.lang.Object outputFormatLabel_; - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The outputFormatLabel. - */ - @java.lang.Override - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } - } - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The bytes for outputFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int USE_HIPPO_CUTTLE_JOB_FIELD_NUMBER = 5; - private boolean useHippoCuttleJob_; - /** - *
-           * Generate the conf for the cuttle job and not for the legacy lobster job
-           * Check RIVERS-3614 for details
-           * TODO : remove this property when lobster job will be fully decomissioned
-           * 
- * - * bool use_hippo_cuttle_job = 5; - * @return The useHippoCuttleJob. - */ - @java.lang.Override - public boolean getUseHippoCuttleJob() { - return useHippoCuttleJob_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, inputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, inputFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, outputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, outputFormatLabel_); - } - if (useHippoCuttleJob_ != false) { - output.writeBool(5, useHippoCuttleJob_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, inputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, inputFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, outputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, outputFormatLabel_); - } - if (useHippoCuttleJob_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(5, useHippoCuttleJob_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions) obj; - - if (!getInputDatasetId() - .equals(other.getInputDatasetId())) return false; - if (!getInputFormatLabel() - .equals(other.getInputFormatLabel())) return false; - if (!getOutputDatasetId() - .equals(other.getOutputDatasetId())) return false; - if (!getOutputFormatLabel() - .equals(other.getOutputFormatLabel())) return false; - if (getUseHippoCuttleJob() - != other.getUseHippoCuttleJob()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + INPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getInputDatasetId().hashCode(); - hash = (37 * hash) + INPUT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getInputFormatLabel().hashCode(); - hash = (37 * hash) + OUTPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getOutputDatasetId().hashCode(); - hash = (37 * hash) + OUTPUT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getOutputFormatLabel().hashCode(); - hash = (37 * hash) + USE_HIPPO_CUTTLE_JOB_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getUseHippoCuttleJob()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - inputDatasetId_ = ""; - - inputFormatLabel_ = ""; - - outputDatasetId_ = ""; - - outputFormatLabel_ = ""; - - useHippoCuttleJob_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions(this); - result.inputDatasetId_ = inputDatasetId_; - result.inputFormatLabel_ = inputFormatLabel_; - result.outputDatasetId_ = outputDatasetId_; - result.outputFormatLabel_ = outputFormatLabel_; - result.useHippoCuttleJob_ = useHippoCuttleJob_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.getDefaultInstance()) return this; - if (!other.getInputDatasetId().isEmpty()) { - inputDatasetId_ = other.inputDatasetId_; - onChanged(); - } - if (!other.getInputFormatLabel().isEmpty()) { - inputFormatLabel_ = other.inputFormatLabel_; - onChanged(); - } - if (!other.getOutputDatasetId().isEmpty()) { - outputDatasetId_ = other.outputDatasetId_; - onChanged(); - } - if (!other.getOutputFormatLabel().isEmpty()) { - outputFormatLabel_ = other.outputFormatLabel_; - onChanged(); - } - if (other.getUseHippoCuttleJob() != false) { - setUseHippoCuttleJob(other.getUseHippoCuttleJob()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object inputDatasetId_ = ""; - /** - *
-             * Name of input dataset to deduplicate
-             * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - public java.lang.String getInputDatasetId() { - java.lang.Object ref = inputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Name of input dataset to deduplicate
-             * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - public com.google.protobuf.ByteString - getInputDatasetIdBytes() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Name of input dataset to deduplicate
-             * 
- * - * string input_dataset_id = 1; - * @param value The inputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - inputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * Name of input dataset to deduplicate
-             * 
- * - * string input_dataset_id = 1; - * @return This builder for chaining. - */ - public Builder clearInputDatasetId() { - - inputDatasetId_ = getDefaultInstance().getInputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * Name of input dataset to deduplicate
-             * 
- * - * string input_dataset_id = 1; - * @param value The bytes for inputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - inputDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object inputFormatLabel_ = ""; - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @return The inputFormatLabel. - */ - public java.lang.String getInputFormatLabel() { - java.lang.Object ref = inputFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @return The bytes for inputFormatLabel. - */ - public com.google.protobuf.ByteString - getInputFormatLabelBytes() { - java.lang.Object ref = inputFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @param value The inputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setInputFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - inputFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @return This builder for chaining. - */ - public Builder clearInputFormatLabel() { - - inputFormatLabel_ = getDefaultInstance().getInputFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @param value The bytes for inputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setInputFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - inputFormatLabel_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputDatasetId_ = ""; - /** - *
-             * Name of output dataset to deduplicate
-             * 
- * - * string output_dataset_id = 3; - * @return The outputDatasetId. - */ - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Name of output dataset to deduplicate
-             * 
- * - * string output_dataset_id = 3; - * @return The bytes for outputDatasetId. - */ - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Name of output dataset to deduplicate
-             * 
- * - * string output_dataset_id = 3; - * @param value The outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * Name of output dataset to deduplicate
-             * 
- * - * string output_dataset_id = 3; - * @return This builder for chaining. - */ - public Builder clearOutputDatasetId() { - - outputDatasetId_ = getDefaultInstance().getOutputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * Name of output dataset to deduplicate
-             * 
- * - * string output_dataset_id = 3; - * @param value The bytes for outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputFormatLabel_ = ""; - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @return The outputFormatLabel. - */ - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @return The bytes for outputFormatLabel. - */ - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @param value The outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @return This builder for chaining. - */ - public Builder clearOutputFormatLabel() { - - outputFormatLabel_ = getDefaultInstance().getOutputFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @param value The bytes for outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputFormatLabel_ = value; - onChanged(); - return this; - } - - private boolean useHippoCuttleJob_ ; - /** - *
-             * Generate the conf for the cuttle job and not for the legacy lobster job
-             * Check RIVERS-3614 for details
-             * TODO : remove this property when lobster job will be fully decomissioned
-             * 
- * - * bool use_hippo_cuttle_job = 5; - * @return The useHippoCuttleJob. - */ - @java.lang.Override - public boolean getUseHippoCuttleJob() { - return useHippoCuttleJob_; - } - /** - *
-             * Generate the conf for the cuttle job and not for the legacy lobster job
-             * Check RIVERS-3614 for details
-             * TODO : remove this property when lobster job will be fully decomissioned
-             * 
- * - * bool use_hippo_cuttle_job = 5; - * @param value The useHippoCuttleJob to set. - * @return This builder for chaining. - */ - public Builder setUseHippoCuttleJob(boolean value) { - - useHippoCuttleJob_ = value; - onChanged(); - return this; - } - /** - *
-             * Generate the conf for the cuttle job and not for the legacy lobster job
-             * Check RIVERS-3614 for details
-             * TODO : remove this property when lobster job will be fully decomissioned
-             * 
- * - * bool use_hippo_cuttle_job = 5; - * @return This builder for chaining. - */ - public Builder clearUseHippoCuttleJob() { - - useHippoCuttleJob_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DedupOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DedupOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface Kafka2HdfsOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * settings specific to kafka2hdfs
-           * 
- * - * string topic = 1; - * @return The topic. - */ - java.lang.String getTopic(); - /** - *
-           * settings specific to kafka2hdfs
-           * 
- * - * string topic = 1; - * @return The bytes for topic. - */ - com.google.protobuf.ByteString - getTopicBytes(); - - /** - *
-           * should the output be deduplicated
-           * 
- * - * bool deduplicate = 3; - * @return The deduplicate. - */ - boolean getDeduplicate(); - - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 4; - * @return The outputDatasetId. - */ - java.lang.String getOutputDatasetId(); - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 4; - * @return The bytes for outputDatasetId. - */ - com.google.protobuf.ByteString - getOutputDatasetIdBytes(); - - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The outputFormatLabel. - */ - java.lang.String getOutputFormatLabel(); - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The bytes for outputFormatLabel. - */ - com.google.protobuf.ByteString - getOutputFormatLabelBytes(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions} - */ - public static final class Kafka2HdfsOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) - Kafka2HdfsOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use Kafka2HdfsOptions.newBuilder() to construct. - private Kafka2HdfsOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Kafka2HdfsOptions() { - topic_ = ""; - outputDatasetId_ = ""; - outputFormatLabel_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Kafka2HdfsOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Kafka2HdfsOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - topic_ = s; - break; - } - case 24: { - - deduplicate_ = input.readBool(); - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - outputDatasetId_ = s; - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); - - outputFormatLabel_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder.class); - } - - public static final int TOPIC_FIELD_NUMBER = 1; - private volatile java.lang.Object topic_; - /** - *
-           * settings specific to kafka2hdfs
-           * 
- * - * string topic = 1; - * @return The topic. - */ - @java.lang.Override - public java.lang.String getTopic() { - java.lang.Object ref = topic_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - topic_ = s; - return s; - } - } - /** - *
-           * settings specific to kafka2hdfs
-           * 
- * - * string topic = 1; - * @return The bytes for topic. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTopicBytes() { - java.lang.Object ref = topic_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - topic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int DEDUPLICATE_FIELD_NUMBER = 3; - private boolean deduplicate_; - /** - *
-           * should the output be deduplicated
-           * 
- * - * bool deduplicate = 3; - * @return The deduplicate. - */ - @java.lang.Override - public boolean getDeduplicate() { - return deduplicate_; - } - - public static final int OUTPUT_DATASET_ID_FIELD_NUMBER = 4; - private volatile java.lang.Object outputDatasetId_; - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 4; - * @return The outputDatasetId. - */ - @java.lang.Override - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } - } - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 4; - * @return The bytes for outputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_FORMAT_LABEL_FIELD_NUMBER = 5; - private volatile java.lang.Object outputFormatLabel_; - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The outputFormatLabel. - */ - @java.lang.Override - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } - } - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The bytes for outputFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, topic_); - } - if (deduplicate_ != false) { - output.writeBool(3, deduplicate_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, outputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, outputFormatLabel_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, topic_); - } - if (deduplicate_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(3, deduplicate_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, outputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, outputFormatLabel_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) obj; - - if (!getTopic() - .equals(other.getTopic())) return false; - if (getDeduplicate() - != other.getDeduplicate()) return false; - if (!getOutputDatasetId() - .equals(other.getOutputDatasetId())) return false; - if (!getOutputFormatLabel() - .equals(other.getOutputFormatLabel())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TOPIC_FIELD_NUMBER; - hash = (53 * hash) + getTopic().hashCode(); - hash = (37 * hash) + DEDUPLICATE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getDeduplicate()); - hash = (37 * hash) + OUTPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getOutputDatasetId().hashCode(); - hash = (37 * hash) + OUTPUT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getOutputFormatLabel().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - topic_ = ""; - - deduplicate_ = false; - - outputDatasetId_ = ""; - - outputFormatLabel_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions(this); - result.topic_ = topic_; - result.deduplicate_ = deduplicate_; - result.outputDatasetId_ = outputDatasetId_; - result.outputFormatLabel_ = outputFormatLabel_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.getDefaultInstance()) return this; - if (!other.getTopic().isEmpty()) { - topic_ = other.topic_; - onChanged(); - } - if (other.getDeduplicate() != false) { - setDeduplicate(other.getDeduplicate()); - } - if (!other.getOutputDatasetId().isEmpty()) { - outputDatasetId_ = other.outputDatasetId_; - onChanged(); - } - if (!other.getOutputFormatLabel().isEmpty()) { - outputFormatLabel_ = other.outputFormatLabel_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object topic_ = ""; - /** - *
-             * settings specific to kafka2hdfs
-             * 
- * - * string topic = 1; - * @return The topic. - */ - public java.lang.String getTopic() { - java.lang.Object ref = topic_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - topic_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * settings specific to kafka2hdfs
-             * 
- * - * string topic = 1; - * @return The bytes for topic. - */ - public com.google.protobuf.ByteString - getTopicBytes() { - java.lang.Object ref = topic_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - topic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * settings specific to kafka2hdfs
-             * 
- * - * string topic = 1; - * @param value The topic to set. - * @return This builder for chaining. - */ - public Builder setTopic( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - topic_ = value; - onChanged(); - return this; - } - /** - *
-             * settings specific to kafka2hdfs
-             * 
- * - * string topic = 1; - * @return This builder for chaining. - */ - public Builder clearTopic() { - - topic_ = getDefaultInstance().getTopic(); - onChanged(); - return this; - } - /** - *
-             * settings specific to kafka2hdfs
-             * 
- * - * string topic = 1; - * @param value The bytes for topic to set. - * @return This builder for chaining. - */ - public Builder setTopicBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - topic_ = value; - onChanged(); - return this; - } - - private boolean deduplicate_ ; - /** - *
-             * should the output be deduplicated
-             * 
- * - * bool deduplicate = 3; - * @return The deduplicate. - */ - @java.lang.Override - public boolean getDeduplicate() { - return deduplicate_; - } - /** - *
-             * should the output be deduplicated
-             * 
- * - * bool deduplicate = 3; - * @param value The deduplicate to set. - * @return This builder for chaining. - */ - public Builder setDeduplicate(boolean value) { - - deduplicate_ = value; - onChanged(); - return this; - } - /** - *
-             * should the output be deduplicated
-             * 
- * - * bool deduplicate = 3; - * @return This builder for chaining. - */ - public Builder clearDeduplicate() { - - deduplicate_ = false; - onChanged(); - return this; - } - - private java.lang.Object outputDatasetId_ = ""; - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 4; - * @return The outputDatasetId. - */ - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 4; - * @return The bytes for outputDatasetId. - */ - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 4; - * @param value The outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 4; - * @return This builder for chaining. - */ - public Builder clearOutputDatasetId() { - - outputDatasetId_ = getDefaultInstance().getOutputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 4; - * @param value The bytes for outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputFormatLabel_ = ""; - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @return The outputFormatLabel. - */ - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @return The bytes for outputFormatLabel. - */ - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @param value The outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @return This builder for chaining. - */ - public Builder clearOutputFormatLabel() { - - outputFormatLabel_ = getDefaultInstance().getOutputFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @param value The bytes for outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputFormatLabel_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Kafka2HdfsOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Kafka2HdfsOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface KacohaConfigOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * How many partitions per task
-           * 
- * - * int32 partitions_per_task = 1; - * @return The partitionsPerTask. - */ - int getPartitionsPerTask(); - - /** - *
-           * The size of the poll buffer used in KaCoHa
-           * 
- * - * int32 poll_buffer_size_bytes = 2; - * @return The pollBufferSizeBytes. - */ - int getPollBufferSizeBytes(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig} - */ - public static final class KacohaConfig extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig) - KacohaConfigOrBuilder { - private static final long serialVersionUID = 0L; - // Use KacohaConfig.newBuilder() to construct. - private KacohaConfig(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private KacohaConfig() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new KacohaConfig(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private KacohaConfig( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - partitionsPerTask_ = input.readInt32(); - break; - } - case 16: { - - pollBufferSizeBytes_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder.class); - } - - public static final int PARTITIONS_PER_TASK_FIELD_NUMBER = 1; - private int partitionsPerTask_; - /** - *
-           * How many partitions per task
-           * 
- * - * int32 partitions_per_task = 1; - * @return The partitionsPerTask. - */ - @java.lang.Override - public int getPartitionsPerTask() { - return partitionsPerTask_; - } - - public static final int POLL_BUFFER_SIZE_BYTES_FIELD_NUMBER = 2; - private int pollBufferSizeBytes_; - /** - *
-           * The size of the poll buffer used in KaCoHa
-           * 
- * - * int32 poll_buffer_size_bytes = 2; - * @return The pollBufferSizeBytes. - */ - @java.lang.Override - public int getPollBufferSizeBytes() { - return pollBufferSizeBytes_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (partitionsPerTask_ != 0) { - output.writeInt32(1, partitionsPerTask_); - } - if (pollBufferSizeBytes_ != 0) { - output.writeInt32(2, pollBufferSizeBytes_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (partitionsPerTask_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, partitionsPerTask_); - } - if (pollBufferSizeBytes_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(2, pollBufferSizeBytes_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig) obj; - - if (getPartitionsPerTask() - != other.getPartitionsPerTask()) return false; - if (getPollBufferSizeBytes() - != other.getPollBufferSizeBytes()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + PARTITIONS_PER_TASK_FIELD_NUMBER; - hash = (53 * hash) + getPartitionsPerTask(); - hash = (37 * hash) + POLL_BUFFER_SIZE_BYTES_FIELD_NUMBER; - hash = (53 * hash) + getPollBufferSizeBytes(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - partitionsPerTask_ = 0; - - pollBufferSizeBytes_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig(this); - result.partitionsPerTask_ = partitionsPerTask_; - result.pollBufferSizeBytes_ = pollBufferSizeBytes_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance()) return this; - if (other.getPartitionsPerTask() != 0) { - setPartitionsPerTask(other.getPartitionsPerTask()); - } - if (other.getPollBufferSizeBytes() != 0) { - setPollBufferSizeBytes(other.getPollBufferSizeBytes()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int partitionsPerTask_ ; - /** - *
-             * How many partitions per task
-             * 
- * - * int32 partitions_per_task = 1; - * @return The partitionsPerTask. - */ - @java.lang.Override - public int getPartitionsPerTask() { - return partitionsPerTask_; - } - /** - *
-             * How many partitions per task
-             * 
- * - * int32 partitions_per_task = 1; - * @param value The partitionsPerTask to set. - * @return This builder for chaining. - */ - public Builder setPartitionsPerTask(int value) { - - partitionsPerTask_ = value; - onChanged(); - return this; - } - /** - *
-             * How many partitions per task
-             * 
- * - * int32 partitions_per_task = 1; - * @return This builder for chaining. - */ - public Builder clearPartitionsPerTask() { - - partitionsPerTask_ = 0; - onChanged(); - return this; - } - - private int pollBufferSizeBytes_ ; - /** - *
-             * The size of the poll buffer used in KaCoHa
-             * 
- * - * int32 poll_buffer_size_bytes = 2; - * @return The pollBufferSizeBytes. - */ - @java.lang.Override - public int getPollBufferSizeBytes() { - return pollBufferSizeBytes_; - } - /** - *
-             * The size of the poll buffer used in KaCoHa
-             * 
- * - * int32 poll_buffer_size_bytes = 2; - * @param value The pollBufferSizeBytes to set. - * @return This builder for chaining. - */ - public Builder setPollBufferSizeBytes(int value) { - - pollBufferSizeBytes_ = value; - onChanged(); - return this; - } - /** - *
-             * The size of the poll buffer used in KaCoHa
-             * 
- * - * int32 poll_buffer_size_bytes = 2; - * @return This builder for chaining. - */ - public Builder clearPollBufferSizeBytes() { - - pollBufferSizeBytes_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public KacohaConfig parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new KacohaConfig(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface KacohaConfigPerDcOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * The Data center to which this config applies
-           * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return The enum numeric value on the wire for dc. - */ - int getDcValue(); - /** - *
-           * The Data center to which this config applies
-           * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return The dc. - */ - com.acme.glup.MetadataProto.DataCenter getDc(); - - /** - *
-           * The configuration for this data center
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - * @return Whether the config field is set. - */ - boolean hasConfig(); - /** - *
-           * The configuration for this data center
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - * @return The config. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getConfig(); - /** - *
-           * The configuration for this data center
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder getConfigOrBuilder(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc} - */ - public static final class KacohaConfigPerDc extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) - KacohaConfigPerDcOrBuilder { - private static final long serialVersionUID = 0L; - // Use KacohaConfigPerDc.newBuilder() to construct. - private KacohaConfigPerDc(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private KacohaConfigPerDc() { - dc_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new KacohaConfigPerDc(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private KacohaConfigPerDc( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - int rawValue = input.readEnum(); - - dc_ = rawValue; - break; - } - case 18: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder subBuilder = null; - if (config_ != null) { - subBuilder = config_.toBuilder(); - } - config_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(config_); - config_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder.class); - } - - public static final int DC_FIELD_NUMBER = 1; - private int dc_; - /** - *
-           * The Data center to which this config applies
-           * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return The enum numeric value on the wire for dc. - */ - @java.lang.Override public int getDcValue() { - return dc_; - } - /** - *
-           * The Data center to which this config applies
-           * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return The dc. - */ - @java.lang.Override public com.acme.glup.MetadataProto.DataCenter getDc() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(dc_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - - public static final int CONFIG_FIELD_NUMBER = 2; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig config_; - /** - *
-           * The configuration for this data center
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - * @return Whether the config field is set. - */ - @java.lang.Override - public boolean hasConfig() { - return config_ != null; - } - /** - *
-           * The configuration for this data center
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - * @return The config. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getConfig() { - return config_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance() : config_; - } - /** - *
-           * The configuration for this data center
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder getConfigOrBuilder() { - return getConfig(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (dc_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - output.writeEnum(1, dc_); - } - if (config_ != null) { - output.writeMessage(2, getConfig()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (dc_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(1, dc_); - } - if (config_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getConfig()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) obj; - - if (dc_ != other.dc_) return false; - if (hasConfig() != other.hasConfig()) return false; - if (hasConfig()) { - if (!getConfig() - .equals(other.getConfig())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + DC_FIELD_NUMBER; - hash = (53 * hash) + dc_; - if (hasConfig()) { - hash = (37 * hash) + CONFIG_FIELD_NUMBER; - hash = (53 * hash) + getConfig().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - dc_ = 0; - - if (configBuilder_ == null) { - config_ = null; - } else { - config_ = null; - configBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc(this); - result.dc_ = dc_; - if (configBuilder_ == null) { - result.config_ = config_; - } else { - result.config_ = configBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.getDefaultInstance()) return this; - if (other.dc_ != 0) { - setDcValue(other.getDcValue()); - } - if (other.hasConfig()) { - mergeConfig(other.getConfig()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int dc_ = 0; - /** - *
-             * The Data center to which this config applies
-             * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return The enum numeric value on the wire for dc. - */ - @java.lang.Override public int getDcValue() { - return dc_; - } - /** - *
-             * The Data center to which this config applies
-             * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @param value The enum numeric value on the wire for dc to set. - * @return This builder for chaining. - */ - public Builder setDcValue(int value) { - - dc_ = value; - onChanged(); - return this; - } - /** - *
-             * The Data center to which this config applies
-             * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return The dc. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataCenter getDc() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(dc_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - /** - *
-             * The Data center to which this config applies
-             * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @param value The dc to set. - * @return This builder for chaining. - */ - public Builder setDc(com.acme.glup.MetadataProto.DataCenter value) { - if (value == null) { - throw new NullPointerException(); - } - - dc_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-             * The Data center to which this config applies
-             * 
- * - * .Acme.Glup.DataCenter dc = 1; - * @return This builder for chaining. - */ - public Builder clearDc() { - - dc_ = 0; - onChanged(); - return this; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig config_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder> configBuilder_; - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - * @return Whether the config field is set. - */ - public boolean hasConfig() { - return configBuilder_ != null || config_ != null; - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - * @return The config. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getConfig() { - if (configBuilder_ == null) { - return config_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance() : config_; - } else { - return configBuilder_.getMessage(); - } - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - public Builder setConfig(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig value) { - if (configBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - config_ = value; - onChanged(); - } else { - configBuilder_.setMessage(value); - } - - return this; - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - public Builder setConfig( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder builderForValue) { - if (configBuilder_ == null) { - config_ = builderForValue.build(); - onChanged(); - } else { - configBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - public Builder mergeConfig(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig value) { - if (configBuilder_ == null) { - if (config_ != null) { - config_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.newBuilder(config_).mergeFrom(value).buildPartial(); - } else { - config_ = value; - } - onChanged(); - } else { - configBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - public Builder clearConfig() { - if (configBuilder_ == null) { - config_ = null; - onChanged(); - } else { - config_ = null; - configBuilder_ = null; - } - - return this; - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder getConfigBuilder() { - - onChanged(); - return getConfigFieldBuilder().getBuilder(); - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder getConfigOrBuilder() { - if (configBuilder_ != null) { - return configBuilder_.getMessageOrBuilder(); - } else { - return config_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance() : config_; - } - } - /** - *
-             * The configuration for this data center
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder> - getConfigFieldBuilder() { - if (configBuilder_ == null) { - configBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder>( - getConfig(), - getParentForChildren(), - isClean()); - config_ = null; - } - return configBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public KacohaConfigPerDc parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new KacohaConfigPerDc(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface KaCoHaOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * settings specific to KaCoHa
-           * 
- * - * string topic = 1; - * @return The topic. - */ - java.lang.String getTopic(); - /** - *
-           * settings specific to KaCoHa
-           * 
- * - * string topic = 1; - * @return The bytes for topic. - */ - com.google.protobuf.ByteString - getTopicBytes(); - - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 2; - * @return The outputDatasetId. - */ - java.lang.String getOutputDatasetId(); - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 2; - * @return The bytes for outputDatasetId. - */ - com.google.protobuf.ByteString - getOutputDatasetIdBytes(); - - /** - *
-           * Deduplicate dataset in the consolidation
-           * 
- * - * bool deduplicate = 3; - * @return The deduplicate. - */ - boolean getDeduplicate(); - - /** - *
-           * Common configs for all data centers
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - * @return Whether the config field is set. - */ - boolean hasConfig(); - /** - *
-           * Common configs for all data centers
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - * @return The config. - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getConfig(); - /** - *
-           * Common configs for all data centers
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder getConfigOrBuilder(); - - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The outputFormatLabel. - */ - java.lang.String getOutputFormatLabel(); - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The bytes for outputFormatLabel. - */ - com.google.protobuf.ByteString - getOutputFormatLabelBytes(); - - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - java.util.List - getConfigPerDcList(); - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc getConfigPerDc(int index); - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - int getConfigPerDcCount(); - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - java.util.List - getConfigPerDcOrBuilderList(); - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder getConfigPerDcOrBuilder( - int index); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions} - */ - public static final class KaCoHaOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) - KaCoHaOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use KaCoHaOptions.newBuilder() to construct. - private KaCoHaOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private KaCoHaOptions() { - topic_ = ""; - outputDatasetId_ = ""; - outputFormatLabel_ = ""; - configPerDc_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new KaCoHaOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private KaCoHaOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - topic_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - outputDatasetId_ = s; - break; - } - case 24: { - - deduplicate_ = input.readBool(); - break; - } - case 34: { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder subBuilder = null; - if (config_ != null) { - subBuilder = config_.toBuilder(); - } - config_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(config_); - config_ = subBuilder.buildPartial(); - } - - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); - - outputFormatLabel_ = s; - break; - } - case 50: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - configPerDc_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - configPerDc_.add( - input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.parser(), extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - configPerDc_ = java.util.Collections.unmodifiableList(configPerDc_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder.class); - } - - public static final int TOPIC_FIELD_NUMBER = 1; - private volatile java.lang.Object topic_; - /** - *
-           * settings specific to KaCoHa
-           * 
- * - * string topic = 1; - * @return The topic. - */ - @java.lang.Override - public java.lang.String getTopic() { - java.lang.Object ref = topic_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - topic_ = s; - return s; - } - } - /** - *
-           * settings specific to KaCoHa
-           * 
- * - * string topic = 1; - * @return The bytes for topic. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTopicBytes() { - java.lang.Object ref = topic_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - topic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_DATASET_ID_FIELD_NUMBER = 2; - private volatile java.lang.Object outputDatasetId_; - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 2; - * @return The outputDatasetId. - */ - @java.lang.Override - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } - } - /** - *
-           * Name of the dataset import will produce
-           * 
- * - * string output_dataset_id = 2; - * @return The bytes for outputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int DEDUPLICATE_FIELD_NUMBER = 3; - private boolean deduplicate_; - /** - *
-           * Deduplicate dataset in the consolidation
-           * 
- * - * bool deduplicate = 3; - * @return The deduplicate. - */ - @java.lang.Override - public boolean getDeduplicate() { - return deduplicate_; - } - - public static final int CONFIG_FIELD_NUMBER = 4; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig config_; - /** - *
-           * Common configs for all data centers
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - * @return Whether the config field is set. - */ - @java.lang.Override - public boolean hasConfig() { - return config_ != null; - } - /** - *
-           * Common configs for all data centers
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - * @return The config. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getConfig() { - return config_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance() : config_; - } - /** - *
-           * Common configs for all data centers
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder getConfigOrBuilder() { - return getConfig(); - } - - public static final int OUTPUT_FORMAT_LABEL_FIELD_NUMBER = 5; - private volatile java.lang.Object outputFormatLabel_; - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The outputFormatLabel. - */ - @java.lang.Override - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } - } - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 5; - * @return The bytes for outputFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int CONFIG_PER_DC_FIELD_NUMBER = 6; - private java.util.List configPerDc_; - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - @java.lang.Override - public java.util.List getConfigPerDcList() { - return configPerDc_; - } - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - @java.lang.Override - public java.util.List - getConfigPerDcOrBuilderList() { - return configPerDc_; - } - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - @java.lang.Override - public int getConfigPerDcCount() { - return configPerDc_.size(); - } - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc getConfigPerDc(int index) { - return configPerDc_.get(index); - } - /** - *
-           * Override specific configs for each data center
-           * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder getConfigPerDcOrBuilder( - int index) { - return configPerDc_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, topic_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, outputDatasetId_); - } - if (deduplicate_ != false) { - output.writeBool(3, deduplicate_); - } - if (config_ != null) { - output.writeMessage(4, getConfig()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, outputFormatLabel_); - } - for (int i = 0; i < configPerDc_.size(); i++) { - output.writeMessage(6, configPerDc_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, topic_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, outputDatasetId_); - } - if (deduplicate_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(3, deduplicate_); - } - if (config_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, getConfig()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, outputFormatLabel_); - } - for (int i = 0; i < configPerDc_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(6, configPerDc_.get(i)); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) obj; - - if (!getTopic() - .equals(other.getTopic())) return false; - if (!getOutputDatasetId() - .equals(other.getOutputDatasetId())) return false; - if (getDeduplicate() - != other.getDeduplicate()) return false; - if (hasConfig() != other.hasConfig()) return false; - if (hasConfig()) { - if (!getConfig() - .equals(other.getConfig())) return false; - } - if (!getOutputFormatLabel() - .equals(other.getOutputFormatLabel())) return false; - if (!getConfigPerDcList() - .equals(other.getConfigPerDcList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TOPIC_FIELD_NUMBER; - hash = (53 * hash) + getTopic().hashCode(); - hash = (37 * hash) + OUTPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getOutputDatasetId().hashCode(); - hash = (37 * hash) + DEDUPLICATE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getDeduplicate()); - if (hasConfig()) { - hash = (37 * hash) + CONFIG_FIELD_NUMBER; - hash = (53 * hash) + getConfig().hashCode(); - } - hash = (37 * hash) + OUTPUT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getOutputFormatLabel().hashCode(); - if (getConfigPerDcCount() > 0) { - hash = (37 * hash) + CONFIG_PER_DC_FIELD_NUMBER; - hash = (53 * hash) + getConfigPerDcList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getConfigPerDcFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - topic_ = ""; - - outputDatasetId_ = ""; - - deduplicate_ = false; - - if (configBuilder_ == null) { - config_ = null; - } else { - config_ = null; - configBuilder_ = null; - } - outputFormatLabel_ = ""; - - if (configPerDcBuilder_ == null) { - configPerDc_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - configPerDcBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions(this); - int from_bitField0_ = bitField0_; - result.topic_ = topic_; - result.outputDatasetId_ = outputDatasetId_; - result.deduplicate_ = deduplicate_; - if (configBuilder_ == null) { - result.config_ = config_; - } else { - result.config_ = configBuilder_.build(); - } - result.outputFormatLabel_ = outputFormatLabel_; - if (configPerDcBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - configPerDc_ = java.util.Collections.unmodifiableList(configPerDc_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.configPerDc_ = configPerDc_; - } else { - result.configPerDc_ = configPerDcBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.getDefaultInstance()) return this; - if (!other.getTopic().isEmpty()) { - topic_ = other.topic_; - onChanged(); - } - if (!other.getOutputDatasetId().isEmpty()) { - outputDatasetId_ = other.outputDatasetId_; - onChanged(); - } - if (other.getDeduplicate() != false) { - setDeduplicate(other.getDeduplicate()); - } - if (other.hasConfig()) { - mergeConfig(other.getConfig()); - } - if (!other.getOutputFormatLabel().isEmpty()) { - outputFormatLabel_ = other.outputFormatLabel_; - onChanged(); - } - if (configPerDcBuilder_ == null) { - if (!other.configPerDc_.isEmpty()) { - if (configPerDc_.isEmpty()) { - configPerDc_ = other.configPerDc_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureConfigPerDcIsMutable(); - configPerDc_.addAll(other.configPerDc_); - } - onChanged(); - } - } else { - if (!other.configPerDc_.isEmpty()) { - if (configPerDcBuilder_.isEmpty()) { - configPerDcBuilder_.dispose(); - configPerDcBuilder_ = null; - configPerDc_ = other.configPerDc_; - bitField0_ = (bitField0_ & ~0x00000001); - configPerDcBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getConfigPerDcFieldBuilder() : null; - } else { - configPerDcBuilder_.addAllMessages(other.configPerDc_); - } - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.lang.Object topic_ = ""; - /** - *
-             * settings specific to KaCoHa
-             * 
- * - * string topic = 1; - * @return The topic. - */ - public java.lang.String getTopic() { - java.lang.Object ref = topic_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - topic_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * settings specific to KaCoHa
-             * 
- * - * string topic = 1; - * @return The bytes for topic. - */ - public com.google.protobuf.ByteString - getTopicBytes() { - java.lang.Object ref = topic_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - topic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * settings specific to KaCoHa
-             * 
- * - * string topic = 1; - * @param value The topic to set. - * @return This builder for chaining. - */ - public Builder setTopic( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - topic_ = value; - onChanged(); - return this; - } - /** - *
-             * settings specific to KaCoHa
-             * 
- * - * string topic = 1; - * @return This builder for chaining. - */ - public Builder clearTopic() { - - topic_ = getDefaultInstance().getTopic(); - onChanged(); - return this; - } - /** - *
-             * settings specific to KaCoHa
-             * 
- * - * string topic = 1; - * @param value The bytes for topic to set. - * @return This builder for chaining. - */ - public Builder setTopicBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - topic_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputDatasetId_ = ""; - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 2; - * @return The outputDatasetId. - */ - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 2; - * @return The bytes for outputDatasetId. - */ - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 2; - * @param value The outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 2; - * @return This builder for chaining. - */ - public Builder clearOutputDatasetId() { - - outputDatasetId_ = getDefaultInstance().getOutputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * Name of the dataset import will produce
-             * 
- * - * string output_dataset_id = 2; - * @param value The bytes for outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputDatasetId_ = value; - onChanged(); - return this; - } - - private boolean deduplicate_ ; - /** - *
-             * Deduplicate dataset in the consolidation
-             * 
- * - * bool deduplicate = 3; - * @return The deduplicate. - */ - @java.lang.Override - public boolean getDeduplicate() { - return deduplicate_; - } - /** - *
-             * Deduplicate dataset in the consolidation
-             * 
- * - * bool deduplicate = 3; - * @param value The deduplicate to set. - * @return This builder for chaining. - */ - public Builder setDeduplicate(boolean value) { - - deduplicate_ = value; - onChanged(); - return this; - } - /** - *
-             * Deduplicate dataset in the consolidation
-             * 
- * - * bool deduplicate = 3; - * @return This builder for chaining. - */ - public Builder clearDeduplicate() { - - deduplicate_ = false; - onChanged(); - return this; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig config_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder> configBuilder_; - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - * @return Whether the config field is set. - */ - public boolean hasConfig() { - return configBuilder_ != null || config_ != null; - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - * @return The config. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig getConfig() { - if (configBuilder_ == null) { - return config_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance() : config_; - } else { - return configBuilder_.getMessage(); - } - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - public Builder setConfig(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig value) { - if (configBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - config_ = value; - onChanged(); - } else { - configBuilder_.setMessage(value); - } - - return this; - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - public Builder setConfig( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder builderForValue) { - if (configBuilder_ == null) { - config_ = builderForValue.build(); - onChanged(); - } else { - configBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - public Builder mergeConfig(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig value) { - if (configBuilder_ == null) { - if (config_ != null) { - config_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.newBuilder(config_).mergeFrom(value).buildPartial(); - } else { - config_ = value; - } - onChanged(); - } else { - configBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - public Builder clearConfig() { - if (configBuilder_ == null) { - config_ = null; - onChanged(); - } else { - config_ = null; - configBuilder_ = null; - } - - return this; - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder getConfigBuilder() { - - onChanged(); - return getConfigFieldBuilder().getBuilder(); - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder getConfigOrBuilder() { - if (configBuilder_ != null) { - return configBuilder_.getMessageOrBuilder(); - } else { - return config_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.getDefaultInstance() : config_; - } - } - /** - *
-             * Common configs for all data centers
-             * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfig config = 4; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder> - getConfigFieldBuilder() { - if (configBuilder_ == null) { - configBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfig.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigOrBuilder>( - getConfig(), - getParentForChildren(), - isClean()); - config_ = null; - } - return configBuilder_; - } - - private java.lang.Object outputFormatLabel_ = ""; - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @return The outputFormatLabel. - */ - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @return The bytes for outputFormatLabel. - */ - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @param value The outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @return This builder for chaining. - */ - public Builder clearOutputFormatLabel() { - - outputFormatLabel_ = getDefaultInstance().getOutputFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 5; - * @param value The bytes for outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputFormatLabel_ = value; - onChanged(); - return this; - } - - private java.util.List configPerDc_ = - java.util.Collections.emptyList(); - private void ensureConfigPerDcIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - configPerDc_ = new java.util.ArrayList(configPerDc_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder> configPerDcBuilder_; - - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public java.util.List getConfigPerDcList() { - if (configPerDcBuilder_ == null) { - return java.util.Collections.unmodifiableList(configPerDc_); - } else { - return configPerDcBuilder_.getMessageList(); - } - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public int getConfigPerDcCount() { - if (configPerDcBuilder_ == null) { - return configPerDc_.size(); - } else { - return configPerDcBuilder_.getCount(); - } - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc getConfigPerDc(int index) { - if (configPerDcBuilder_ == null) { - return configPerDc_.get(index); - } else { - return configPerDcBuilder_.getMessage(index); - } - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder setConfigPerDc( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc value) { - if (configPerDcBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureConfigPerDcIsMutable(); - configPerDc_.set(index, value); - onChanged(); - } else { - configPerDcBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder setConfigPerDc( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder builderForValue) { - if (configPerDcBuilder_ == null) { - ensureConfigPerDcIsMutable(); - configPerDc_.set(index, builderForValue.build()); - onChanged(); - } else { - configPerDcBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder addConfigPerDc(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc value) { - if (configPerDcBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureConfigPerDcIsMutable(); - configPerDc_.add(value); - onChanged(); - } else { - configPerDcBuilder_.addMessage(value); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder addConfigPerDc( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc value) { - if (configPerDcBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureConfigPerDcIsMutable(); - configPerDc_.add(index, value); - onChanged(); - } else { - configPerDcBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder addConfigPerDc( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder builderForValue) { - if (configPerDcBuilder_ == null) { - ensureConfigPerDcIsMutable(); - configPerDc_.add(builderForValue.build()); - onChanged(); - } else { - configPerDcBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder addConfigPerDc( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder builderForValue) { - if (configPerDcBuilder_ == null) { - ensureConfigPerDcIsMutable(); - configPerDc_.add(index, builderForValue.build()); - onChanged(); - } else { - configPerDcBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder addAllConfigPerDc( - java.lang.Iterable values) { - if (configPerDcBuilder_ == null) { - ensureConfigPerDcIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, configPerDc_); - onChanged(); - } else { - configPerDcBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder clearConfigPerDc() { - if (configPerDcBuilder_ == null) { - configPerDc_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - configPerDcBuilder_.clear(); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public Builder removeConfigPerDc(int index) { - if (configPerDcBuilder_ == null) { - ensureConfigPerDcIsMutable(); - configPerDc_.remove(index); - onChanged(); - } else { - configPerDcBuilder_.remove(index); - } - return this; - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder getConfigPerDcBuilder( - int index) { - return getConfigPerDcFieldBuilder().getBuilder(index); - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder getConfigPerDcOrBuilder( - int index) { - if (configPerDcBuilder_ == null) { - return configPerDc_.get(index); } else { - return configPerDcBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public java.util.List - getConfigPerDcOrBuilderList() { - if (configPerDcBuilder_ != null) { - return configPerDcBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(configPerDc_); - } - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder addConfigPerDcBuilder() { - return getConfigPerDcFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.getDefaultInstance()); - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder addConfigPerDcBuilder( - int index) { - return getConfigPerDcFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.getDefaultInstance()); - } - /** - *
-             * Override specific configs for each data center
-             * 
- * - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc config_per_dc = 6; - */ - public java.util.List - getConfigPerDcBuilderList() { - return getConfigPerDcFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder> - getConfigPerDcFieldBuilder() { - if (configPerDcBuilder_ == null) { - configPerDcBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDc.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KacohaConfigPerDcOrBuilder>( - configPerDc_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - configPerDc_ = null; - } - return configPerDcBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public KaCoHaOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new KaCoHaOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface DataloaderOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return A list containing the platform. - */ - java.util.List getPlatformList(); - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return The count of platform. - */ - int getPlatformCount(); - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the element to return. - * @return The platform at the given index. - */ - com.acme.glup.MetadataProto.Platform getPlatform(int index); - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return A list containing the enum numeric values on the wire for platform. - */ - java.util.List - getPlatformValueList(); - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platform at the given index. - */ - int getPlatformValue(int index); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions} - */ - public static final class DataloaderOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions) - DataloaderOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use DataloaderOptions.newBuilder() to construct. - private DataloaderOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DataloaderOptions() { - platform_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DataloaderOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DataloaderOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - platform_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - platform_.add(rawValue); - break; - } - case 10: { - int length = input.readRawVarint32(); - int oldLimit = input.pushLimit(length); - while(input.getBytesUntilLimit() > 0) { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - platform_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - platform_.add(rawValue); - } - input.popLimit(oldLimit); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - platform_ = java.util.Collections.unmodifiableList(platform_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder.class); - } - - public static final int PLATFORM_FIELD_NUMBER = 1; - private java.util.List platform_; - private static final com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform> platform_converter_ = - new com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>() { - public com.acme.glup.MetadataProto.Platform convert(java.lang.Integer from) { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(from); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - }; - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return A list containing the platform. - */ - @java.lang.Override - public java.util.List getPlatformList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(platform_, platform_converter_); - } - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return The count of platform. - */ - @java.lang.Override - public int getPlatformCount() { - return platform_.size(); - } - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the element to return. - * @return The platform at the given index. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Platform getPlatform(int index) { - return platform_converter_.convert(platform_.get(index)); - } - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return A list containing the enum numeric values on the wire for platform. - */ - @java.lang.Override - public java.util.List - getPlatformValueList() { - return platform_; - } - /** - *
-           * settings specific to dataloader
-           * If no platform is defined, it will default to all platforms
-           * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platform at the given index. - */ - @java.lang.Override - public int getPlatformValue(int index) { - return platform_.get(index); - } - private int platformMemoizedSerializedSize; - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - getSerializedSize(); - if (getPlatformList().size() > 0) { - output.writeUInt32NoTag(10); - output.writeUInt32NoTag(platformMemoizedSerializedSize); - } - for (int i = 0; i < platform_.size(); i++) { - output.writeEnumNoTag(platform_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - { - int dataSize = 0; - for (int i = 0; i < platform_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeEnumSizeNoTag(platform_.get(i)); - } - size += dataSize; - if (!getPlatformList().isEmpty()) { size += 1; - size += com.google.protobuf.CodedOutputStream - .computeUInt32SizeNoTag(dataSize); - }platformMemoizedSerializedSize = dataSize; - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions) obj; - - if (!platform_.equals(other.platform_)) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (getPlatformCount() > 0) { - hash = (37 * hash) + PLATFORM_FIELD_NUMBER; - hash = (53 * hash) + platform_.hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - platform_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions(this); - int from_bitField0_ = bitField0_; - if (((bitField0_ & 0x00000001) != 0)) { - platform_ = java.util.Collections.unmodifiableList(platform_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.platform_ = platform_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.getDefaultInstance()) return this; - if (!other.platform_.isEmpty()) { - if (platform_.isEmpty()) { - platform_ = other.platform_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensurePlatformIsMutable(); - platform_.addAll(other.platform_); - } - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.util.List platform_ = - java.util.Collections.emptyList(); - private void ensurePlatformIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - platform_ = new java.util.ArrayList(platform_); - bitField0_ |= 0x00000001; - } - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return A list containing the platform. - */ - public java.util.List getPlatformList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(platform_, platform_converter_); - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return The count of platform. - */ - public int getPlatformCount() { - return platform_.size(); - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the element to return. - * @return The platform at the given index. - */ - public com.acme.glup.MetadataProto.Platform getPlatform(int index) { - return platform_converter_.convert(platform_.get(index)); - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index to set the value at. - * @param value The platform to set. - * @return This builder for chaining. - */ - public Builder setPlatform( - int index, com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensurePlatformIsMutable(); - platform_.set(index, value.getNumber()); - onChanged(); - return this; - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param value The platform to add. - * @return This builder for chaining. - */ - public Builder addPlatform(com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensurePlatformIsMutable(); - platform_.add(value.getNumber()); - onChanged(); - return this; - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param values The platform to add. - * @return This builder for chaining. - */ - public Builder addAllPlatform( - java.lang.Iterable values) { - ensurePlatformIsMutable(); - for (com.acme.glup.MetadataProto.Platform value : values) { - platform_.add(value.getNumber()); - } - onChanged(); - return this; - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return This builder for chaining. - */ - public Builder clearPlatform() { - platform_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @return A list containing the enum numeric values on the wire for platform. - */ - public java.util.List - getPlatformValueList() { - return java.util.Collections.unmodifiableList(platform_); - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platform at the given index. - */ - public int getPlatformValue(int index) { - return platform_.get(index); - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platform at the given index. - * @return This builder for chaining. - */ - public Builder setPlatformValue( - int index, int value) { - ensurePlatformIsMutable(); - platform_.set(index, value); - onChanged(); - return this; - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param value The enum numeric value on the wire for platform to add. - * @return This builder for chaining. - */ - public Builder addPlatformValue(int value) { - ensurePlatformIsMutable(); - platform_.add(value); - onChanged(); - return this; - } - /** - *
-             * settings specific to dataloader
-             * If no platform is defined, it will default to all platforms
-             * 
- * - * repeated .Acme.Glup.Platform platform = 1; - * @param values The enum numeric values on the wire for platform to add. - * @return This builder for chaining. - */ - public Builder addAllPlatformValue( - java.lang.Iterable values) { - ensurePlatformIsMutable(); - for (int value : values) { - platform_.add(value); - } - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DataloaderOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DataloaderOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface SyncOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return Whether the from field is set. - */ - boolean hasFrom(); - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return The from. - */ - com.acme.glup.MetadataProto.Location getFrom(); - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - */ - com.acme.glup.MetadataProto.LocationOrBuilder getFromOrBuilder(); - - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 3; - * @return The sourceNamespace. - */ - java.lang.String getSourceNamespace(); - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 3; - * @return The bytes for sourceNamespace. - */ - com.google.protobuf.ByteString - getSourceNamespaceBytes(); - - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return A list containing the platforms. - */ - java.util.List getPlatformsList(); - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return The count of platforms. - */ - int getPlatformsCount(); - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the element to return. - * @return The platforms at the given index. - */ - com.acme.glup.MetadataProto.Platform getPlatforms(int index); - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return A list containing the enum numeric values on the wire for platforms. - */ - java.util.List - getPlatformsValueList(); - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - */ - int getPlatformsValue(int index); - - /** - *
-           * define if sync is a backfilling (from now to oldest partitions
-           * 
- * - * bool is_backfilling = 8; - * @return The isBackfilling. - */ - boolean getIsBackfilling(); - - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_label = 9; - * @return The toLabel. - */ - java.lang.String getToLabel(); - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_label = 9; - * @return The bytes for toLabel. - */ - com.google.protobuf.ByteString - getToLabelBytes(); - - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_dataset_id = 10; - * @return The toDatasetId. - */ - java.lang.String getToDatasetId(); - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_dataset_id = 10; - * @return The bytes for toDatasetId. - */ - com.google.protobuf.ByteString - getToDatasetIdBytes(); - - /** - *
-           * define backfilling in addition to sync at the same time
-           * 
- * - * bool with_backfilling = 11; - * @return The withBackfilling. - */ - boolean getWithBackfilling(); - - /** - *
-           * defines whether should we schedule generator on to or from location
-           * 
- * - * bool is_scheduled_on_source = 12; - * @return The isScheduledOnSource. - */ - boolean getIsScheduledOnSource(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions} - */ - public static final class SyncOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions) - SyncOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use SyncOptions.newBuilder() to construct. - private SyncOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private SyncOptions() { - sourceNamespace_ = ""; - platforms_ = java.util.Collections.emptyList(); - toLabel_ = ""; - toDatasetId_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new SyncOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private SyncOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.Location.Builder subBuilder = null; - if (from_ != null) { - subBuilder = from_.toBuilder(); - } - from_ = input.readMessage(com.acme.glup.MetadataProto.Location.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(from_); - from_ = subBuilder.buildPartial(); - } - - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - sourceNamespace_ = s; - break; - } - case 48: { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - platforms_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - platforms_.add(rawValue); - break; - } - case 50: { - int length = input.readRawVarint32(); - int oldLimit = input.pushLimit(length); - while(input.getBytesUntilLimit() > 0) { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - platforms_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - platforms_.add(rawValue); - } - input.popLimit(oldLimit); - break; - } - case 64: { - - isBackfilling_ = input.readBool(); - break; - } - case 74: { - java.lang.String s = input.readStringRequireUtf8(); - - toLabel_ = s; - break; - } - case 82: { - java.lang.String s = input.readStringRequireUtf8(); - - toDatasetId_ = s; - break; - } - case 88: { - - withBackfilling_ = input.readBool(); - break; - } - case 96: { - - isScheduledOnSource_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - platforms_ = java.util.Collections.unmodifiableList(platforms_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder.class); - } - - public static final int FROM_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.Location from_; - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return Whether the from field is set. - */ - @java.lang.Override - public boolean hasFrom() { - return from_ != null; - } - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return The from. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Location getFrom() { - return from_ == null ? com.acme.glup.MetadataProto.Location.getDefaultInstance() : from_; - } - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.LocationOrBuilder getFromOrBuilder() { - return getFrom(); - } - - public static final int SOURCE_NAMESPACE_FIELD_NUMBER = 3; - private volatile java.lang.Object sourceNamespace_; - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 3; - * @return The sourceNamespace. - */ - @java.lang.Override - public java.lang.String getSourceNamespace() { - java.lang.Object ref = sourceNamespace_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - sourceNamespace_ = s; - return s; - } - } - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 3; - * @return The bytes for sourceNamespace. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSourceNamespaceBytes() { - java.lang.Object ref = sourceNamespace_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - sourceNamespace_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PLATFORMS_FIELD_NUMBER = 6; - private java.util.List platforms_; - private static final com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform> platforms_converter_ = - new com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>() { - public com.acme.glup.MetadataProto.Platform convert(java.lang.Integer from) { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(from); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - }; - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return A list containing the platforms. - */ - @java.lang.Override - public java.util.List getPlatformsList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(platforms_, platforms_converter_); - } - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return The count of platforms. - */ - @java.lang.Override - public int getPlatformsCount() { - return platforms_.size(); - } - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the element to return. - * @return The platforms at the given index. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Platform getPlatforms(int index) { - return platforms_converter_.convert(platforms_.get(index)); - } - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return A list containing the enum numeric values on the wire for platforms. - */ - @java.lang.Override - public java.util.List - getPlatformsValueList() { - return platforms_; - } - /** - *
-           * string start_date = 4;  // REMOVED because duplicates generator.start_date
-           * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - */ - @java.lang.Override - public int getPlatformsValue(int index) { - return platforms_.get(index); - } - private int platformsMemoizedSerializedSize; - - public static final int IS_BACKFILLING_FIELD_NUMBER = 8; - private boolean isBackfilling_; - /** - *
-           * define if sync is a backfilling (from now to oldest partitions
-           * 
- * - * bool is_backfilling = 8; - * @return The isBackfilling. - */ - @java.lang.Override - public boolean getIsBackfilling() { - return isBackfilling_; - } - - public static final int TO_LABEL_FIELD_NUMBER = 9; - private volatile java.lang.Object toLabel_; - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_label = 9; - * @return The toLabel. - */ - @java.lang.Override - public java.lang.String getToLabel() { - java.lang.Object ref = toLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - toLabel_ = s; - return s; - } - } - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_label = 9; - * @return The bytes for toLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getToLabelBytes() { - java.lang.Object ref = toLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - toLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int TO_DATASET_ID_FIELD_NUMBER = 10; - private volatile java.lang.Object toDatasetId_; - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_dataset_id = 10; - * @return The toDatasetId. - */ - @java.lang.Override - public java.lang.String getToDatasetId() { - java.lang.Object ref = toDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - toDatasetId_ = s; - return s; - } - } - /** - *
-           * define where data will be sync'ed, based on dataset_id and label
-           * 
- * - * string to_dataset_id = 10; - * @return The bytes for toDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getToDatasetIdBytes() { - java.lang.Object ref = toDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - toDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int WITH_BACKFILLING_FIELD_NUMBER = 11; - private boolean withBackfilling_; - /** - *
-           * define backfilling in addition to sync at the same time
-           * 
- * - * bool with_backfilling = 11; - * @return The withBackfilling. - */ - @java.lang.Override - public boolean getWithBackfilling() { - return withBackfilling_; - } - - public static final int IS_SCHEDULED_ON_SOURCE_FIELD_NUMBER = 12; - private boolean isScheduledOnSource_; - /** - *
-           * defines whether should we schedule generator on to or from location
-           * 
- * - * bool is_scheduled_on_source = 12; - * @return The isScheduledOnSource. - */ - @java.lang.Override - public boolean getIsScheduledOnSource() { - return isScheduledOnSource_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - getSerializedSize(); - if (from_ != null) { - output.writeMessage(1, getFrom()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sourceNamespace_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, sourceNamespace_); - } - if (getPlatformsList().size() > 0) { - output.writeUInt32NoTag(50); - output.writeUInt32NoTag(platformsMemoizedSerializedSize); - } - for (int i = 0; i < platforms_.size(); i++) { - output.writeEnumNoTag(platforms_.get(i)); - } - if (isBackfilling_ != false) { - output.writeBool(8, isBackfilling_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(toLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 9, toLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(toDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 10, toDatasetId_); - } - if (withBackfilling_ != false) { - output.writeBool(11, withBackfilling_); - } - if (isScheduledOnSource_ != false) { - output.writeBool(12, isScheduledOnSource_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (from_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getFrom()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sourceNamespace_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, sourceNamespace_); - } - { - int dataSize = 0; - for (int i = 0; i < platforms_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeEnumSizeNoTag(platforms_.get(i)); - } - size += dataSize; - if (!getPlatformsList().isEmpty()) { size += 1; - size += com.google.protobuf.CodedOutputStream - .computeUInt32SizeNoTag(dataSize); - }platformsMemoizedSerializedSize = dataSize; - } - if (isBackfilling_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(8, isBackfilling_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(toLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, toLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(toDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, toDatasetId_); - } - if (withBackfilling_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(11, withBackfilling_); - } - if (isScheduledOnSource_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(12, isScheduledOnSource_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions) obj; - - if (hasFrom() != other.hasFrom()) return false; - if (hasFrom()) { - if (!getFrom() - .equals(other.getFrom())) return false; - } - if (!getSourceNamespace() - .equals(other.getSourceNamespace())) return false; - if (!platforms_.equals(other.platforms_)) return false; - if (getIsBackfilling() - != other.getIsBackfilling()) return false; - if (!getToLabel() - .equals(other.getToLabel())) return false; - if (!getToDatasetId() - .equals(other.getToDatasetId())) return false; - if (getWithBackfilling() - != other.getWithBackfilling()) return false; - if (getIsScheduledOnSource() - != other.getIsScheduledOnSource()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasFrom()) { - hash = (37 * hash) + FROM_FIELD_NUMBER; - hash = (53 * hash) + getFrom().hashCode(); - } - hash = (37 * hash) + SOURCE_NAMESPACE_FIELD_NUMBER; - hash = (53 * hash) + getSourceNamespace().hashCode(); - if (getPlatformsCount() > 0) { - hash = (37 * hash) + PLATFORMS_FIELD_NUMBER; - hash = (53 * hash) + platforms_.hashCode(); - } - hash = (37 * hash) + IS_BACKFILLING_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIsBackfilling()); - hash = (37 * hash) + TO_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getToLabel().hashCode(); - hash = (37 * hash) + TO_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getToDatasetId().hashCode(); - hash = (37 * hash) + WITH_BACKFILLING_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getWithBackfilling()); - hash = (37 * hash) + IS_SCHEDULED_ON_SOURCE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIsScheduledOnSource()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (fromBuilder_ == null) { - from_ = null; - } else { - from_ = null; - fromBuilder_ = null; - } - sourceNamespace_ = ""; - - platforms_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - isBackfilling_ = false; - - toLabel_ = ""; - - toDatasetId_ = ""; - - withBackfilling_ = false; - - isScheduledOnSource_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions(this); - int from_bitField0_ = bitField0_; - if (fromBuilder_ == null) { - result.from_ = from_; - } else { - result.from_ = fromBuilder_.build(); - } - result.sourceNamespace_ = sourceNamespace_; - if (((bitField0_ & 0x00000001) != 0)) { - platforms_ = java.util.Collections.unmodifiableList(platforms_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.platforms_ = platforms_; - result.isBackfilling_ = isBackfilling_; - result.toLabel_ = toLabel_; - result.toDatasetId_ = toDatasetId_; - result.withBackfilling_ = withBackfilling_; - result.isScheduledOnSource_ = isScheduledOnSource_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.getDefaultInstance()) return this; - if (other.hasFrom()) { - mergeFrom(other.getFrom()); - } - if (!other.getSourceNamespace().isEmpty()) { - sourceNamespace_ = other.sourceNamespace_; - onChanged(); - } - if (!other.platforms_.isEmpty()) { - if (platforms_.isEmpty()) { - platforms_ = other.platforms_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensurePlatformsIsMutable(); - platforms_.addAll(other.platforms_); - } - onChanged(); - } - if (other.getIsBackfilling() != false) { - setIsBackfilling(other.getIsBackfilling()); - } - if (!other.getToLabel().isEmpty()) { - toLabel_ = other.toLabel_; - onChanged(); - } - if (!other.getToDatasetId().isEmpty()) { - toDatasetId_ = other.toDatasetId_; - onChanged(); - } - if (other.getWithBackfilling() != false) { - setWithBackfilling(other.getWithBackfilling()); - } - if (other.getIsScheduledOnSource() != false) { - setIsScheduledOnSource(other.getIsScheduledOnSource()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.acme.glup.MetadataProto.Location from_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder> fromBuilder_; - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - * @return Whether the from field is set. - */ - public boolean hasFrom() { - return fromBuilder_ != null || from_ != null; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - * @return The from. - */ - public com.acme.glup.MetadataProto.Location getFrom() { - if (fromBuilder_ == null) { - return from_ == null ? com.acme.glup.MetadataProto.Location.getDefaultInstance() : from_; - } else { - return fromBuilder_.getMessage(); - } - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder setFrom(com.acme.glup.MetadataProto.Location value) { - if (fromBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - from_ = value; - onChanged(); - } else { - fromBuilder_.setMessage(value); - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder setFrom( - com.acme.glup.MetadataProto.Location.Builder builderForValue) { - if (fromBuilder_ == null) { - from_ = builderForValue.build(); - onChanged(); - } else { - fromBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder mergeFrom(com.acme.glup.MetadataProto.Location value) { - if (fromBuilder_ == null) { - if (from_ != null) { - from_ = - com.acme.glup.MetadataProto.Location.newBuilder(from_).mergeFrom(value).buildPartial(); - } else { - from_ = value; - } - onChanged(); - } else { - fromBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder clearFrom() { - if (fromBuilder_ == null) { - from_ = null; - onChanged(); - } else { - from_ = null; - fromBuilder_ = null; - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public com.acme.glup.MetadataProto.Location.Builder getFromBuilder() { - - onChanged(); - return getFromFieldBuilder().getBuilder(); - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public com.acme.glup.MetadataProto.LocationOrBuilder getFromOrBuilder() { - if (fromBuilder_ != null) { - return fromBuilder_.getMessageOrBuilder(); - } else { - return from_ == null ? - com.acme.glup.MetadataProto.Location.getDefaultInstance() : from_; - } - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder> - getFromFieldBuilder() { - if (fromBuilder_ == null) { - fromBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder>( - getFrom(), - getParentForChildren(), - isClean()); - from_ = null; - } - return fromBuilder_; - } - - private java.lang.Object sourceNamespace_ = ""; - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 3; - * @return The sourceNamespace. - */ - public java.lang.String getSourceNamespace() { - java.lang.Object ref = sourceNamespace_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - sourceNamespace_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 3; - * @return The bytes for sourceNamespace. - */ - public com.google.protobuf.ByteString - getSourceNamespaceBytes() { - java.lang.Object ref = sourceNamespace_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - sourceNamespace_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 3; - * @param value The sourceNamespace to set. - * @return This builder for chaining. - */ - public Builder setSourceNamespace( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - sourceNamespace_ = value; - onChanged(); - return this; - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 3; - * @return This builder for chaining. - */ - public Builder clearSourceNamespace() { - - sourceNamespace_ = getDefaultInstance().getSourceNamespace(); - onChanged(); - return this; - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 3; - * @param value The bytes for sourceNamespace to set. - * @return This builder for chaining. - */ - public Builder setSourceNamespaceBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - sourceNamespace_ = value; - onChanged(); - return this; - } - - private java.util.List platforms_ = - java.util.Collections.emptyList(); - private void ensurePlatformsIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - platforms_ = new java.util.ArrayList(platforms_); - bitField0_ |= 0x00000001; - } - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return A list containing the platforms. - */ - public java.util.List getPlatformsList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(platforms_, platforms_converter_); - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return The count of platforms. - */ - public int getPlatformsCount() { - return platforms_.size(); - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the element to return. - * @return The platforms at the given index. - */ - public com.acme.glup.MetadataProto.Platform getPlatforms(int index) { - return platforms_converter_.convert(platforms_.get(index)); - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index to set the value at. - * @param value The platforms to set. - * @return This builder for chaining. - */ - public Builder setPlatforms( - int index, com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensurePlatformsIsMutable(); - platforms_.set(index, value.getNumber()); - onChanged(); - return this; - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param value The platforms to add. - * @return This builder for chaining. - */ - public Builder addPlatforms(com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensurePlatformsIsMutable(); - platforms_.add(value.getNumber()); - onChanged(); - return this; - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param values The platforms to add. - * @return This builder for chaining. - */ - public Builder addAllPlatforms( - java.lang.Iterable values) { - ensurePlatformsIsMutable(); - for (com.acme.glup.MetadataProto.Platform value : values) { - platforms_.add(value.getNumber()); - } - onChanged(); - return this; - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return This builder for chaining. - */ - public Builder clearPlatforms() { - platforms_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @return A list containing the enum numeric values on the wire for platforms. - */ - public java.util.List - getPlatformsValueList() { - return java.util.Collections.unmodifiableList(platforms_); - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - */ - public int getPlatformsValue(int index) { - return platforms_.get(index); - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - * @return This builder for chaining. - */ - public Builder setPlatformsValue( - int index, int value) { - ensurePlatformsIsMutable(); - platforms_.set(index, value); - onChanged(); - return this; - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param value The enum numeric value on the wire for platforms to add. - * @return This builder for chaining. - */ - public Builder addPlatformsValue(int value) { - ensurePlatformsIsMutable(); - platforms_.add(value); - onChanged(); - return this; - } - /** - *
-             * string start_date = 4;  // REMOVED because duplicates generator.start_date
-             * string stop_date = 5;  // REMOVED because duplicates generator.stop_date
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 6; - * @param values The enum numeric values on the wire for platforms to add. - * @return This builder for chaining. - */ - public Builder addAllPlatformsValue( - java.lang.Iterable values) { - ensurePlatformsIsMutable(); - for (int value : values) { - platforms_.add(value); - } - onChanged(); - return this; - } - - private boolean isBackfilling_ ; - /** - *
-             * define if sync is a backfilling (from now to oldest partitions
-             * 
- * - * bool is_backfilling = 8; - * @return The isBackfilling. - */ - @java.lang.Override - public boolean getIsBackfilling() { - return isBackfilling_; - } - /** - *
-             * define if sync is a backfilling (from now to oldest partitions
-             * 
- * - * bool is_backfilling = 8; - * @param value The isBackfilling to set. - * @return This builder for chaining. - */ - public Builder setIsBackfilling(boolean value) { - - isBackfilling_ = value; - onChanged(); - return this; - } - /** - *
-             * define if sync is a backfilling (from now to oldest partitions
-             * 
- * - * bool is_backfilling = 8; - * @return This builder for chaining. - */ - public Builder clearIsBackfilling() { - - isBackfilling_ = false; - onChanged(); - return this; - } - - private java.lang.Object toLabel_ = ""; - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_label = 9; - * @return The toLabel. - */ - public java.lang.String getToLabel() { - java.lang.Object ref = toLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - toLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_label = 9; - * @return The bytes for toLabel. - */ - public com.google.protobuf.ByteString - getToLabelBytes() { - java.lang.Object ref = toLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - toLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_label = 9; - * @param value The toLabel to set. - * @return This builder for chaining. - */ - public Builder setToLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - toLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_label = 9; - * @return This builder for chaining. - */ - public Builder clearToLabel() { - - toLabel_ = getDefaultInstance().getToLabel(); - onChanged(); - return this; - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_label = 9; - * @param value The bytes for toLabel to set. - * @return This builder for chaining. - */ - public Builder setToLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - toLabel_ = value; - onChanged(); - return this; - } - - private java.lang.Object toDatasetId_ = ""; - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_dataset_id = 10; - * @return The toDatasetId. - */ - public java.lang.String getToDatasetId() { - java.lang.Object ref = toDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - toDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_dataset_id = 10; - * @return The bytes for toDatasetId. - */ - public com.google.protobuf.ByteString - getToDatasetIdBytes() { - java.lang.Object ref = toDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - toDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_dataset_id = 10; - * @param value The toDatasetId to set. - * @return This builder for chaining. - */ - public Builder setToDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - toDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_dataset_id = 10; - * @return This builder for chaining. - */ - public Builder clearToDatasetId() { - - toDatasetId_ = getDefaultInstance().getToDatasetId(); - onChanged(); - return this; - } - /** - *
-             * define where data will be sync'ed, based on dataset_id and label
-             * 
- * - * string to_dataset_id = 10; - * @param value The bytes for toDatasetId to set. - * @return This builder for chaining. - */ - public Builder setToDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - toDatasetId_ = value; - onChanged(); - return this; - } - - private boolean withBackfilling_ ; - /** - *
-             * define backfilling in addition to sync at the same time
-             * 
- * - * bool with_backfilling = 11; - * @return The withBackfilling. - */ - @java.lang.Override - public boolean getWithBackfilling() { - return withBackfilling_; - } - /** - *
-             * define backfilling in addition to sync at the same time
-             * 
- * - * bool with_backfilling = 11; - * @param value The withBackfilling to set. - * @return This builder for chaining. - */ - public Builder setWithBackfilling(boolean value) { - - withBackfilling_ = value; - onChanged(); - return this; - } - /** - *
-             * define backfilling in addition to sync at the same time
-             * 
- * - * bool with_backfilling = 11; - * @return This builder for chaining. - */ - public Builder clearWithBackfilling() { - - withBackfilling_ = false; - onChanged(); - return this; - } - - private boolean isScheduledOnSource_ ; - /** - *
-             * defines whether should we schedule generator on to or from location
-             * 
- * - * bool is_scheduled_on_source = 12; - * @return The isScheduledOnSource. - */ - @java.lang.Override - public boolean getIsScheduledOnSource() { - return isScheduledOnSource_; - } - /** - *
-             * defines whether should we schedule generator on to or from location
-             * 
- * - * bool is_scheduled_on_source = 12; - * @param value The isScheduledOnSource to set. - * @return This builder for chaining. - */ - public Builder setIsScheduledOnSource(boolean value) { - - isScheduledOnSource_ = value; - onChanged(); - return this; - } - /** - *
-             * defines whether should we schedule generator on to or from location
-             * 
- * - * bool is_scheduled_on_source = 12; - * @return This builder for chaining. - */ - public Builder clearIsScheduledOnSource() { - - isScheduledOnSource_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public SyncOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new SyncOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface BackupOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return Whether the from field is set. - */ - boolean hasFrom(); - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return The from. - */ - com.acme.glup.MetadataProto.Location getFrom(); - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - */ - com.acme.glup.MetadataProto.LocationOrBuilder getFromOrBuilder(); - - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 2; - * @return The sourceNamespace. - */ - java.lang.String getSourceNamespace(); - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 2; - * @return The bytes for sourceNamespace. - */ - com.google.protobuf.ByteString - getSourceNamespaceBytes(); - - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return A list containing the platforms. - */ - java.util.List getPlatformsList(); - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return The count of platforms. - */ - int getPlatformsCount(); - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the element to return. - * @return The platforms at the given index. - */ - com.acme.glup.MetadataProto.Platform getPlatforms(int index); - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return A list containing the enum numeric values on the wire for platforms. - */ - java.util.List - getPlatformsValueList(); - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - */ - int getPlatformsValue(int index); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions} - */ - public static final class BackupOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions) - BackupOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use BackupOptions.newBuilder() to construct. - private BackupOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private BackupOptions() { - sourceNamespace_ = ""; - platforms_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new BackupOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private BackupOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.Location.Builder subBuilder = null; - if (from_ != null) { - subBuilder = from_.toBuilder(); - } - from_ = input.readMessage(com.acme.glup.MetadataProto.Location.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(from_); - from_ = subBuilder.buildPartial(); - } - - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - sourceNamespace_ = s; - break; - } - case 24: { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - platforms_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - platforms_.add(rawValue); - break; - } - case 26: { - int length = input.readRawVarint32(); - int oldLimit = input.pushLimit(length); - while(input.getBytesUntilLimit() > 0) { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - platforms_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - platforms_.add(rawValue); - } - input.popLimit(oldLimit); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - platforms_ = java.util.Collections.unmodifiableList(platforms_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder.class); - } - - public static final int FROM_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.Location from_; - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return Whether the from field is set. - */ - @java.lang.Override - public boolean hasFrom() { - return from_ != null; - } - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - * @return The from. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Location getFrom() { - return from_ == null ? com.acme.glup.MetadataProto.Location.getDefaultInstance() : from_; - } - /** - *
-           * defines the source of the sync
-           * 
- * - * .Acme.Glup.Location from = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.LocationOrBuilder getFromOrBuilder() { - return getFrom(); - } - - public static final int SOURCE_NAMESPACE_FIELD_NUMBER = 2; - private volatile java.lang.Object sourceNamespace_; - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 2; - * @return The sourceNamespace. - */ - @java.lang.Override - public java.lang.String getSourceNamespace() { - java.lang.Object ref = sourceNamespace_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - sourceNamespace_ = s; - return s; - } - } - /** - *
-           * The default is glup
-           * 
- * - * string source_namespace = 2; - * @return The bytes for sourceNamespace. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSourceNamespaceBytes() { - java.lang.Object ref = sourceNamespace_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - sourceNamespace_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PLATFORMS_FIELD_NUMBER = 3; - private java.util.List platforms_; - private static final com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform> platforms_converter_ = - new com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>() { - public com.acme.glup.MetadataProto.Platform convert(java.lang.Integer from) { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(from); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - }; - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return A list containing the platforms. - */ - @java.lang.Override - public java.util.List getPlatformsList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(platforms_, platforms_converter_); - } - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return The count of platforms. - */ - @java.lang.Override - public int getPlatformsCount() { - return platforms_.size(); - } - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the element to return. - * @return The platforms at the given index. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Platform getPlatforms(int index) { - return platforms_converter_.convert(platforms_.get(index)); - } - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return A list containing the enum numeric values on the wire for platforms. - */ - @java.lang.Override - public java.util.List - getPlatformsValueList() { - return platforms_; - } - /** - *
-           * default is all platforms.
-           * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - */ - @java.lang.Override - public int getPlatformsValue(int index) { - return platforms_.get(index); - } - private int platformsMemoizedSerializedSize; - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - getSerializedSize(); - if (from_ != null) { - output.writeMessage(1, getFrom()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sourceNamespace_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, sourceNamespace_); - } - if (getPlatformsList().size() > 0) { - output.writeUInt32NoTag(26); - output.writeUInt32NoTag(platformsMemoizedSerializedSize); - } - for (int i = 0; i < platforms_.size(); i++) { - output.writeEnumNoTag(platforms_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (from_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getFrom()); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sourceNamespace_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, sourceNamespace_); - } - { - int dataSize = 0; - for (int i = 0; i < platforms_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeEnumSizeNoTag(platforms_.get(i)); - } - size += dataSize; - if (!getPlatformsList().isEmpty()) { size += 1; - size += com.google.protobuf.CodedOutputStream - .computeUInt32SizeNoTag(dataSize); - }platformsMemoizedSerializedSize = dataSize; - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions) obj; - - if (hasFrom() != other.hasFrom()) return false; - if (hasFrom()) { - if (!getFrom() - .equals(other.getFrom())) return false; - } - if (!getSourceNamespace() - .equals(other.getSourceNamespace())) return false; - if (!platforms_.equals(other.platforms_)) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasFrom()) { - hash = (37 * hash) + FROM_FIELD_NUMBER; - hash = (53 * hash) + getFrom().hashCode(); - } - hash = (37 * hash) + SOURCE_NAMESPACE_FIELD_NUMBER; - hash = (53 * hash) + getSourceNamespace().hashCode(); - if (getPlatformsCount() > 0) { - hash = (37 * hash) + PLATFORMS_FIELD_NUMBER; - hash = (53 * hash) + platforms_.hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (fromBuilder_ == null) { - from_ = null; - } else { - from_ = null; - fromBuilder_ = null; - } - sourceNamespace_ = ""; - - platforms_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions(this); - int from_bitField0_ = bitField0_; - if (fromBuilder_ == null) { - result.from_ = from_; - } else { - result.from_ = fromBuilder_.build(); - } - result.sourceNamespace_ = sourceNamespace_; - if (((bitField0_ & 0x00000001) != 0)) { - platforms_ = java.util.Collections.unmodifiableList(platforms_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.platforms_ = platforms_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.getDefaultInstance()) return this; - if (other.hasFrom()) { - mergeFrom(other.getFrom()); - } - if (!other.getSourceNamespace().isEmpty()) { - sourceNamespace_ = other.sourceNamespace_; - onChanged(); - } - if (!other.platforms_.isEmpty()) { - if (platforms_.isEmpty()) { - platforms_ = other.platforms_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensurePlatformsIsMutable(); - platforms_.addAll(other.platforms_); - } - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.acme.glup.MetadataProto.Location from_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder> fromBuilder_; - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - * @return Whether the from field is set. - */ - public boolean hasFrom() { - return fromBuilder_ != null || from_ != null; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - * @return The from. - */ - public com.acme.glup.MetadataProto.Location getFrom() { - if (fromBuilder_ == null) { - return from_ == null ? com.acme.glup.MetadataProto.Location.getDefaultInstance() : from_; - } else { - return fromBuilder_.getMessage(); - } - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder setFrom(com.acme.glup.MetadataProto.Location value) { - if (fromBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - from_ = value; - onChanged(); - } else { - fromBuilder_.setMessage(value); - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder setFrom( - com.acme.glup.MetadataProto.Location.Builder builderForValue) { - if (fromBuilder_ == null) { - from_ = builderForValue.build(); - onChanged(); - } else { - fromBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder mergeFrom(com.acme.glup.MetadataProto.Location value) { - if (fromBuilder_ == null) { - if (from_ != null) { - from_ = - com.acme.glup.MetadataProto.Location.newBuilder(from_).mergeFrom(value).buildPartial(); - } else { - from_ = value; - } - onChanged(); - } else { - fromBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public Builder clearFrom() { - if (fromBuilder_ == null) { - from_ = null; - onChanged(); - } else { - from_ = null; - fromBuilder_ = null; - } - - return this; - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public com.acme.glup.MetadataProto.Location.Builder getFromBuilder() { - - onChanged(); - return getFromFieldBuilder().getBuilder(); - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - public com.acme.glup.MetadataProto.LocationOrBuilder getFromOrBuilder() { - if (fromBuilder_ != null) { - return fromBuilder_.getMessageOrBuilder(); - } else { - return from_ == null ? - com.acme.glup.MetadataProto.Location.getDefaultInstance() : from_; - } - } - /** - *
-             * defines the source of the sync
-             * 
- * - * .Acme.Glup.Location from = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder> - getFromFieldBuilder() { - if (fromBuilder_ == null) { - fromBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder>( - getFrom(), - getParentForChildren(), - isClean()); - from_ = null; - } - return fromBuilder_; - } - - private java.lang.Object sourceNamespace_ = ""; - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 2; - * @return The sourceNamespace. - */ - public java.lang.String getSourceNamespace() { - java.lang.Object ref = sourceNamespace_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - sourceNamespace_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 2; - * @return The bytes for sourceNamespace. - */ - public com.google.protobuf.ByteString - getSourceNamespaceBytes() { - java.lang.Object ref = sourceNamespace_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - sourceNamespace_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 2; - * @param value The sourceNamespace to set. - * @return This builder for chaining. - */ - public Builder setSourceNamespace( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - sourceNamespace_ = value; - onChanged(); - return this; - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 2; - * @return This builder for chaining. - */ - public Builder clearSourceNamespace() { - - sourceNamespace_ = getDefaultInstance().getSourceNamespace(); - onChanged(); - return this; - } - /** - *
-             * The default is glup
-             * 
- * - * string source_namespace = 2; - * @param value The bytes for sourceNamespace to set. - * @return This builder for chaining. - */ - public Builder setSourceNamespaceBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - sourceNamespace_ = value; - onChanged(); - return this; - } - - private java.util.List platforms_ = - java.util.Collections.emptyList(); - private void ensurePlatformsIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - platforms_ = new java.util.ArrayList(platforms_); - bitField0_ |= 0x00000001; - } - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return A list containing the platforms. - */ - public java.util.List getPlatformsList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(platforms_, platforms_converter_); - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return The count of platforms. - */ - public int getPlatformsCount() { - return platforms_.size(); - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the element to return. - * @return The platforms at the given index. - */ - public com.acme.glup.MetadataProto.Platform getPlatforms(int index) { - return platforms_converter_.convert(platforms_.get(index)); - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index to set the value at. - * @param value The platforms to set. - * @return This builder for chaining. - */ - public Builder setPlatforms( - int index, com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensurePlatformsIsMutable(); - platforms_.set(index, value.getNumber()); - onChanged(); - return this; - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param value The platforms to add. - * @return This builder for chaining. - */ - public Builder addPlatforms(com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensurePlatformsIsMutable(); - platforms_.add(value.getNumber()); - onChanged(); - return this; - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param values The platforms to add. - * @return This builder for chaining. - */ - public Builder addAllPlatforms( - java.lang.Iterable values) { - ensurePlatformsIsMutable(); - for (com.acme.glup.MetadataProto.Platform value : values) { - platforms_.add(value.getNumber()); - } - onChanged(); - return this; - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return This builder for chaining. - */ - public Builder clearPlatforms() { - platforms_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @return A list containing the enum numeric values on the wire for platforms. - */ - public java.util.List - getPlatformsValueList() { - return java.util.Collections.unmodifiableList(platforms_); - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - */ - public int getPlatformsValue(int index) { - return platforms_.get(index); - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of platforms at the given index. - * @return This builder for chaining. - */ - public Builder setPlatformsValue( - int index, int value) { - ensurePlatformsIsMutable(); - platforms_.set(index, value); - onChanged(); - return this; - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param value The enum numeric value on the wire for platforms to add. - * @return This builder for chaining. - */ - public Builder addPlatformsValue(int value) { - ensurePlatformsIsMutable(); - platforms_.add(value); - onChanged(); - return this; - } - /** - *
-             * default is all platforms.
-             * 
- * - * repeated .Acme.Glup.Platform platforms = 3; - * @param values The enum numeric values on the wire for platforms to add. - * @return This builder for chaining. - */ - public Builder addAllPlatformsValue( - java.lang.Iterable values) { - ensurePlatformsIsMutable(); - for (int value : values) { - platforms_.add(value); - } - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public BackupOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new BackupOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface TranscodingOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * id of the source data set
-           * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - java.lang.String getInputDatasetId(); - /** - *
-           * id of the source data set
-           * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - com.google.protobuf.ByteString - getInputDatasetIdBytes(); - - /** - *
-           * id of the target data set, it can be the same as the source
-           * 
- * - * string output_dataset_id = 2; - * @return The outputDatasetId. - */ - java.lang.String getOutputDatasetId(); - /** - *
-           * id of the target data set, it can be the same as the source
-           * 
- * - * string output_dataset_id = 2; - * @return The bytes for outputDatasetId. - */ - com.google.protobuf.ByteString - getOutputDatasetIdBytes(); - - /** - *
-           * format of the source data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return The enum numeric value on the wire for inputFormat. - */ - int getInputFormatValue(); - /** - *
-           * format of the source data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return The inputFormat. - */ - com.acme.glup.MetadataProto.HDFSDataFormat getInputFormat(); - - /** - *
-           * format of the target data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return The enum numeric value on the wire for outputFormat. - */ - int getOutputFormatValue(); - /** - *
-           * format of the target data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return The outputFormat. - */ - com.acme.glup.MetadataProto.HDFSDataFormat getOutputFormat(); - - /** - *
-           * input format label
-           * 
- * - * string input_dataset_label = 5; - * @return The inputDatasetLabel. - */ - java.lang.String getInputDatasetLabel(); - /** - *
-           * input format label
-           * 
- * - * string input_dataset_label = 5; - * @return The bytes for inputDatasetLabel. - */ - com.google.protobuf.ByteString - getInputDatasetLabelBytes(); - - /** - *
-           * output format label
-           * 
- * - * string output_dataset_label = 6; - * @return The outputDatasetLabel. - */ - java.lang.String getOutputDatasetLabel(); - /** - *
-           * output format label
-           * 
- * - * string output_dataset_label = 6; - * @return The bytes for outputDatasetLabel. - */ - com.google.protobuf.ByteString - getOutputDatasetLabelBytes(); - - /** - *
-           * transcoding job should work by platform
-           * 
- * - * bool is_by_platform = 7; - * @return The isByPlatform. - */ - boolean getIsByPlatform(); - } - /** - *
-         * Defines how to transcode data from one format to an other
-         * 
- * - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions} - */ - public static final class TranscodingOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions) - TranscodingOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use TranscodingOptions.newBuilder() to construct. - private TranscodingOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private TranscodingOptions() { - inputDatasetId_ = ""; - outputDatasetId_ = ""; - inputFormat_ = 0; - outputFormat_ = 0; - inputDatasetLabel_ = ""; - outputDatasetLabel_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new TranscodingOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private TranscodingOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - inputDatasetId_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - outputDatasetId_ = s; - break; - } - case 24: { - int rawValue = input.readEnum(); - - inputFormat_ = rawValue; - break; - } - case 32: { - int rawValue = input.readEnum(); - - outputFormat_ = rawValue; - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); - - inputDatasetLabel_ = s; - break; - } - case 50: { - java.lang.String s = input.readStringRequireUtf8(); - - outputDatasetLabel_ = s; - break; - } - case 56: { - - isByPlatform_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder.class); - } - - public static final int INPUT_DATASET_ID_FIELD_NUMBER = 1; - private volatile java.lang.Object inputDatasetId_; - /** - *
-           * id of the source data set
-           * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - @java.lang.Override - public java.lang.String getInputDatasetId() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetId_ = s; - return s; - } - } - /** - *
-           * id of the source data set
-           * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getInputDatasetIdBytes() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_DATASET_ID_FIELD_NUMBER = 2; - private volatile java.lang.Object outputDatasetId_; - /** - *
-           * id of the target data set, it can be the same as the source
-           * 
- * - * string output_dataset_id = 2; - * @return The outputDatasetId. - */ - @java.lang.Override - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } - } - /** - *
-           * id of the target data set, it can be the same as the source
-           * 
- * - * string output_dataset_id = 2; - * @return The bytes for outputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int INPUT_FORMAT_FIELD_NUMBER = 3; - private int inputFormat_; - /** - *
-           * format of the source data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return The enum numeric value on the wire for inputFormat. - */ - @java.lang.Override public int getInputFormatValue() { - return inputFormat_; - } - /** - *
-           * format of the source data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return The inputFormat. - */ - @java.lang.Override public com.acme.glup.MetadataProto.HDFSDataFormat getInputFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(inputFormat_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - - public static final int OUTPUT_FORMAT_FIELD_NUMBER = 4; - private int outputFormat_; - /** - *
-           * format of the target data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return The enum numeric value on the wire for outputFormat. - */ - @java.lang.Override public int getOutputFormatValue() { - return outputFormat_; - } - /** - *
-           * format of the target data set
-           * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return The outputFormat. - */ - @java.lang.Override public com.acme.glup.MetadataProto.HDFSDataFormat getOutputFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(outputFormat_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - - public static final int INPUT_DATASET_LABEL_FIELD_NUMBER = 5; - private volatile java.lang.Object inputDatasetLabel_; - /** - *
-           * input format label
-           * 
- * - * string input_dataset_label = 5; - * @return The inputDatasetLabel. - */ - @java.lang.Override - public java.lang.String getInputDatasetLabel() { - java.lang.Object ref = inputDatasetLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetLabel_ = s; - return s; - } - } - /** - *
-           * input format label
-           * 
- * - * string input_dataset_label = 5; - * @return The bytes for inputDatasetLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getInputDatasetLabelBytes() { - java.lang.Object ref = inputDatasetLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_DATASET_LABEL_FIELD_NUMBER = 6; - private volatile java.lang.Object outputDatasetLabel_; - /** - *
-           * output format label
-           * 
- * - * string output_dataset_label = 6; - * @return The outputDatasetLabel. - */ - @java.lang.Override - public java.lang.String getOutputDatasetLabel() { - java.lang.Object ref = outputDatasetLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetLabel_ = s; - return s; - } - } - /** - *
-           * output format label
-           * 
- * - * string output_dataset_label = 6; - * @return The bytes for outputDatasetLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputDatasetLabelBytes() { - java.lang.Object ref = outputDatasetLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int IS_BY_PLATFORM_FIELD_NUMBER = 7; - private boolean isByPlatform_; - /** - *
-           * transcoding job should work by platform
-           * 
- * - * bool is_by_platform = 7; - * @return The isByPlatform. - */ - @java.lang.Override - public boolean getIsByPlatform() { - return isByPlatform_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, inputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, outputDatasetId_); - } - if (inputFormat_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - output.writeEnum(3, inputFormat_); - } - if (outputFormat_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - output.writeEnum(4, outputFormat_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, inputDatasetLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 6, outputDatasetLabel_); - } - if (isByPlatform_ != false) { - output.writeBool(7, isByPlatform_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, inputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, outputDatasetId_); - } - if (inputFormat_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, inputFormat_); - } - if (outputFormat_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(4, outputFormat_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, inputDatasetLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, outputDatasetLabel_); - } - if (isByPlatform_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(7, isByPlatform_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions) obj; - - if (!getInputDatasetId() - .equals(other.getInputDatasetId())) return false; - if (!getOutputDatasetId() - .equals(other.getOutputDatasetId())) return false; - if (inputFormat_ != other.inputFormat_) return false; - if (outputFormat_ != other.outputFormat_) return false; - if (!getInputDatasetLabel() - .equals(other.getInputDatasetLabel())) return false; - if (!getOutputDatasetLabel() - .equals(other.getOutputDatasetLabel())) return false; - if (getIsByPlatform() - != other.getIsByPlatform()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + INPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getInputDatasetId().hashCode(); - hash = (37 * hash) + OUTPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getOutputDatasetId().hashCode(); - hash = (37 * hash) + INPUT_FORMAT_FIELD_NUMBER; - hash = (53 * hash) + inputFormat_; - hash = (37 * hash) + OUTPUT_FORMAT_FIELD_NUMBER; - hash = (53 * hash) + outputFormat_; - hash = (37 * hash) + INPUT_DATASET_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getInputDatasetLabel().hashCode(); - hash = (37 * hash) + OUTPUT_DATASET_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getOutputDatasetLabel().hashCode(); - hash = (37 * hash) + IS_BY_PLATFORM_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIsByPlatform()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-           * Defines how to transcode data from one format to an other
-           * 
- * - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - inputDatasetId_ = ""; - - outputDatasetId_ = ""; - - inputFormat_ = 0; - - outputFormat_ = 0; - - inputDatasetLabel_ = ""; - - outputDatasetLabel_ = ""; - - isByPlatform_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions(this); - result.inputDatasetId_ = inputDatasetId_; - result.outputDatasetId_ = outputDatasetId_; - result.inputFormat_ = inputFormat_; - result.outputFormat_ = outputFormat_; - result.inputDatasetLabel_ = inputDatasetLabel_; - result.outputDatasetLabel_ = outputDatasetLabel_; - result.isByPlatform_ = isByPlatform_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.getDefaultInstance()) return this; - if (!other.getInputDatasetId().isEmpty()) { - inputDatasetId_ = other.inputDatasetId_; - onChanged(); - } - if (!other.getOutputDatasetId().isEmpty()) { - outputDatasetId_ = other.outputDatasetId_; - onChanged(); - } - if (other.inputFormat_ != 0) { - setInputFormatValue(other.getInputFormatValue()); - } - if (other.outputFormat_ != 0) { - setOutputFormatValue(other.getOutputFormatValue()); - } - if (!other.getInputDatasetLabel().isEmpty()) { - inputDatasetLabel_ = other.inputDatasetLabel_; - onChanged(); - } - if (!other.getOutputDatasetLabel().isEmpty()) { - outputDatasetLabel_ = other.outputDatasetLabel_; - onChanged(); - } - if (other.getIsByPlatform() != false) { - setIsByPlatform(other.getIsByPlatform()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object inputDatasetId_ = ""; - /** - *
-             * id of the source data set
-             * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - public java.lang.String getInputDatasetId() { - java.lang.Object ref = inputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * id of the source data set
-             * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - public com.google.protobuf.ByteString - getInputDatasetIdBytes() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * id of the source data set
-             * 
- * - * string input_dataset_id = 1; - * @param value The inputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - inputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * id of the source data set
-             * 
- * - * string input_dataset_id = 1; - * @return This builder for chaining. - */ - public Builder clearInputDatasetId() { - - inputDatasetId_ = getDefaultInstance().getInputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * id of the source data set
-             * 
- * - * string input_dataset_id = 1; - * @param value The bytes for inputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - inputDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputDatasetId_ = ""; - /** - *
-             * id of the target data set, it can be the same as the source
-             * 
- * - * string output_dataset_id = 2; - * @return The outputDatasetId. - */ - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * id of the target data set, it can be the same as the source
-             * 
- * - * string output_dataset_id = 2; - * @return The bytes for outputDatasetId. - */ - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * id of the target data set, it can be the same as the source
-             * 
- * - * string output_dataset_id = 2; - * @param value The outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * id of the target data set, it can be the same as the source
-             * 
- * - * string output_dataset_id = 2; - * @return This builder for chaining. - */ - public Builder clearOutputDatasetId() { - - outputDatasetId_ = getDefaultInstance().getOutputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * id of the target data set, it can be the same as the source
-             * 
- * - * string output_dataset_id = 2; - * @param value The bytes for outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputDatasetId_ = value; - onChanged(); - return this; - } - - private int inputFormat_ = 0; - /** - *
-             * format of the source data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return The enum numeric value on the wire for inputFormat. - */ - @java.lang.Override public int getInputFormatValue() { - return inputFormat_; - } - /** - *
-             * format of the source data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @param value The enum numeric value on the wire for inputFormat to set. - * @return This builder for chaining. - */ - public Builder setInputFormatValue(int value) { - - inputFormat_ = value; - onChanged(); - return this; - } - /** - *
-             * format of the source data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return The inputFormat. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSDataFormat getInputFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(inputFormat_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - /** - *
-             * format of the source data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @param value The inputFormat to set. - * @return This builder for chaining. - */ - public Builder setInputFormat(com.acme.glup.MetadataProto.HDFSDataFormat value) { - if (value == null) { - throw new NullPointerException(); - } - - inputFormat_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-             * format of the source data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat input_format = 3; - * @return This builder for chaining. - */ - public Builder clearInputFormat() { - - inputFormat_ = 0; - onChanged(); - return this; - } - - private int outputFormat_ = 0; - /** - *
-             * format of the target data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return The enum numeric value on the wire for outputFormat. - */ - @java.lang.Override public int getOutputFormatValue() { - return outputFormat_; - } - /** - *
-             * format of the target data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @param value The enum numeric value on the wire for outputFormat to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatValue(int value) { - - outputFormat_ = value; - onChanged(); - return this; - } - /** - *
-             * format of the target data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return The outputFormat. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSDataFormat getOutputFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(outputFormat_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - /** - *
-             * format of the target data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @param value The outputFormat to set. - * @return This builder for chaining. - */ - public Builder setOutputFormat(com.acme.glup.MetadataProto.HDFSDataFormat value) { - if (value == null) { - throw new NullPointerException(); - } - - outputFormat_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-             * format of the target data set
-             * 
- * - * .Acme.Glup.HDFSDataFormat output_format = 4; - * @return This builder for chaining. - */ - public Builder clearOutputFormat() { - - outputFormat_ = 0; - onChanged(); - return this; - } - - private java.lang.Object inputDatasetLabel_ = ""; - /** - *
-             * input format label
-             * 
- * - * string input_dataset_label = 5; - * @return The inputDatasetLabel. - */ - public java.lang.String getInputDatasetLabel() { - java.lang.Object ref = inputDatasetLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * input format label
-             * 
- * - * string input_dataset_label = 5; - * @return The bytes for inputDatasetLabel. - */ - public com.google.protobuf.ByteString - getInputDatasetLabelBytes() { - java.lang.Object ref = inputDatasetLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * input format label
-             * 
- * - * string input_dataset_label = 5; - * @param value The inputDatasetLabel to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - inputDatasetLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * input format label
-             * 
- * - * string input_dataset_label = 5; - * @return This builder for chaining. - */ - public Builder clearInputDatasetLabel() { - - inputDatasetLabel_ = getDefaultInstance().getInputDatasetLabel(); - onChanged(); - return this; - } - /** - *
-             * input format label
-             * 
- * - * string input_dataset_label = 5; - * @param value The bytes for inputDatasetLabel to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - inputDatasetLabel_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputDatasetLabel_ = ""; - /** - *
-             * output format label
-             * 
- * - * string output_dataset_label = 6; - * @return The outputDatasetLabel. - */ - public java.lang.String getOutputDatasetLabel() { - java.lang.Object ref = outputDatasetLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * output format label
-             * 
- * - * string output_dataset_label = 6; - * @return The bytes for outputDatasetLabel. - */ - public com.google.protobuf.ByteString - getOutputDatasetLabelBytes() { - java.lang.Object ref = outputDatasetLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * output format label
-             * 
- * - * string output_dataset_label = 6; - * @param value The outputDatasetLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputDatasetLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * output format label
-             * 
- * - * string output_dataset_label = 6; - * @return This builder for chaining. - */ - public Builder clearOutputDatasetLabel() { - - outputDatasetLabel_ = getDefaultInstance().getOutputDatasetLabel(); - onChanged(); - return this; - } - /** - *
-             * output format label
-             * 
- * - * string output_dataset_label = 6; - * @param value The bytes for outputDatasetLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputDatasetLabel_ = value; - onChanged(); - return this; - } - - private boolean isByPlatform_ ; - /** - *
-             * transcoding job should work by platform
-             * 
- * - * bool is_by_platform = 7; - * @return The isByPlatform. - */ - @java.lang.Override - public boolean getIsByPlatform() { - return isByPlatform_; - } - /** - *
-             * transcoding job should work by platform
-             * 
- * - * bool is_by_platform = 7; - * @param value The isByPlatform to set. - * @return This builder for chaining. - */ - public Builder setIsByPlatform(boolean value) { - - isByPlatform_ = value; - onChanged(); - return this; - } - /** - *
-             * transcoding job should work by platform
-             * 
- * - * bool is_by_platform = 7; - * @return This builder for chaining. - */ - public Builder clearIsByPlatform() { - - isByPlatform_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TranscodingOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new TranscodingOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface SamplerOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * Name of input dataset to sample
-           * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - java.lang.String getInputDatasetId(); - /** - *
-           * Name of input dataset to sample
-           * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - com.google.protobuf.ByteString - getInputDatasetIdBytes(); - - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The inputFormatLabel. - */ - java.lang.String getInputFormatLabel(); - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The bytes for inputFormatLabel. - */ - com.google.protobuf.ByteString - getInputFormatLabelBytes(); - - /** - *
-           * Name of output dataset to sample
-           * 
- * - * string output_dataset_id = 3; - * @return The outputDatasetId. - */ - java.lang.String getOutputDatasetId(); - /** - *
-           * Name of output dataset to sample
-           * 
- * - * string output_dataset_id = 3; - * @return The bytes for outputDatasetId. - */ - com.google.protobuf.ByteString - getOutputDatasetIdBytes(); - - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The outputFormatLabel. - */ - java.lang.String getOutputFormatLabel(); - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The bytes for outputFormatLabel. - */ - com.google.protobuf.ByteString - getOutputFormatLabelBytes(); - - /** - *
-           * Sampling rate between 0 and 1
-           * 
- * - * float sampling_rate = 5; - * @return The samplingRate. - */ - float getSamplingRate(); - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions} - */ - public static final class SamplerOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions) - SamplerOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use SamplerOptions.newBuilder() to construct. - private SamplerOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private SamplerOptions() { - inputDatasetId_ = ""; - inputFormatLabel_ = ""; - outputDatasetId_ = ""; - outputFormatLabel_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new SamplerOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private SamplerOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - inputDatasetId_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - inputFormatLabel_ = s; - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - outputDatasetId_ = s; - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - outputFormatLabel_ = s; - break; - } - case 45: { - - samplingRate_ = input.readFloat(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder.class); - } - - public static final int INPUT_DATASET_ID_FIELD_NUMBER = 1; - private volatile java.lang.Object inputDatasetId_; - /** - *
-           * Name of input dataset to sample
-           * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - @java.lang.Override - public java.lang.String getInputDatasetId() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetId_ = s; - return s; - } - } - /** - *
-           * Name of input dataset to sample
-           * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getInputDatasetIdBytes() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int INPUT_FORMAT_LABEL_FIELD_NUMBER = 2; - private volatile java.lang.Object inputFormatLabel_; - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The inputFormatLabel. - */ - @java.lang.Override - public java.lang.String getInputFormatLabel() { - java.lang.Object ref = inputFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputFormatLabel_ = s; - return s; - } - } - /** - *
-           * Label of input format
-           * 
- * - * string input_format_label = 2; - * @return The bytes for inputFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getInputFormatLabelBytes() { - java.lang.Object ref = inputFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_DATASET_ID_FIELD_NUMBER = 3; - private volatile java.lang.Object outputDatasetId_; - /** - *
-           * Name of output dataset to sample
-           * 
- * - * string output_dataset_id = 3; - * @return The outputDatasetId. - */ - @java.lang.Override - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } - } - /** - *
-           * Name of output dataset to sample
-           * 
- * - * string output_dataset_id = 3; - * @return The bytes for outputDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OUTPUT_FORMAT_LABEL_FIELD_NUMBER = 4; - private volatile java.lang.Object outputFormatLabel_; - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The outputFormatLabel. - */ - @java.lang.Override - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } - } - /** - *
-           * Label of output format
-           * 
- * - * string output_format_label = 4; - * @return The bytes for outputFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SAMPLING_RATE_FIELD_NUMBER = 5; - private float samplingRate_; - /** - *
-           * Sampling rate between 0 and 1
-           * 
- * - * float sampling_rate = 5; - * @return The samplingRate. - */ - @java.lang.Override - public float getSamplingRate() { - return samplingRate_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, inputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, inputFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, outputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, outputFormatLabel_); - } - if (java.lang.Float.floatToRawIntBits(samplingRate_) != 0) { - output.writeFloat(5, samplingRate_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, inputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(inputFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, inputFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, outputDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outputFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, outputFormatLabel_); - } - if (java.lang.Float.floatToRawIntBits(samplingRate_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFloatSize(5, samplingRate_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions) obj; - - if (!getInputDatasetId() - .equals(other.getInputDatasetId())) return false; - if (!getInputFormatLabel() - .equals(other.getInputFormatLabel())) return false; - if (!getOutputDatasetId() - .equals(other.getOutputDatasetId())) return false; - if (!getOutputFormatLabel() - .equals(other.getOutputFormatLabel())) return false; - if (java.lang.Float.floatToIntBits(getSamplingRate()) - != java.lang.Float.floatToIntBits( - other.getSamplingRate())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + INPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getInputDatasetId().hashCode(); - hash = (37 * hash) + INPUT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getInputFormatLabel().hashCode(); - hash = (37 * hash) + OUTPUT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getOutputDatasetId().hashCode(); - hash = (37 * hash) + OUTPUT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getOutputFormatLabel().hashCode(); - hash = (37 * hash) + SAMPLING_RATE_FIELD_NUMBER; - hash = (53 * hash) + java.lang.Float.floatToIntBits( - getSamplingRate()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - inputDatasetId_ = ""; - - inputFormatLabel_ = ""; - - outputDatasetId_ = ""; - - outputFormatLabel_ = ""; - - samplingRate_ = 0F; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions(this); - result.inputDatasetId_ = inputDatasetId_; - result.inputFormatLabel_ = inputFormatLabel_; - result.outputDatasetId_ = outputDatasetId_; - result.outputFormatLabel_ = outputFormatLabel_; - result.samplingRate_ = samplingRate_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.getDefaultInstance()) return this; - if (!other.getInputDatasetId().isEmpty()) { - inputDatasetId_ = other.inputDatasetId_; - onChanged(); - } - if (!other.getInputFormatLabel().isEmpty()) { - inputFormatLabel_ = other.inputFormatLabel_; - onChanged(); - } - if (!other.getOutputDatasetId().isEmpty()) { - outputDatasetId_ = other.outputDatasetId_; - onChanged(); - } - if (!other.getOutputFormatLabel().isEmpty()) { - outputFormatLabel_ = other.outputFormatLabel_; - onChanged(); - } - if (other.getSamplingRate() != 0F) { - setSamplingRate(other.getSamplingRate()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object inputDatasetId_ = ""; - /** - *
-             * Name of input dataset to sample
-             * 
- * - * string input_dataset_id = 1; - * @return The inputDatasetId. - */ - public java.lang.String getInputDatasetId() { - java.lang.Object ref = inputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Name of input dataset to sample
-             * 
- * - * string input_dataset_id = 1; - * @return The bytes for inputDatasetId. - */ - public com.google.protobuf.ByteString - getInputDatasetIdBytes() { - java.lang.Object ref = inputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Name of input dataset to sample
-             * 
- * - * string input_dataset_id = 1; - * @param value The inputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - inputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * Name of input dataset to sample
-             * 
- * - * string input_dataset_id = 1; - * @return This builder for chaining. - */ - public Builder clearInputDatasetId() { - - inputDatasetId_ = getDefaultInstance().getInputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * Name of input dataset to sample
-             * 
- * - * string input_dataset_id = 1; - * @param value The bytes for inputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setInputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - inputDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object inputFormatLabel_ = ""; - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @return The inputFormatLabel. - */ - public java.lang.String getInputFormatLabel() { - java.lang.Object ref = inputFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - inputFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @return The bytes for inputFormatLabel. - */ - public com.google.protobuf.ByteString - getInputFormatLabelBytes() { - java.lang.Object ref = inputFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - inputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @param value The inputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setInputFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - inputFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @return This builder for chaining. - */ - public Builder clearInputFormatLabel() { - - inputFormatLabel_ = getDefaultInstance().getInputFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * Label of input format
-             * 
- * - * string input_format_label = 2; - * @param value The bytes for inputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setInputFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - inputFormatLabel_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputDatasetId_ = ""; - /** - *
-             * Name of output dataset to sample
-             * 
- * - * string output_dataset_id = 3; - * @return The outputDatasetId. - */ - public java.lang.String getOutputDatasetId() { - java.lang.Object ref = outputDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Name of output dataset to sample
-             * 
- * - * string output_dataset_id = 3; - * @return The bytes for outputDatasetId. - */ - public com.google.protobuf.ByteString - getOutputDatasetIdBytes() { - java.lang.Object ref = outputDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Name of output dataset to sample
-             * 
- * - * string output_dataset_id = 3; - * @param value The outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * Name of output dataset to sample
-             * 
- * - * string output_dataset_id = 3; - * @return This builder for chaining. - */ - public Builder clearOutputDatasetId() { - - outputDatasetId_ = getDefaultInstance().getOutputDatasetId(); - onChanged(); - return this; - } - /** - *
-             * Name of output dataset to sample
-             * 
- * - * string output_dataset_id = 3; - * @param value The bytes for outputDatasetId to set. - * @return This builder for chaining. - */ - public Builder setOutputDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object outputFormatLabel_ = ""; - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @return The outputFormatLabel. - */ - public java.lang.String getOutputFormatLabel() { - java.lang.Object ref = outputFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - outputFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @return The bytes for outputFormatLabel. - */ - public com.google.protobuf.ByteString - getOutputFormatLabelBytes() { - java.lang.Object ref = outputFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - outputFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @param value The outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - outputFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @return This builder for chaining. - */ - public Builder clearOutputFormatLabel() { - - outputFormatLabel_ = getDefaultInstance().getOutputFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * Label of output format
-             * 
- * - * string output_format_label = 4; - * @param value The bytes for outputFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setOutputFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - outputFormatLabel_ = value; - onChanged(); - return this; - } - - private float samplingRate_ ; - /** - *
-             * Sampling rate between 0 and 1
-             * 
- * - * float sampling_rate = 5; - * @return The samplingRate. - */ - @java.lang.Override - public float getSamplingRate() { - return samplingRate_; - } - /** - *
-             * Sampling rate between 0 and 1
-             * 
- * - * float sampling_rate = 5; - * @param value The samplingRate to set. - * @return This builder for chaining. - */ - public Builder setSamplingRate(float value) { - - samplingRate_ = value; - onChanged(); - return this; - } - /** - *
-             * Sampling rate between 0 and 1
-             * 
- * - * float sampling_rate = 5; - * @return This builder for chaining. - */ - public Builder clearSamplingRate() { - - samplingRate_ = 0F; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public SamplerOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new SamplerOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ComparatorOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-           * The first data set to compare
-           * 
- * - * string left_dataset_id = 1; - * @return The leftDatasetId. - */ - java.lang.String getLeftDatasetId(); - /** - *
-           * The first data set to compare
-           * 
- * - * string left_dataset_id = 1; - * @return The bytes for leftDatasetId. - */ - com.google.protobuf.ByteString - getLeftDatasetIdBytes(); - - /** - *
-           * The specific format of the first data set
-           * 
- * - * string left_format_label = 2; - * @return The leftFormatLabel. - */ - java.lang.String getLeftFormatLabel(); - /** - *
-           * The specific format of the first data set
-           * 
- * - * string left_format_label = 2; - * @return The bytes for leftFormatLabel. - */ - com.google.protobuf.ByteString - getLeftFormatLabelBytes(); - - /** - *
-           * The second data set to compare
-           * 
- * - * string right_dataset_id = 3; - * @return The rightDatasetId. - */ - java.lang.String getRightDatasetId(); - /** - *
-           * The second data set to compare
-           * 
- * - * string right_dataset_id = 3; - * @return The bytes for rightDatasetId. - */ - com.google.protobuf.ByteString - getRightDatasetIdBytes(); - - /** - *
-           * The specific format of the second data set
-           * 
- * - * string right_format_label = 4; - * @return The rightFormatLabel. - */ - java.lang.String getRightFormatLabel(); - /** - *
-           * The specific format of the second data set
-           * 
- * - * string right_format_label = 4; - * @return The bytes for rightFormatLabel. - */ - com.google.protobuf.ByteString - getRightFormatLabelBytes(); - - /** - *
-           * If set, filtering left and right dataset to a specific hostname.
-           * 
- * - * string hostname = 5; - * @return The hostname. - */ - java.lang.String getHostname(); - /** - *
-           * If set, filtering left and right dataset to a specific hostname.
-           * 
- * - * string hostname = 5; - * @return The bytes for hostname. - */ - com.google.protobuf.ByteString - getHostnameBytes(); - - /** - *
-           * If set, fields ignored in the comparison separated by ','
-           * 
- * - * string ignored_fields = 6; - * @return The ignoredFields. - */ - java.lang.String getIgnoredFields(); - /** - *
-           * If set, fields ignored in the comparison separated by ','
-           * 
- * - * string ignored_fields = 6; - * @return The bytes for ignoredFields. - */ - com.google.protobuf.ByteString - getIgnoredFieldsBytes(); - } - /** - *
-         * Used by the DataComparator
-         * NB: comparision is symmetric, left and right are just name and
-         * do not refer to join strategy
-         * 
- * - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions} - */ - public static final class ComparatorOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions) - ComparatorOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use ComparatorOptions.newBuilder() to construct. - private ComparatorOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ComparatorOptions() { - leftDatasetId_ = ""; - leftFormatLabel_ = ""; - rightDatasetId_ = ""; - rightFormatLabel_ = ""; - hostname_ = ""; - ignoredFields_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ComparatorOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ComparatorOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - leftDatasetId_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - leftFormatLabel_ = s; - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - rightDatasetId_ = s; - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - rightFormatLabel_ = s; - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); - - hostname_ = s; - break; - } - case 50: { - java.lang.String s = input.readStringRequireUtf8(); - - ignoredFields_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder.class); - } - - public static final int LEFT_DATASET_ID_FIELD_NUMBER = 1; - private volatile java.lang.Object leftDatasetId_; - /** - *
-           * The first data set to compare
-           * 
- * - * string left_dataset_id = 1; - * @return The leftDatasetId. - */ - @java.lang.Override - public java.lang.String getLeftDatasetId() { - java.lang.Object ref = leftDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - leftDatasetId_ = s; - return s; - } - } - /** - *
-           * The first data set to compare
-           * 
- * - * string left_dataset_id = 1; - * @return The bytes for leftDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getLeftDatasetIdBytes() { - java.lang.Object ref = leftDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - leftDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int LEFT_FORMAT_LABEL_FIELD_NUMBER = 2; - private volatile java.lang.Object leftFormatLabel_; - /** - *
-           * The specific format of the first data set
-           * 
- * - * string left_format_label = 2; - * @return The leftFormatLabel. - */ - @java.lang.Override - public java.lang.String getLeftFormatLabel() { - java.lang.Object ref = leftFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - leftFormatLabel_ = s; - return s; - } - } - /** - *
-           * The specific format of the first data set
-           * 
- * - * string left_format_label = 2; - * @return The bytes for leftFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getLeftFormatLabelBytes() { - java.lang.Object ref = leftFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - leftFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int RIGHT_DATASET_ID_FIELD_NUMBER = 3; - private volatile java.lang.Object rightDatasetId_; - /** - *
-           * The second data set to compare
-           * 
- * - * string right_dataset_id = 3; - * @return The rightDatasetId. - */ - @java.lang.Override - public java.lang.String getRightDatasetId() { - java.lang.Object ref = rightDatasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - rightDatasetId_ = s; - return s; - } - } - /** - *
-           * The second data set to compare
-           * 
- * - * string right_dataset_id = 3; - * @return The bytes for rightDatasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRightDatasetIdBytes() { - java.lang.Object ref = rightDatasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - rightDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int RIGHT_FORMAT_LABEL_FIELD_NUMBER = 4; - private volatile java.lang.Object rightFormatLabel_; - /** - *
-           * The specific format of the second data set
-           * 
- * - * string right_format_label = 4; - * @return The rightFormatLabel. - */ - @java.lang.Override - public java.lang.String getRightFormatLabel() { - java.lang.Object ref = rightFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - rightFormatLabel_ = s; - return s; - } - } - /** - *
-           * The specific format of the second data set
-           * 
- * - * string right_format_label = 4; - * @return The bytes for rightFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRightFormatLabelBytes() { - java.lang.Object ref = rightFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - rightFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int HOSTNAME_FIELD_NUMBER = 5; - private volatile java.lang.Object hostname_; - /** - *
-           * If set, filtering left and right dataset to a specific hostname.
-           * 
- * - * string hostname = 5; - * @return The hostname. - */ - @java.lang.Override - public java.lang.String getHostname() { - java.lang.Object ref = hostname_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - hostname_ = s; - return s; - } - } - /** - *
-           * If set, filtering left and right dataset to a specific hostname.
-           * 
- * - * string hostname = 5; - * @return The bytes for hostname. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getHostnameBytes() { - java.lang.Object ref = hostname_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - hostname_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int IGNORED_FIELDS_FIELD_NUMBER = 6; - private volatile java.lang.Object ignoredFields_; - /** - *
-           * If set, fields ignored in the comparison separated by ','
-           * 
- * - * string ignored_fields = 6; - * @return The ignoredFields. - */ - @java.lang.Override - public java.lang.String getIgnoredFields() { - java.lang.Object ref = ignoredFields_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - ignoredFields_ = s; - return s; - } - } - /** - *
-           * If set, fields ignored in the comparison separated by ','
-           * 
- * - * string ignored_fields = 6; - * @return The bytes for ignoredFields. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getIgnoredFieldsBytes() { - java.lang.Object ref = ignoredFields_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - ignoredFields_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, leftDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, leftFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rightDatasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, rightDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rightFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, rightFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(hostname_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, hostname_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(ignoredFields_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 6, ignoredFields_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, leftDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(leftFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, leftFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rightDatasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, rightDatasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rightFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, rightFormatLabel_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(hostname_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, hostname_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(ignoredFields_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, ignoredFields_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions) obj; - - if (!getLeftDatasetId() - .equals(other.getLeftDatasetId())) return false; - if (!getLeftFormatLabel() - .equals(other.getLeftFormatLabel())) return false; - if (!getRightDatasetId() - .equals(other.getRightDatasetId())) return false; - if (!getRightFormatLabel() - .equals(other.getRightFormatLabel())) return false; - if (!getHostname() - .equals(other.getHostname())) return false; - if (!getIgnoredFields() - .equals(other.getIgnoredFields())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + LEFT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getLeftDatasetId().hashCode(); - hash = (37 * hash) + LEFT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getLeftFormatLabel().hashCode(); - hash = (37 * hash) + RIGHT_DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getRightDatasetId().hashCode(); - hash = (37 * hash) + RIGHT_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getRightFormatLabel().hashCode(); - hash = (37 * hash) + HOSTNAME_FIELD_NUMBER; - hash = (53 * hash) + getHostname().hashCode(); - hash = (37 * hash) + IGNORED_FIELDS_FIELD_NUMBER; - hash = (53 * hash) + getIgnoredFields().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-           * Used by the DataComparator
-           * NB: comparision is symmetric, left and right are just name and
-           * do not refer to join strategy
-           * 
- * - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - leftDatasetId_ = ""; - - leftFormatLabel_ = ""; - - rightDatasetId_ = ""; - - rightFormatLabel_ = ""; - - hostname_ = ""; - - ignoredFields_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions(this); - result.leftDatasetId_ = leftDatasetId_; - result.leftFormatLabel_ = leftFormatLabel_; - result.rightDatasetId_ = rightDatasetId_; - result.rightFormatLabel_ = rightFormatLabel_; - result.hostname_ = hostname_; - result.ignoredFields_ = ignoredFields_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.getDefaultInstance()) return this; - if (!other.getLeftDatasetId().isEmpty()) { - leftDatasetId_ = other.leftDatasetId_; - onChanged(); - } - if (!other.getLeftFormatLabel().isEmpty()) { - leftFormatLabel_ = other.leftFormatLabel_; - onChanged(); - } - if (!other.getRightDatasetId().isEmpty()) { - rightDatasetId_ = other.rightDatasetId_; - onChanged(); - } - if (!other.getRightFormatLabel().isEmpty()) { - rightFormatLabel_ = other.rightFormatLabel_; - onChanged(); - } - if (!other.getHostname().isEmpty()) { - hostname_ = other.hostname_; - onChanged(); - } - if (!other.getIgnoredFields().isEmpty()) { - ignoredFields_ = other.ignoredFields_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object leftDatasetId_ = ""; - /** - *
-             * The first data set to compare
-             * 
- * - * string left_dataset_id = 1; - * @return The leftDatasetId. - */ - public java.lang.String getLeftDatasetId() { - java.lang.Object ref = leftDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - leftDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * The first data set to compare
-             * 
- * - * string left_dataset_id = 1; - * @return The bytes for leftDatasetId. - */ - public com.google.protobuf.ByteString - getLeftDatasetIdBytes() { - java.lang.Object ref = leftDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - leftDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * The first data set to compare
-             * 
- * - * string left_dataset_id = 1; - * @param value The leftDatasetId to set. - * @return This builder for chaining. - */ - public Builder setLeftDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - leftDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * The first data set to compare
-             * 
- * - * string left_dataset_id = 1; - * @return This builder for chaining. - */ - public Builder clearLeftDatasetId() { - - leftDatasetId_ = getDefaultInstance().getLeftDatasetId(); - onChanged(); - return this; - } - /** - *
-             * The first data set to compare
-             * 
- * - * string left_dataset_id = 1; - * @param value The bytes for leftDatasetId to set. - * @return This builder for chaining. - */ - public Builder setLeftDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - leftDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object leftFormatLabel_ = ""; - /** - *
-             * The specific format of the first data set
-             * 
- * - * string left_format_label = 2; - * @return The leftFormatLabel. - */ - public java.lang.String getLeftFormatLabel() { - java.lang.Object ref = leftFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - leftFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * The specific format of the first data set
-             * 
- * - * string left_format_label = 2; - * @return The bytes for leftFormatLabel. - */ - public com.google.protobuf.ByteString - getLeftFormatLabelBytes() { - java.lang.Object ref = leftFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - leftFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * The specific format of the first data set
-             * 
- * - * string left_format_label = 2; - * @param value The leftFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setLeftFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - leftFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * The specific format of the first data set
-             * 
- * - * string left_format_label = 2; - * @return This builder for chaining. - */ - public Builder clearLeftFormatLabel() { - - leftFormatLabel_ = getDefaultInstance().getLeftFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * The specific format of the first data set
-             * 
- * - * string left_format_label = 2; - * @param value The bytes for leftFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setLeftFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - leftFormatLabel_ = value; - onChanged(); - return this; - } - - private java.lang.Object rightDatasetId_ = ""; - /** - *
-             * The second data set to compare
-             * 
- * - * string right_dataset_id = 3; - * @return The rightDatasetId. - */ - public java.lang.String getRightDatasetId() { - java.lang.Object ref = rightDatasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - rightDatasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * The second data set to compare
-             * 
- * - * string right_dataset_id = 3; - * @return The bytes for rightDatasetId. - */ - public com.google.protobuf.ByteString - getRightDatasetIdBytes() { - java.lang.Object ref = rightDatasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - rightDatasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * The second data set to compare
-             * 
- * - * string right_dataset_id = 3; - * @param value The rightDatasetId to set. - * @return This builder for chaining. - */ - public Builder setRightDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - rightDatasetId_ = value; - onChanged(); - return this; - } - /** - *
-             * The second data set to compare
-             * 
- * - * string right_dataset_id = 3; - * @return This builder for chaining. - */ - public Builder clearRightDatasetId() { - - rightDatasetId_ = getDefaultInstance().getRightDatasetId(); - onChanged(); - return this; - } - /** - *
-             * The second data set to compare
-             * 
- * - * string right_dataset_id = 3; - * @param value The bytes for rightDatasetId to set. - * @return This builder for chaining. - */ - public Builder setRightDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - rightDatasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object rightFormatLabel_ = ""; - /** - *
-             * The specific format of the second data set
-             * 
- * - * string right_format_label = 4; - * @return The rightFormatLabel. - */ - public java.lang.String getRightFormatLabel() { - java.lang.Object ref = rightFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - rightFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * The specific format of the second data set
-             * 
- * - * string right_format_label = 4; - * @return The bytes for rightFormatLabel. - */ - public com.google.protobuf.ByteString - getRightFormatLabelBytes() { - java.lang.Object ref = rightFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - rightFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * The specific format of the second data set
-             * 
- * - * string right_format_label = 4; - * @param value The rightFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setRightFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - rightFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-             * The specific format of the second data set
-             * 
- * - * string right_format_label = 4; - * @return This builder for chaining. - */ - public Builder clearRightFormatLabel() { - - rightFormatLabel_ = getDefaultInstance().getRightFormatLabel(); - onChanged(); - return this; - } - /** - *
-             * The specific format of the second data set
-             * 
- * - * string right_format_label = 4; - * @param value The bytes for rightFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setRightFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - rightFormatLabel_ = value; - onChanged(); - return this; - } - - private java.lang.Object hostname_ = ""; - /** - *
-             * If set, filtering left and right dataset to a specific hostname.
-             * 
- * - * string hostname = 5; - * @return The hostname. - */ - public java.lang.String getHostname() { - java.lang.Object ref = hostname_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - hostname_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * If set, filtering left and right dataset to a specific hostname.
-             * 
- * - * string hostname = 5; - * @return The bytes for hostname. - */ - public com.google.protobuf.ByteString - getHostnameBytes() { - java.lang.Object ref = hostname_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - hostname_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * If set, filtering left and right dataset to a specific hostname.
-             * 
- * - * string hostname = 5; - * @param value The hostname to set. - * @return This builder for chaining. - */ - public Builder setHostname( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - hostname_ = value; - onChanged(); - return this; - } - /** - *
-             * If set, filtering left and right dataset to a specific hostname.
-             * 
- * - * string hostname = 5; - * @return This builder for chaining. - */ - public Builder clearHostname() { - - hostname_ = getDefaultInstance().getHostname(); - onChanged(); - return this; - } - /** - *
-             * If set, filtering left and right dataset to a specific hostname.
-             * 
- * - * string hostname = 5; - * @param value The bytes for hostname to set. - * @return This builder for chaining. - */ - public Builder setHostnameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - hostname_ = value; - onChanged(); - return this; - } - - private java.lang.Object ignoredFields_ = ""; - /** - *
-             * If set, fields ignored in the comparison separated by ','
-             * 
- * - * string ignored_fields = 6; - * @return The ignoredFields. - */ - public java.lang.String getIgnoredFields() { - java.lang.Object ref = ignoredFields_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - ignoredFields_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-             * If set, fields ignored in the comparison separated by ','
-             * 
- * - * string ignored_fields = 6; - * @return The bytes for ignoredFields. - */ - public com.google.protobuf.ByteString - getIgnoredFieldsBytes() { - java.lang.Object ref = ignoredFields_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - ignoredFields_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-             * If set, fields ignored in the comparison separated by ','
-             * 
- * - * string ignored_fields = 6; - * @param value The ignoredFields to set. - * @return This builder for chaining. - */ - public Builder setIgnoredFields( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - ignoredFields_ = value; - onChanged(); - return this; - } - /** - *
-             * If set, fields ignored in the comparison separated by ','
-             * 
- * - * string ignored_fields = 6; - * @return This builder for chaining. - */ - public Builder clearIgnoredFields() { - - ignoredFields_ = getDefaultInstance().getIgnoredFields(); - onChanged(); - return this; - } - /** - *
-             * If set, fields ignored in the comparison separated by ','
-             * 
- * - * string ignored_fields = 6; - * @param value The bytes for ignoredFields to set. - * @return This builder for chaining. - */ - public Builder setIgnoredFieldsBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - ignoredFields_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ComparatorOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ComparatorOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ExternalOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions) - com.google.protobuf.MessageOrBuilder { - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions} - */ - public static final class ExternalOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions) - ExternalOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use ExternalOptions.newBuilder() to construct. - private ExternalOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ExternalOptions() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ExternalOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ExternalOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder.class); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions) obj; - - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions(this); - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.getDefaultInstance()) return this; - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ExternalOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ExternalOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int DATALOADER_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader_; - /** - *
-         * oneof is not currently supporte by protonet
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - * @return Whether the dataloader field is set. - */ - @java.lang.Override - public boolean hasDataloader() { - return dataloader_ != null; - } - /** - *
-         * oneof is not currently supporte by protonet
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - * @return The dataloader. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions getDataloader() { - return dataloader_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.getDefaultInstance() : dataloader_; - } - /** - *
-         * oneof is not currently supporte by protonet
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder getDataloaderOrBuilder() { - return getDataloader(); - } - - public static final int KAFKA2HDFS_FIELD_NUMBER = 2; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2Hdfs_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - * @return Whether the kafka2hdfs field is set. - */ - @java.lang.Override - public boolean hasKafka2Hdfs() { - return kafka2Hdfs_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - * @return The kafka2hdfs. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions getKafka2Hdfs() { - return kafka2Hdfs_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.getDefaultInstance() : kafka2Hdfs_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder getKafka2HdfsOrBuilder() { - return getKafka2Hdfs(); - } - - public static final int SYNC_FIELD_NUMBER = 3; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions sync_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - * @return Whether the sync field is set. - */ - @java.lang.Override - public boolean hasSync() { - return sync_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - * @return The sync. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions getSync() { - return sync_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.getDefaultInstance() : sync_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder getSyncOrBuilder() { - return getSync(); - } - - public static final int EXTERNAL_FIELD_NUMBER = 4; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions external_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - * @return Whether the external field is set. - */ - @java.lang.Override - public boolean hasExternal() { - return external_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - * @return The external. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions getExternal() { - return external_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.getDefaultInstance() : external_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder getExternalOrBuilder() { - return getExternal(); - } - - public static final int BACKUP_FIELD_NUMBER = 5; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions backup_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - * @return Whether the backup field is set. - */ - @java.lang.Override - public boolean hasBackup() { - return backup_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - * @return The backup. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions getBackup() { - return backup_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.getDefaultInstance() : backup_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder getBackupOrBuilder() { - return getBackup(); - } - - public static final int TRANSCODING_FIELD_NUMBER = 6; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - * @return Whether the transcoding field is set. - */ - @java.lang.Override - public boolean hasTranscoding() { - return transcoding_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - * @return The transcoding. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions getTranscoding() { - return transcoding_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.getDefaultInstance() : transcoding_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder getTranscodingOrBuilder() { - return getTranscoding(); - } - - public static final int KACOHA_FIELD_NUMBER = 7; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - * @return Whether the kacoha field is set. - */ - @java.lang.Override - public boolean hasKacoha() { - return kacoha_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - * @return The kacoha. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions getKacoha() { - return kacoha_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.getDefaultInstance() : kacoha_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder getKacohaOrBuilder() { - return getKacoha(); - } - - public static final int DEDUPLICATE_FIELD_NUMBER = 8; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - * @return Whether the deduplicate field is set. - */ - @java.lang.Override - public boolean hasDeduplicate() { - return deduplicate_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - * @return The deduplicate. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions getDeduplicate() { - return deduplicate_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.getDefaultInstance() : deduplicate_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder getDeduplicateOrBuilder() { - return getDeduplicate(); - } - - public static final int SAMPLER_FIELD_NUMBER = 9; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - * @return Whether the sampler field is set. - */ - @java.lang.Override - public boolean hasSampler() { - return sampler_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - * @return The sampler. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions getSampler() { - return sampler_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.getDefaultInstance() : sampler_; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder getSamplerOrBuilder() { - return getSampler(); - } - - public static final int COMPARATOR_FIELD_NUMBER = 10; - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator_; - /** - *
-         * Add here any new hdfs producer
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - * @return Whether the comparator field is set. - */ - @java.lang.Override - public boolean hasComparator() { - return comparator_ != null; - } - /** - *
-         * Add here any new hdfs producer
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - * @return The comparator. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions getComparator() { - return comparator_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.getDefaultInstance() : comparator_; - } - /** - *
-         * Add here any new hdfs producer
-         * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder getComparatorOrBuilder() { - return getComparator(); - } - - public static final int TO_FIELD_NUMBER = 250; - private java.util.List to_; - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - @java.lang.Override - public java.util.List getToList() { - return to_; - } - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - @java.lang.Override - public java.util.List - getToOrBuilderList() { - return to_; - } - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - @java.lang.Override - public int getToCount() { - return to_.size(); - } - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Location getTo(int index) { - return to_.get(index); - } - /** - *
-         * defines where it will run and push data
-         * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.LocationOrBuilder getToOrBuilder( - int index) { - return to_.get(index); - } - - public static final int NAMESPACE_FIELD_NUMBER = 251; - private volatile java.lang.Object namespace_; - /** - * string namespace = 251; - * @return The namespace. - */ - @java.lang.Override - public java.lang.String getNamespace() { - java.lang.Object ref = namespace_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - namespace_ = s; - return s; - } - } - /** - * string namespace = 251; - * @return The bytes for namespace. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNamespaceBytes() { - java.lang.Object ref = namespace_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - namespace_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int START_DATE_FIELD_NUMBER = 253; - private volatile java.lang.Object startDate_; - /** - *
-         * define beginning date inclusive
-         * 
- * - * string start_date = 253; - * @return The startDate. - */ - @java.lang.Override - public java.lang.String getStartDate() { - java.lang.Object ref = startDate_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - startDate_ = s; - return s; - } - } - /** - *
-         * define beginning date inclusive
-         * 
- * - * string start_date = 253; - * @return The bytes for startDate. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getStartDateBytes() { - java.lang.Object ref = startDate_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - startDate_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int STOP_DATE_FIELD_NUMBER = 254; - private volatile java.lang.Object stopDate_; - /** - *
-         * define stop date exclusive
-         * 
- * - * string stop_date = 254; - * @return The stopDate. - */ - @java.lang.Override - public java.lang.String getStopDate() { - java.lang.Object ref = stopDate_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - stopDate_ = s; - return s; - } - } - /** - *
-         * define stop date exclusive
-         * 
- * - * string stop_date = 254; - * @return The bytes for stopDate. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getStopDateBytes() { - java.lang.Object ref = stopDate_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - stopDate_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int IGNORE_CN_FIELD_NUMBER = 255; - private boolean ignoreCn_; - /** - *
-         * TODO : remove this property when RIVERS-3723 (remove CN platform) is over
-         * 
- * - * bool ignore_cn = 255; - * @return The ignoreCn. - */ - @java.lang.Override - public boolean getIgnoreCn() { - return ignoreCn_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (dataloader_ != null) { - output.writeMessage(1, getDataloader()); - } - if (kafka2Hdfs_ != null) { - output.writeMessage(2, getKafka2Hdfs()); - } - if (sync_ != null) { - output.writeMessage(3, getSync()); - } - if (external_ != null) { - output.writeMessage(4, getExternal()); - } - if (backup_ != null) { - output.writeMessage(5, getBackup()); - } - if (transcoding_ != null) { - output.writeMessage(6, getTranscoding()); - } - if (kacoha_ != null) { - output.writeMessage(7, getKacoha()); - } - if (deduplicate_ != null) { - output.writeMessage(8, getDeduplicate()); - } - if (sampler_ != null) { - output.writeMessage(9, getSampler()); - } - if (comparator_ != null) { - output.writeMessage(10, getComparator()); - } - for (int i = 0; i < to_.size(); i++) { - output.writeMessage(250, to_.get(i)); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(namespace_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 251, namespace_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(startDate_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 253, startDate_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(stopDate_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 254, stopDate_); - } - if (ignoreCn_ != false) { - output.writeBool(255, ignoreCn_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (dataloader_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getDataloader()); - } - if (kafka2Hdfs_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getKafka2Hdfs()); - } - if (sync_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, getSync()); - } - if (external_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, getExternal()); - } - if (backup_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(5, getBackup()); - } - if (transcoding_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(6, getTranscoding()); - } - if (kacoha_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(7, getKacoha()); - } - if (deduplicate_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(8, getDeduplicate()); - } - if (sampler_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(9, getSampler()); - } - if (comparator_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(10, getComparator()); - } - for (int i = 0; i < to_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(250, to_.get(i)); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(namespace_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(251, namespace_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(startDate_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(253, startDate_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(stopDate_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(254, stopDate_); - } - if (ignoreCn_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(255, ignoreCn_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator) obj; - - if (hasDataloader() != other.hasDataloader()) return false; - if (hasDataloader()) { - if (!getDataloader() - .equals(other.getDataloader())) return false; - } - if (hasKafka2Hdfs() != other.hasKafka2Hdfs()) return false; - if (hasKafka2Hdfs()) { - if (!getKafka2Hdfs() - .equals(other.getKafka2Hdfs())) return false; - } - if (hasSync() != other.hasSync()) return false; - if (hasSync()) { - if (!getSync() - .equals(other.getSync())) return false; - } - if (hasExternal() != other.hasExternal()) return false; - if (hasExternal()) { - if (!getExternal() - .equals(other.getExternal())) return false; - } - if (hasBackup() != other.hasBackup()) return false; - if (hasBackup()) { - if (!getBackup() - .equals(other.getBackup())) return false; - } - if (hasTranscoding() != other.hasTranscoding()) return false; - if (hasTranscoding()) { - if (!getTranscoding() - .equals(other.getTranscoding())) return false; - } - if (hasKacoha() != other.hasKacoha()) return false; - if (hasKacoha()) { - if (!getKacoha() - .equals(other.getKacoha())) return false; - } - if (hasDeduplicate() != other.hasDeduplicate()) return false; - if (hasDeduplicate()) { - if (!getDeduplicate() - .equals(other.getDeduplicate())) return false; - } - if (hasSampler() != other.hasSampler()) return false; - if (hasSampler()) { - if (!getSampler() - .equals(other.getSampler())) return false; - } - if (hasComparator() != other.hasComparator()) return false; - if (hasComparator()) { - if (!getComparator() - .equals(other.getComparator())) return false; - } - if (!getToList() - .equals(other.getToList())) return false; - if (!getNamespace() - .equals(other.getNamespace())) return false; - if (!getStartDate() - .equals(other.getStartDate())) return false; - if (!getStopDate() - .equals(other.getStopDate())) return false; - if (getIgnoreCn() - != other.getIgnoreCn()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasDataloader()) { - hash = (37 * hash) + DATALOADER_FIELD_NUMBER; - hash = (53 * hash) + getDataloader().hashCode(); - } - if (hasKafka2Hdfs()) { - hash = (37 * hash) + KAFKA2HDFS_FIELD_NUMBER; - hash = (53 * hash) + getKafka2Hdfs().hashCode(); - } - if (hasSync()) { - hash = (37 * hash) + SYNC_FIELD_NUMBER; - hash = (53 * hash) + getSync().hashCode(); - } - if (hasExternal()) { - hash = (37 * hash) + EXTERNAL_FIELD_NUMBER; - hash = (53 * hash) + getExternal().hashCode(); - } - if (hasBackup()) { - hash = (37 * hash) + BACKUP_FIELD_NUMBER; - hash = (53 * hash) + getBackup().hashCode(); - } - if (hasTranscoding()) { - hash = (37 * hash) + TRANSCODING_FIELD_NUMBER; - hash = (53 * hash) + getTranscoding().hashCode(); - } - if (hasKacoha()) { - hash = (37 * hash) + KACOHA_FIELD_NUMBER; - hash = (53 * hash) + getKacoha().hashCode(); - } - if (hasDeduplicate()) { - hash = (37 * hash) + DEDUPLICATE_FIELD_NUMBER; - hash = (53 * hash) + getDeduplicate().hashCode(); - } - if (hasSampler()) { - hash = (37 * hash) + SAMPLER_FIELD_NUMBER; - hash = (53 * hash) + getSampler().hashCode(); - } - if (hasComparator()) { - hash = (37 * hash) + COMPARATOR_FIELD_NUMBER; - hash = (53 * hash) + getComparator().hashCode(); - } - if (getToCount() > 0) { - hash = (37 * hash) + TO_FIELD_NUMBER; - hash = (53 * hash) + getToList().hashCode(); - } - hash = (37 * hash) + NAMESPACE_FIELD_NUMBER; - hash = (53 * hash) + getNamespace().hashCode(); - hash = (37 * hash) + START_DATE_FIELD_NUMBER; - hash = (53 * hash) + getStartDate().hashCode(); - hash = (37 * hash) + STOP_DATE_FIELD_NUMBER; - hash = (53 * hash) + getStopDate().hashCode(); - hash = (37 * hash) + IGNORE_CN_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIgnoreCn()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions.Generator} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions.Generator) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getToFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (dataloaderBuilder_ == null) { - dataloader_ = null; - } else { - dataloader_ = null; - dataloaderBuilder_ = null; - } - if (kafka2HdfsBuilder_ == null) { - kafka2Hdfs_ = null; - } else { - kafka2Hdfs_ = null; - kafka2HdfsBuilder_ = null; - } - if (syncBuilder_ == null) { - sync_ = null; - } else { - sync_ = null; - syncBuilder_ = null; - } - if (externalBuilder_ == null) { - external_ = null; - } else { - external_ = null; - externalBuilder_ = null; - } - if (backupBuilder_ == null) { - backup_ = null; - } else { - backup_ = null; - backupBuilder_ = null; - } - if (transcodingBuilder_ == null) { - transcoding_ = null; - } else { - transcoding_ = null; - transcodingBuilder_ = null; - } - if (kacohaBuilder_ == null) { - kacoha_ = null; - } else { - kacoha_ = null; - kacohaBuilder_ = null; - } - if (deduplicateBuilder_ == null) { - deduplicate_ = null; - } else { - deduplicate_ = null; - deduplicateBuilder_ = null; - } - if (samplerBuilder_ == null) { - sampler_ = null; - } else { - sampler_ = null; - samplerBuilder_ = null; - } - if (comparatorBuilder_ == null) { - comparator_ = null; - } else { - comparator_ = null; - comparatorBuilder_ = null; - } - if (toBuilder_ == null) { - to_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - toBuilder_.clear(); - } - namespace_ = ""; - - startDate_ = ""; - - stopDate_ = ""; - - ignoreCn_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator(this); - int from_bitField0_ = bitField0_; - if (dataloaderBuilder_ == null) { - result.dataloader_ = dataloader_; - } else { - result.dataloader_ = dataloaderBuilder_.build(); - } - if (kafka2HdfsBuilder_ == null) { - result.kafka2Hdfs_ = kafka2Hdfs_; - } else { - result.kafka2Hdfs_ = kafka2HdfsBuilder_.build(); - } - if (syncBuilder_ == null) { - result.sync_ = sync_; - } else { - result.sync_ = syncBuilder_.build(); - } - if (externalBuilder_ == null) { - result.external_ = external_; - } else { - result.external_ = externalBuilder_.build(); - } - if (backupBuilder_ == null) { - result.backup_ = backup_; - } else { - result.backup_ = backupBuilder_.build(); - } - if (transcodingBuilder_ == null) { - result.transcoding_ = transcoding_; - } else { - result.transcoding_ = transcodingBuilder_.build(); - } - if (kacohaBuilder_ == null) { - result.kacoha_ = kacoha_; - } else { - result.kacoha_ = kacohaBuilder_.build(); - } - if (deduplicateBuilder_ == null) { - result.deduplicate_ = deduplicate_; - } else { - result.deduplicate_ = deduplicateBuilder_.build(); - } - if (samplerBuilder_ == null) { - result.sampler_ = sampler_; - } else { - result.sampler_ = samplerBuilder_.build(); - } - if (comparatorBuilder_ == null) { - result.comparator_ = comparator_; - } else { - result.comparator_ = comparatorBuilder_.build(); - } - if (toBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - to_ = java.util.Collections.unmodifiableList(to_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.to_ = to_; - } else { - result.to_ = toBuilder_.build(); - } - result.namespace_ = namespace_; - result.startDate_ = startDate_; - result.stopDate_ = stopDate_; - result.ignoreCn_ = ignoreCn_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.getDefaultInstance()) return this; - if (other.hasDataloader()) { - mergeDataloader(other.getDataloader()); - } - if (other.hasKafka2Hdfs()) { - mergeKafka2Hdfs(other.getKafka2Hdfs()); - } - if (other.hasSync()) { - mergeSync(other.getSync()); - } - if (other.hasExternal()) { - mergeExternal(other.getExternal()); - } - if (other.hasBackup()) { - mergeBackup(other.getBackup()); - } - if (other.hasTranscoding()) { - mergeTranscoding(other.getTranscoding()); - } - if (other.hasKacoha()) { - mergeKacoha(other.getKacoha()); - } - if (other.hasDeduplicate()) { - mergeDeduplicate(other.getDeduplicate()); - } - if (other.hasSampler()) { - mergeSampler(other.getSampler()); - } - if (other.hasComparator()) { - mergeComparator(other.getComparator()); - } - if (toBuilder_ == null) { - if (!other.to_.isEmpty()) { - if (to_.isEmpty()) { - to_ = other.to_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureToIsMutable(); - to_.addAll(other.to_); - } - onChanged(); - } - } else { - if (!other.to_.isEmpty()) { - if (toBuilder_.isEmpty()) { - toBuilder_.dispose(); - toBuilder_ = null; - to_ = other.to_; - bitField0_ = (bitField0_ & ~0x00000001); - toBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getToFieldBuilder() : null; - } else { - toBuilder_.addAllMessages(other.to_); - } - } - } - if (!other.getNamespace().isEmpty()) { - namespace_ = other.namespace_; - onChanged(); - } - if (!other.getStartDate().isEmpty()) { - startDate_ = other.startDate_; - onChanged(); - } - if (!other.getStopDate().isEmpty()) { - stopDate_ = other.stopDate_; - onChanged(); - } - if (other.getIgnoreCn() != false) { - setIgnoreCn(other.getIgnoreCn()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder> dataloaderBuilder_; - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - * @return Whether the dataloader field is set. - */ - public boolean hasDataloader() { - return dataloaderBuilder_ != null || dataloader_ != null; - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - * @return The dataloader. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions getDataloader() { - if (dataloaderBuilder_ == null) { - return dataloader_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.getDefaultInstance() : dataloader_; - } else { - return dataloaderBuilder_.getMessage(); - } - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - public Builder setDataloader(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions value) { - if (dataloaderBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - dataloader_ = value; - onChanged(); - } else { - dataloaderBuilder_.setMessage(value); - } - - return this; - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - public Builder setDataloader( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder builderForValue) { - if (dataloaderBuilder_ == null) { - dataloader_ = builderForValue.build(); - onChanged(); - } else { - dataloaderBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - public Builder mergeDataloader(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions value) { - if (dataloaderBuilder_ == null) { - if (dataloader_ != null) { - dataloader_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.newBuilder(dataloader_).mergeFrom(value).buildPartial(); - } else { - dataloader_ = value; - } - onChanged(); - } else { - dataloaderBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - public Builder clearDataloader() { - if (dataloaderBuilder_ == null) { - dataloader_ = null; - onChanged(); - } else { - dataloader_ = null; - dataloaderBuilder_ = null; - } - - return this; - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder getDataloaderBuilder() { - - onChanged(); - return getDataloaderFieldBuilder().getBuilder(); - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder getDataloaderOrBuilder() { - if (dataloaderBuilder_ != null) { - return dataloaderBuilder_.getMessageOrBuilder(); - } else { - return dataloader_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.getDefaultInstance() : dataloader_; - } - } - /** - *
-           * oneof is not currently supporte by protonet
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DataloaderOptions dataloader = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder> - getDataloaderFieldBuilder() { - if (dataloaderBuilder_ == null) { - dataloaderBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DataloaderOptionsOrBuilder>( - getDataloader(), - getParentForChildren(), - isClean()); - dataloader_ = null; - } - return dataloaderBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2Hdfs_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder> kafka2HdfsBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - * @return Whether the kafka2hdfs field is set. - */ - public boolean hasKafka2Hdfs() { - return kafka2HdfsBuilder_ != null || kafka2Hdfs_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - * @return The kafka2hdfs. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions getKafka2Hdfs() { - if (kafka2HdfsBuilder_ == null) { - return kafka2Hdfs_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.getDefaultInstance() : kafka2Hdfs_; - } else { - return kafka2HdfsBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - public Builder setKafka2Hdfs(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions value) { - if (kafka2HdfsBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - kafka2Hdfs_ = value; - onChanged(); - } else { - kafka2HdfsBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - public Builder setKafka2Hdfs( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder builderForValue) { - if (kafka2HdfsBuilder_ == null) { - kafka2Hdfs_ = builderForValue.build(); - onChanged(); - } else { - kafka2HdfsBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - public Builder mergeKafka2Hdfs(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions value) { - if (kafka2HdfsBuilder_ == null) { - if (kafka2Hdfs_ != null) { - kafka2Hdfs_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.newBuilder(kafka2Hdfs_).mergeFrom(value).buildPartial(); - } else { - kafka2Hdfs_ = value; - } - onChanged(); - } else { - kafka2HdfsBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - public Builder clearKafka2Hdfs() { - if (kafka2HdfsBuilder_ == null) { - kafka2Hdfs_ = null; - onChanged(); - } else { - kafka2Hdfs_ = null; - kafka2HdfsBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder getKafka2HdfsBuilder() { - - onChanged(); - return getKafka2HdfsFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder getKafka2HdfsOrBuilder() { - if (kafka2HdfsBuilder_ != null) { - return kafka2HdfsBuilder_.getMessageOrBuilder(); - } else { - return kafka2Hdfs_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.getDefaultInstance() : kafka2Hdfs_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions kafka2hdfs = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder> - getKafka2HdfsFieldBuilder() { - if (kafka2HdfsBuilder_ == null) { - kafka2HdfsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Kafka2HdfsOptionsOrBuilder>( - getKafka2Hdfs(), - getParentForChildren(), - isClean()); - kafka2Hdfs_ = null; - } - return kafka2HdfsBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions sync_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder> syncBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - * @return Whether the sync field is set. - */ - public boolean hasSync() { - return syncBuilder_ != null || sync_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - * @return The sync. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions getSync() { - if (syncBuilder_ == null) { - return sync_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.getDefaultInstance() : sync_; - } else { - return syncBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - public Builder setSync(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions value) { - if (syncBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - sync_ = value; - onChanged(); - } else { - syncBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - public Builder setSync( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder builderForValue) { - if (syncBuilder_ == null) { - sync_ = builderForValue.build(); - onChanged(); - } else { - syncBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - public Builder mergeSync(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions value) { - if (syncBuilder_ == null) { - if (sync_ != null) { - sync_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.newBuilder(sync_).mergeFrom(value).buildPartial(); - } else { - sync_ = value; - } - onChanged(); - } else { - syncBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - public Builder clearSync() { - if (syncBuilder_ == null) { - sync_ = null; - onChanged(); - } else { - sync_ = null; - syncBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder getSyncBuilder() { - - onChanged(); - return getSyncFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder getSyncOrBuilder() { - if (syncBuilder_ != null) { - return syncBuilder_.getMessageOrBuilder(); - } else { - return sync_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.getDefaultInstance() : sync_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SyncOptions sync = 3; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder> - getSyncFieldBuilder() { - if (syncBuilder_ == null) { - syncBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SyncOptionsOrBuilder>( - getSync(), - getParentForChildren(), - isClean()); - sync_ = null; - } - return syncBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions external_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder> externalBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - * @return Whether the external field is set. - */ - public boolean hasExternal() { - return externalBuilder_ != null || external_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - * @return The external. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions getExternal() { - if (externalBuilder_ == null) { - return external_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.getDefaultInstance() : external_; - } else { - return externalBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - public Builder setExternal(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions value) { - if (externalBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - external_ = value; - onChanged(); - } else { - externalBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - public Builder setExternal( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder builderForValue) { - if (externalBuilder_ == null) { - external_ = builderForValue.build(); - onChanged(); - } else { - externalBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - public Builder mergeExternal(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions value) { - if (externalBuilder_ == null) { - if (external_ != null) { - external_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.newBuilder(external_).mergeFrom(value).buildPartial(); - } else { - external_ = value; - } - onChanged(); - } else { - externalBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - public Builder clearExternal() { - if (externalBuilder_ == null) { - external_ = null; - onChanged(); - } else { - external_ = null; - externalBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder getExternalBuilder() { - - onChanged(); - return getExternalFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder getExternalOrBuilder() { - if (externalBuilder_ != null) { - return externalBuilder_.getMessageOrBuilder(); - } else { - return external_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.getDefaultInstance() : external_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ExternalOptions external = 4; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder> - getExternalFieldBuilder() { - if (externalBuilder_ == null) { - externalBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ExternalOptionsOrBuilder>( - getExternal(), - getParentForChildren(), - isClean()); - external_ = null; - } - return externalBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions backup_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder> backupBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - * @return Whether the backup field is set. - */ - public boolean hasBackup() { - return backupBuilder_ != null || backup_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - * @return The backup. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions getBackup() { - if (backupBuilder_ == null) { - return backup_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.getDefaultInstance() : backup_; - } else { - return backupBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - public Builder setBackup(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions value) { - if (backupBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - backup_ = value; - onChanged(); - } else { - backupBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - public Builder setBackup( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder builderForValue) { - if (backupBuilder_ == null) { - backup_ = builderForValue.build(); - onChanged(); - } else { - backupBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - public Builder mergeBackup(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions value) { - if (backupBuilder_ == null) { - if (backup_ != null) { - backup_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.newBuilder(backup_).mergeFrom(value).buildPartial(); - } else { - backup_ = value; - } - onChanged(); - } else { - backupBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - public Builder clearBackup() { - if (backupBuilder_ == null) { - backup_ = null; - onChanged(); - } else { - backup_ = null; - backupBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder getBackupBuilder() { - - onChanged(); - return getBackupFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder getBackupOrBuilder() { - if (backupBuilder_ != null) { - return backupBuilder_.getMessageOrBuilder(); - } else { - return backup_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.getDefaultInstance() : backup_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.BackupOptions backup = 5; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder> - getBackupFieldBuilder() { - if (backupBuilder_ == null) { - backupBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.BackupOptionsOrBuilder>( - getBackup(), - getParentForChildren(), - isClean()); - backup_ = null; - } - return backupBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder> transcodingBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - * @return Whether the transcoding field is set. - */ - public boolean hasTranscoding() { - return transcodingBuilder_ != null || transcoding_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - * @return The transcoding. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions getTranscoding() { - if (transcodingBuilder_ == null) { - return transcoding_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.getDefaultInstance() : transcoding_; - } else { - return transcodingBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - public Builder setTranscoding(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions value) { - if (transcodingBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - transcoding_ = value; - onChanged(); - } else { - transcodingBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - public Builder setTranscoding( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder builderForValue) { - if (transcodingBuilder_ == null) { - transcoding_ = builderForValue.build(); - onChanged(); - } else { - transcodingBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - public Builder mergeTranscoding(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions value) { - if (transcodingBuilder_ == null) { - if (transcoding_ != null) { - transcoding_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.newBuilder(transcoding_).mergeFrom(value).buildPartial(); - } else { - transcoding_ = value; - } - onChanged(); - } else { - transcodingBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - public Builder clearTranscoding() { - if (transcodingBuilder_ == null) { - transcoding_ = null; - onChanged(); - } else { - transcoding_ = null; - transcodingBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder getTranscodingBuilder() { - - onChanged(); - return getTranscodingFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder getTranscodingOrBuilder() { - if (transcodingBuilder_ != null) { - return transcodingBuilder_.getMessageOrBuilder(); - } else { - return transcoding_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.getDefaultInstance() : transcoding_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.TranscodingOptions transcoding = 6; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder> - getTranscodingFieldBuilder() { - if (transcodingBuilder_ == null) { - transcodingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.TranscodingOptionsOrBuilder>( - getTranscoding(), - getParentForChildren(), - isClean()); - transcoding_ = null; - } - return transcodingBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder> kacohaBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - * @return Whether the kacoha field is set. - */ - public boolean hasKacoha() { - return kacohaBuilder_ != null || kacoha_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - * @return The kacoha. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions getKacoha() { - if (kacohaBuilder_ == null) { - return kacoha_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.getDefaultInstance() : kacoha_; - } else { - return kacohaBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - public Builder setKacoha(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions value) { - if (kacohaBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - kacoha_ = value; - onChanged(); - } else { - kacohaBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - public Builder setKacoha( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder builderForValue) { - if (kacohaBuilder_ == null) { - kacoha_ = builderForValue.build(); - onChanged(); - } else { - kacohaBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - public Builder mergeKacoha(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions value) { - if (kacohaBuilder_ == null) { - if (kacoha_ != null) { - kacoha_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.newBuilder(kacoha_).mergeFrom(value).buildPartial(); - } else { - kacoha_ = value; - } - onChanged(); - } else { - kacohaBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - public Builder clearKacoha() { - if (kacohaBuilder_ == null) { - kacoha_ = null; - onChanged(); - } else { - kacoha_ = null; - kacohaBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder getKacohaBuilder() { - - onChanged(); - return getKacohaFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder getKacohaOrBuilder() { - if (kacohaBuilder_ != null) { - return kacohaBuilder_.getMessageOrBuilder(); - } else { - return kacoha_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.getDefaultInstance() : kacoha_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.KaCoHaOptions kacoha = 7; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder> - getKacohaFieldBuilder() { - if (kacohaBuilder_ == null) { - kacohaBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.KaCoHaOptionsOrBuilder>( - getKacoha(), - getParentForChildren(), - isClean()); - kacoha_ = null; - } - return kacohaBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder> deduplicateBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - * @return Whether the deduplicate field is set. - */ - public boolean hasDeduplicate() { - return deduplicateBuilder_ != null || deduplicate_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - * @return The deduplicate. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions getDeduplicate() { - if (deduplicateBuilder_ == null) { - return deduplicate_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.getDefaultInstance() : deduplicate_; - } else { - return deduplicateBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - public Builder setDeduplicate(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions value) { - if (deduplicateBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - deduplicate_ = value; - onChanged(); - } else { - deduplicateBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - public Builder setDeduplicate( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder builderForValue) { - if (deduplicateBuilder_ == null) { - deduplicate_ = builderForValue.build(); - onChanged(); - } else { - deduplicateBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - public Builder mergeDeduplicate(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions value) { - if (deduplicateBuilder_ == null) { - if (deduplicate_ != null) { - deduplicate_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.newBuilder(deduplicate_).mergeFrom(value).buildPartial(); - } else { - deduplicate_ = value; - } - onChanged(); - } else { - deduplicateBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - public Builder clearDeduplicate() { - if (deduplicateBuilder_ == null) { - deduplicate_ = null; - onChanged(); - } else { - deduplicate_ = null; - deduplicateBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder getDeduplicateBuilder() { - - onChanged(); - return getDeduplicateFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder getDeduplicateOrBuilder() { - if (deduplicateBuilder_ != null) { - return deduplicateBuilder_.getMessageOrBuilder(); - } else { - return deduplicate_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.getDefaultInstance() : deduplicate_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.DedupOptions deduplicate = 8; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder> - getDeduplicateFieldBuilder() { - if (deduplicateBuilder_ == null) { - deduplicateBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.DedupOptionsOrBuilder>( - getDeduplicate(), - getParentForChildren(), - isClean()); - deduplicate_ = null; - } - return deduplicateBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder> samplerBuilder_; - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - * @return Whether the sampler field is set. - */ - public boolean hasSampler() { - return samplerBuilder_ != null || sampler_ != null; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - * @return The sampler. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions getSampler() { - if (samplerBuilder_ == null) { - return sampler_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.getDefaultInstance() : sampler_; - } else { - return samplerBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - public Builder setSampler(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions value) { - if (samplerBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - sampler_ = value; - onChanged(); - } else { - samplerBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - public Builder setSampler( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder builderForValue) { - if (samplerBuilder_ == null) { - sampler_ = builderForValue.build(); - onChanged(); - } else { - samplerBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - public Builder mergeSampler(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions value) { - if (samplerBuilder_ == null) { - if (sampler_ != null) { - sampler_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.newBuilder(sampler_).mergeFrom(value).buildPartial(); - } else { - sampler_ = value; - } - onChanged(); - } else { - samplerBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - public Builder clearSampler() { - if (samplerBuilder_ == null) { - sampler_ = null; - onChanged(); - } else { - sampler_ = null; - samplerBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder getSamplerBuilder() { - - onChanged(); - return getSamplerFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder getSamplerOrBuilder() { - if (samplerBuilder_ != null) { - return samplerBuilder_.getMessageOrBuilder(); - } else { - return sampler_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.getDefaultInstance() : sampler_; - } - } - /** - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.SamplerOptions sampler = 9; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder> - getSamplerFieldBuilder() { - if (samplerBuilder_ == null) { - samplerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.SamplerOptionsOrBuilder>( - getSampler(), - getParentForChildren(), - isClean()); - sampler_ = null; - } - return samplerBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder> comparatorBuilder_; - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - * @return Whether the comparator field is set. - */ - public boolean hasComparator() { - return comparatorBuilder_ != null || comparator_ != null; - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - * @return The comparator. - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions getComparator() { - if (comparatorBuilder_ == null) { - return comparator_ == null ? com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.getDefaultInstance() : comparator_; - } else { - return comparatorBuilder_.getMessage(); - } - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - public Builder setComparator(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions value) { - if (comparatorBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - comparator_ = value; - onChanged(); - } else { - comparatorBuilder_.setMessage(value); - } - - return this; - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - public Builder setComparator( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder builderForValue) { - if (comparatorBuilder_ == null) { - comparator_ = builderForValue.build(); - onChanged(); - } else { - comparatorBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - public Builder mergeComparator(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions value) { - if (comparatorBuilder_ == null) { - if (comparator_ != null) { - comparator_ = - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.newBuilder(comparator_).mergeFrom(value).buildPartial(); - } else { - comparator_ = value; - } - onChanged(); - } else { - comparatorBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - public Builder clearComparator() { - if (comparatorBuilder_ == null) { - comparator_ = null; - onChanged(); - } else { - comparator_ = null; - comparatorBuilder_ = null; - } - - return this; - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder getComparatorBuilder() { - - onChanged(); - return getComparatorFieldBuilder().getBuilder(); - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder getComparatorOrBuilder() { - if (comparatorBuilder_ != null) { - return comparatorBuilder_.getMessageOrBuilder(); - } else { - return comparator_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.getDefaultInstance() : comparator_; - } - } - /** - *
-           * Add here any new hdfs producer
-           * 
- * - * .Acme.Glup.HDFSOptions.ImportOptions.Generator.ComparatorOptions comparator = 10; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder> - getComparatorFieldBuilder() { - if (comparatorBuilder_ == null) { - comparatorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.ComparatorOptionsOrBuilder>( - getComparator(), - getParentForChildren(), - isClean()); - comparator_ = null; - } - return comparatorBuilder_; - } - - private java.util.List to_ = - java.util.Collections.emptyList(); - private void ensureToIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - to_ = new java.util.ArrayList(to_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder> toBuilder_; - - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public java.util.List getToList() { - if (toBuilder_ == null) { - return java.util.Collections.unmodifiableList(to_); - } else { - return toBuilder_.getMessageList(); - } - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public int getToCount() { - if (toBuilder_ == null) { - return to_.size(); - } else { - return toBuilder_.getCount(); - } - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public com.acme.glup.MetadataProto.Location getTo(int index) { - if (toBuilder_ == null) { - return to_.get(index); - } else { - return toBuilder_.getMessage(index); - } - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder setTo( - int index, com.acme.glup.MetadataProto.Location value) { - if (toBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureToIsMutable(); - to_.set(index, value); - onChanged(); - } else { - toBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder setTo( - int index, com.acme.glup.MetadataProto.Location.Builder builderForValue) { - if (toBuilder_ == null) { - ensureToIsMutable(); - to_.set(index, builderForValue.build()); - onChanged(); - } else { - toBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder addTo(com.acme.glup.MetadataProto.Location value) { - if (toBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureToIsMutable(); - to_.add(value); - onChanged(); - } else { - toBuilder_.addMessage(value); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder addTo( - int index, com.acme.glup.MetadataProto.Location value) { - if (toBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureToIsMutable(); - to_.add(index, value); - onChanged(); - } else { - toBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder addTo( - com.acme.glup.MetadataProto.Location.Builder builderForValue) { - if (toBuilder_ == null) { - ensureToIsMutable(); - to_.add(builderForValue.build()); - onChanged(); - } else { - toBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder addTo( - int index, com.acme.glup.MetadataProto.Location.Builder builderForValue) { - if (toBuilder_ == null) { - ensureToIsMutable(); - to_.add(index, builderForValue.build()); - onChanged(); - } else { - toBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder addAllTo( - java.lang.Iterable values) { - if (toBuilder_ == null) { - ensureToIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, to_); - onChanged(); - } else { - toBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder clearTo() { - if (toBuilder_ == null) { - to_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - toBuilder_.clear(); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public Builder removeTo(int index) { - if (toBuilder_ == null) { - ensureToIsMutable(); - to_.remove(index); - onChanged(); - } else { - toBuilder_.remove(index); - } - return this; - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public com.acme.glup.MetadataProto.Location.Builder getToBuilder( - int index) { - return getToFieldBuilder().getBuilder(index); - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public com.acme.glup.MetadataProto.LocationOrBuilder getToOrBuilder( - int index) { - if (toBuilder_ == null) { - return to_.get(index); } else { - return toBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public java.util.List - getToOrBuilderList() { - if (toBuilder_ != null) { - return toBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(to_); - } - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public com.acme.glup.MetadataProto.Location.Builder addToBuilder() { - return getToFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.Location.getDefaultInstance()); - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public com.acme.glup.MetadataProto.Location.Builder addToBuilder( - int index) { - return getToFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.Location.getDefaultInstance()); - } - /** - *
-           * defines where it will run and push data
-           * 
- * - * repeated .Acme.Glup.Location to = 250; - */ - public java.util.List - getToBuilderList() { - return getToFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder> - getToFieldBuilder() { - if (toBuilder_ == null) { - toBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.Location, com.acme.glup.MetadataProto.Location.Builder, com.acme.glup.MetadataProto.LocationOrBuilder>( - to_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - to_ = null; - } - return toBuilder_; - } - - private java.lang.Object namespace_ = ""; - /** - * string namespace = 251; - * @return The namespace. - */ - public java.lang.String getNamespace() { - java.lang.Object ref = namespace_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - namespace_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string namespace = 251; - * @return The bytes for namespace. - */ - public com.google.protobuf.ByteString - getNamespaceBytes() { - java.lang.Object ref = namespace_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - namespace_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string namespace = 251; - * @param value The namespace to set. - * @return This builder for chaining. - */ - public Builder setNamespace( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - namespace_ = value; - onChanged(); - return this; - } - /** - * string namespace = 251; - * @return This builder for chaining. - */ - public Builder clearNamespace() { - - namespace_ = getDefaultInstance().getNamespace(); - onChanged(); - return this; - } - /** - * string namespace = 251; - * @param value The bytes for namespace to set. - * @return This builder for chaining. - */ - public Builder setNamespaceBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - namespace_ = value; - onChanged(); - return this; - } - - private java.lang.Object startDate_ = ""; - /** - *
-           * define beginning date inclusive
-           * 
- * - * string start_date = 253; - * @return The startDate. - */ - public java.lang.String getStartDate() { - java.lang.Object ref = startDate_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - startDate_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-           * define beginning date inclusive
-           * 
- * - * string start_date = 253; - * @return The bytes for startDate. - */ - public com.google.protobuf.ByteString - getStartDateBytes() { - java.lang.Object ref = startDate_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - startDate_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-           * define beginning date inclusive
-           * 
- * - * string start_date = 253; - * @param value The startDate to set. - * @return This builder for chaining. - */ - public Builder setStartDate( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - startDate_ = value; - onChanged(); - return this; - } - /** - *
-           * define beginning date inclusive
-           * 
- * - * string start_date = 253; - * @return This builder for chaining. - */ - public Builder clearStartDate() { - - startDate_ = getDefaultInstance().getStartDate(); - onChanged(); - return this; - } - /** - *
-           * define beginning date inclusive
-           * 
- * - * string start_date = 253; - * @param value The bytes for startDate to set. - * @return This builder for chaining. - */ - public Builder setStartDateBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - startDate_ = value; - onChanged(); - return this; - } - - private java.lang.Object stopDate_ = ""; - /** - *
-           * define stop date exclusive
-           * 
- * - * string stop_date = 254; - * @return The stopDate. - */ - public java.lang.String getStopDate() { - java.lang.Object ref = stopDate_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - stopDate_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-           * define stop date exclusive
-           * 
- * - * string stop_date = 254; - * @return The bytes for stopDate. - */ - public com.google.protobuf.ByteString - getStopDateBytes() { - java.lang.Object ref = stopDate_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - stopDate_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-           * define stop date exclusive
-           * 
- * - * string stop_date = 254; - * @param value The stopDate to set. - * @return This builder for chaining. - */ - public Builder setStopDate( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - stopDate_ = value; - onChanged(); - return this; - } - /** - *
-           * define stop date exclusive
-           * 
- * - * string stop_date = 254; - * @return This builder for chaining. - */ - public Builder clearStopDate() { - - stopDate_ = getDefaultInstance().getStopDate(); - onChanged(); - return this; - } - /** - *
-           * define stop date exclusive
-           * 
- * - * string stop_date = 254; - * @param value The bytes for stopDate to set. - * @return This builder for chaining. - */ - public Builder setStopDateBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - stopDate_ = value; - onChanged(); - return this; - } - - private boolean ignoreCn_ ; - /** - *
-           * TODO : remove this property when RIVERS-3723 (remove CN platform) is over
-           * 
- * - * bool ignore_cn = 255; - * @return The ignoreCn. - */ - @java.lang.Override - public boolean getIgnoreCn() { - return ignoreCn_; - } - /** - *
-           * TODO : remove this property when RIVERS-3723 (remove CN platform) is over
-           * 
- * - * bool ignore_cn = 255; - * @param value The ignoreCn to set. - * @return This builder for chaining. - */ - public Builder setIgnoreCn(boolean value) { - - ignoreCn_ = value; - onChanged(); - return this; - } - /** - *
-           * TODO : remove this property when RIVERS-3723 (remove CN platform) is over
-           * 
- * - * bool ignore_cn = 255; - * @return This builder for chaining. - */ - public Builder clearIgnoreCn() { - - ignoreCn_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions.Generator) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Generator parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Generator(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int OWNER_FIELD_NUMBER = 1; - private volatile java.lang.Object owner_; - /** - *
-       * location on hdfs
-       * 
- * - * string owner = 1; - * @return The owner. - */ - @java.lang.Override - public java.lang.String getOwner() { - java.lang.Object ref = owner_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - owner_ = s; - return s; - } - } - /** - *
-       * location on hdfs
-       * 
- * - * string owner = 1; - * @return The bytes for owner. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOwnerBytes() { - java.lang.Object ref = owner_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - owner_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int NAME_FIELD_NUMBER = 2; - private volatile java.lang.Object name_; - /** - * string name = 2; - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } - } - /** - * string name = 2; - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PARTITIONING_FIELD_NUMBER = 4; - private int partitioning_; - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return The enum numeric value on the wire for partitioning. - */ - @java.lang.Override public int getPartitioningValue() { - return partitioning_; - } - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return The partitioning. - */ - @java.lang.Override public com.acme.glup.MetadataProto.PartitionScheme getPartitioning() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitioning_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - - public static final int FORMAT_FIELD_NUMBER = 5; - private int format_; - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return The enum numeric value on the wire for format. - */ - @java.lang.Override public int getFormatValue() { - return format_; - } - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return The format. - */ - @java.lang.Override public com.acme.glup.MetadataProto.HDFSDataFormat getFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(format_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - - public static final int PRIVATE_FIELD_NUMBER = 6; - private boolean private_; - /** - *
-       * if set to true, imported data won't be readable from other users
-       * (permission o-rwx)
-       * 
- * - * bool private = 6; - * @return The private. - */ - @java.lang.Override - public boolean getPrivate() { - return private_; - } - - public static final int GENERATOR_FIELD_NUMBER = 11; - private java.util.List generator_; - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - @java.lang.Override - public java.util.List getGeneratorList() { - return generator_; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - @java.lang.Override - public java.util.List - getGeneratorOrBuilderList() { - return generator_; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - @java.lang.Override - public int getGeneratorCount() { - return generator_.size(); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator getGenerator(int index) { - return generator_.get(index); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder getGeneratorOrBuilder( - int index) { - return generator_.get(index); - } - - public static final int VIEW_FIELD_NUMBER = 12; - private java.util.List view_; - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - @java.lang.Override - public java.util.List getViewList() { - return view_; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - @java.lang.Override - public java.util.List - getViewOrBuilderList() { - return view_; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - @java.lang.Override - public int getViewCount() { - return view_.size(); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View getView(int index) { - return view_.get(index); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder getViewOrBuilder( - int index) { - return view_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(owner_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, owner_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, name_); - } - if (partitioning_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - output.writeEnum(4, partitioning_); - } - if (format_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - output.writeEnum(5, format_); - } - if (private_ != false) { - output.writeBool(6, private_); - } - for (int i = 0; i < generator_.size(); i++) { - output.writeMessage(11, generator_.get(i)); - } - for (int i = 0; i < view_.size(); i++) { - output.writeMessage(12, view_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(owner_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, owner_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, name_); - } - if (partitioning_ != com.acme.glup.MetadataProto.PartitionScheme.UNSUPPORTED_PARTITION_SCHEME.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(4, partitioning_); - } - if (format_ != com.acme.glup.MetadataProto.HDFSDataFormat.UNSUPPORTED_DATA_FORMAT.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(5, format_); - } - if (private_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(6, private_); - } - for (int i = 0; i < generator_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(11, generator_.get(i)); - } - for (int i = 0; i < view_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(12, view_.get(i)); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions other = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions) obj; - - if (!getOwner() - .equals(other.getOwner())) return false; - if (!getName() - .equals(other.getName())) return false; - if (partitioning_ != other.partitioning_) return false; - if (format_ != other.format_) return false; - if (getPrivate() - != other.getPrivate()) return false; - if (!getGeneratorList() - .equals(other.getGeneratorList())) return false; - if (!getViewList() - .equals(other.getViewList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + OWNER_FIELD_NUMBER; - hash = (53 * hash) + getOwner().hashCode(); - hash = (37 * hash) + NAME_FIELD_NUMBER; - hash = (53 * hash) + getName().hashCode(); - hash = (37 * hash) + PARTITIONING_FIELD_NUMBER; - hash = (53 * hash) + partitioning_; - hash = (37 * hash) + FORMAT_FIELD_NUMBER; - hash = (53 * hash) + format_; - hash = (37 * hash) + PRIVATE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getPrivate()); - if (getGeneratorCount() > 0) { - hash = (37 * hash) + GENERATOR_FIELD_NUMBER; - hash = (53 * hash) + getGeneratorList().hashCode(); - } - if (getViewCount() > 0) { - hash = (37 * hash) + VIEW_FIELD_NUMBER; - hash = (53 * hash) + getViewList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions.ImportOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions.ImportOptions) - com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.class, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getGeneratorFieldBuilder(); - getViewFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - owner_ = ""; - - name_ = ""; - - partitioning_ = 0; - - format_ = 0; - - private_ = false; - - if (generatorBuilder_ == null) { - generator_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - generatorBuilder_.clear(); - } - if (viewBuilder_ == null) { - view_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - } else { - viewBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions build() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions result = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions(this); - int from_bitField0_ = bitField0_; - result.owner_ = owner_; - result.name_ = name_; - result.partitioning_ = partitioning_; - result.format_ = format_; - result.private_ = private_; - if (generatorBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - generator_ = java.util.Collections.unmodifiableList(generator_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.generator_ = generator_; - } else { - result.generator_ = generatorBuilder_.build(); - } - if (viewBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0)) { - view_ = java.util.Collections.unmodifiableList(view_); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.view_ = view_; - } else { - result.view_ = viewBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions.ImportOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions.ImportOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.getDefaultInstance()) return this; - if (!other.getOwner().isEmpty()) { - owner_ = other.owner_; - onChanged(); - } - if (!other.getName().isEmpty()) { - name_ = other.name_; - onChanged(); - } - if (other.partitioning_ != 0) { - setPartitioningValue(other.getPartitioningValue()); - } - if (other.format_ != 0) { - setFormatValue(other.getFormatValue()); - } - if (other.getPrivate() != false) { - setPrivate(other.getPrivate()); - } - if (generatorBuilder_ == null) { - if (!other.generator_.isEmpty()) { - if (generator_.isEmpty()) { - generator_ = other.generator_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureGeneratorIsMutable(); - generator_.addAll(other.generator_); - } - onChanged(); - } - } else { - if (!other.generator_.isEmpty()) { - if (generatorBuilder_.isEmpty()) { - generatorBuilder_.dispose(); - generatorBuilder_ = null; - generator_ = other.generator_; - bitField0_ = (bitField0_ & ~0x00000001); - generatorBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getGeneratorFieldBuilder() : null; - } else { - generatorBuilder_.addAllMessages(other.generator_); - } - } - } - if (viewBuilder_ == null) { - if (!other.view_.isEmpty()) { - if (view_.isEmpty()) { - view_ = other.view_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensureViewIsMutable(); - view_.addAll(other.view_); - } - onChanged(); - } - } else { - if (!other.view_.isEmpty()) { - if (viewBuilder_.isEmpty()) { - viewBuilder_.dispose(); - viewBuilder_ = null; - view_ = other.view_; - bitField0_ = (bitField0_ & ~0x00000002); - viewBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getViewFieldBuilder() : null; - } else { - viewBuilder_.addAllMessages(other.view_); - } - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions.ImportOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.lang.Object owner_ = ""; - /** - *
-         * location on hdfs
-         * 
- * - * string owner = 1; - * @return The owner. - */ - public java.lang.String getOwner() { - java.lang.Object ref = owner_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - owner_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * location on hdfs
-         * 
- * - * string owner = 1; - * @return The bytes for owner. - */ - public com.google.protobuf.ByteString - getOwnerBytes() { - java.lang.Object ref = owner_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - owner_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * location on hdfs
-         * 
- * - * string owner = 1; - * @param value The owner to set. - * @return This builder for chaining. - */ - public Builder setOwner( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - owner_ = value; - onChanged(); - return this; - } - /** - *
-         * location on hdfs
-         * 
- * - * string owner = 1; - * @return This builder for chaining. - */ - public Builder clearOwner() { - - owner_ = getDefaultInstance().getOwner(); - onChanged(); - return this; - } - /** - *
-         * location on hdfs
-         * 
- * - * string owner = 1; - * @param value The bytes for owner to set. - * @return This builder for chaining. - */ - public Builder setOwnerBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - owner_ = value; - onChanged(); - return this; - } - - private java.lang.Object name_ = ""; - /** - * string name = 2; - * @return The name. - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string name = 2; - * @return The bytes for name. - */ - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string name = 2; - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - name_ = value; - onChanged(); - return this; - } - /** - * string name = 2; - * @return This builder for chaining. - */ - public Builder clearName() { - - name_ = getDefaultInstance().getName(); - onChanged(); - return this; - } - /** - * string name = 2; - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; - } - - private int partitioning_ = 0; - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return The enum numeric value on the wire for partitioning. - */ - @java.lang.Override public int getPartitioningValue() { - return partitioning_; - } - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @param value The enum numeric value on the wire for partitioning to set. - * @return This builder for chaining. - */ - public Builder setPartitioningValue(int value) { - - partitioning_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return The partitioning. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionScheme getPartitioning() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.PartitionScheme result = com.acme.glup.MetadataProto.PartitionScheme.valueOf(partitioning_); - return result == null ? com.acme.glup.MetadataProto.PartitionScheme.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @param value The partitioning to set. - * @return This builder for chaining. - */ - public Builder setPartitioning(com.acme.glup.MetadataProto.PartitionScheme value) { - if (value == null) { - throw new NullPointerException(); - } - - partitioning_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.PartitionScheme partitioning = 4; - * @return This builder for chaining. - */ - public Builder clearPartitioning() { - - partitioning_ = 0; - onChanged(); - return this; - } - - private int format_ = 0; - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return The enum numeric value on the wire for format. - */ - @java.lang.Override public int getFormatValue() { - return format_; - } - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @param value The enum numeric value on the wire for format to set. - * @return This builder for chaining. - */ - public Builder setFormatValue(int value) { - - format_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return The format. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSDataFormat getFormat() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.HDFSDataFormat result = com.acme.glup.MetadataProto.HDFSDataFormat.valueOf(format_); - return result == null ? com.acme.glup.MetadataProto.HDFSDataFormat.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @param value The format to set. - * @return This builder for chaining. - */ - public Builder setFormat(com.acme.glup.MetadataProto.HDFSDataFormat value) { - if (value == null) { - throw new NullPointerException(); - } - - format_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.HDFSDataFormat format = 5; - * @return This builder for chaining. - */ - public Builder clearFormat() { - - format_ = 0; - onChanged(); - return this; - } - - private boolean private_ ; - /** - *
-         * if set to true, imported data won't be readable from other users
-         * (permission o-rwx)
-         * 
- * - * bool private = 6; - * @return The private. - */ - @java.lang.Override - public boolean getPrivate() { - return private_; - } - /** - *
-         * if set to true, imported data won't be readable from other users
-         * (permission o-rwx)
-         * 
- * - * bool private = 6; - * @param value The private to set. - * @return This builder for chaining. - */ - public Builder setPrivate(boolean value) { - - private_ = value; - onChanged(); - return this; - } - /** - *
-         * if set to true, imported data won't be readable from other users
-         * (permission o-rwx)
-         * 
- * - * bool private = 6; - * @return This builder for chaining. - */ - public Builder clearPrivate() { - - private_ = false; - onChanged(); - return this; - } - - private java.util.List generator_ = - java.util.Collections.emptyList(); - private void ensureGeneratorIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - generator_ = new java.util.ArrayList(generator_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder> generatorBuilder_; - - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public java.util.List getGeneratorList() { - if (generatorBuilder_ == null) { - return java.util.Collections.unmodifiableList(generator_); - } else { - return generatorBuilder_.getMessageList(); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public int getGeneratorCount() { - if (generatorBuilder_ == null) { - return generator_.size(); - } else { - return generatorBuilder_.getCount(); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator getGenerator(int index) { - if (generatorBuilder_ == null) { - return generator_.get(index); - } else { - return generatorBuilder_.getMessage(index); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder setGenerator( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator value) { - if (generatorBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureGeneratorIsMutable(); - generator_.set(index, value); - onChanged(); - } else { - generatorBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder setGenerator( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder builderForValue) { - if (generatorBuilder_ == null) { - ensureGeneratorIsMutable(); - generator_.set(index, builderForValue.build()); - onChanged(); - } else { - generatorBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder addGenerator(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator value) { - if (generatorBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureGeneratorIsMutable(); - generator_.add(value); - onChanged(); - } else { - generatorBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder addGenerator( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator value) { - if (generatorBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureGeneratorIsMutable(); - generator_.add(index, value); - onChanged(); - } else { - generatorBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder addGenerator( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder builderForValue) { - if (generatorBuilder_ == null) { - ensureGeneratorIsMutable(); - generator_.add(builderForValue.build()); - onChanged(); - } else { - generatorBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder addGenerator( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder builderForValue) { - if (generatorBuilder_ == null) { - ensureGeneratorIsMutable(); - generator_.add(index, builderForValue.build()); - onChanged(); - } else { - generatorBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder addAllGenerator( - java.lang.Iterable values) { - if (generatorBuilder_ == null) { - ensureGeneratorIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, generator_); - onChanged(); - } else { - generatorBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder clearGenerator() { - if (generatorBuilder_ == null) { - generator_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - generatorBuilder_.clear(); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public Builder removeGenerator(int index) { - if (generatorBuilder_ == null) { - ensureGeneratorIsMutable(); - generator_.remove(index); - onChanged(); - } else { - generatorBuilder_.remove(index); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder getGeneratorBuilder( - int index) { - return getGeneratorFieldBuilder().getBuilder(index); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder getGeneratorOrBuilder( - int index) { - if (generatorBuilder_ == null) { - return generator_.get(index); } else { - return generatorBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public java.util.List - getGeneratorOrBuilderList() { - if (generatorBuilder_ != null) { - return generatorBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(generator_); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder addGeneratorBuilder() { - return getGeneratorFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder addGeneratorBuilder( - int index) { - return getGeneratorFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.Generator generator = 11; - */ - public java.util.List - getGeneratorBuilderList() { - return getGeneratorFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder> - getGeneratorFieldBuilder() { - if (generatorBuilder_ == null) { - generatorBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Generator.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.GeneratorOrBuilder>( - generator_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - generator_ = null; - } - return generatorBuilder_; - } - - private java.util.List view_ = - java.util.Collections.emptyList(); - private void ensureViewIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - view_ = new java.util.ArrayList(view_); - bitField0_ |= 0x00000002; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder> viewBuilder_; - - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public java.util.List getViewList() { - if (viewBuilder_ == null) { - return java.util.Collections.unmodifiableList(view_); - } else { - return viewBuilder_.getMessageList(); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public int getViewCount() { - if (viewBuilder_ == null) { - return view_.size(); - } else { - return viewBuilder_.getCount(); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View getView(int index) { - if (viewBuilder_ == null) { - return view_.get(index); - } else { - return viewBuilder_.getMessage(index); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder setView( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View value) { - if (viewBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureViewIsMutable(); - view_.set(index, value); - onChanged(); - } else { - viewBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder setView( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder builderForValue) { - if (viewBuilder_ == null) { - ensureViewIsMutable(); - view_.set(index, builderForValue.build()); - onChanged(); - } else { - viewBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder addView(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View value) { - if (viewBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureViewIsMutable(); - view_.add(value); - onChanged(); - } else { - viewBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder addView( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View value) { - if (viewBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureViewIsMutable(); - view_.add(index, value); - onChanged(); - } else { - viewBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder addView( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder builderForValue) { - if (viewBuilder_ == null) { - ensureViewIsMutable(); - view_.add(builderForValue.build()); - onChanged(); - } else { - viewBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder addView( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder builderForValue) { - if (viewBuilder_ == null) { - ensureViewIsMutable(); - view_.add(index, builderForValue.build()); - onChanged(); - } else { - viewBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder addAllView( - java.lang.Iterable values) { - if (viewBuilder_ == null) { - ensureViewIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, view_); - onChanged(); - } else { - viewBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder clearView() { - if (viewBuilder_ == null) { - view_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - } else { - viewBuilder_.clear(); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public Builder removeView(int index) { - if (viewBuilder_ == null) { - ensureViewIsMutable(); - view_.remove(index); - onChanged(); - } else { - viewBuilder_.remove(index); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder getViewBuilder( - int index) { - return getViewFieldBuilder().getBuilder(index); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder getViewOrBuilder( - int index) { - if (viewBuilder_ == null) { - return view_.get(index); } else { - return viewBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public java.util.List - getViewOrBuilderList() { - if (viewBuilder_ != null) { - return viewBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(view_); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder addViewBuilder() { - return getViewFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder addViewBuilder( - int index) { - return getViewFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions.View view = 12; - */ - public java.util.List - getViewBuilderList() { - return getViewFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder> - getViewFieldBuilder() { - if (viewBuilder_ == null) { - viewBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.View.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.ViewOrBuilder>( - view_, - ((bitField0_ & 0x00000002) != 0), - getParentForChildren(), - isClean()); - view_ = null; - } - return viewBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions.ImportOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions.ImportOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions.ImportOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions.ImportOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions.ImportOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ImportOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ImportOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int IMPORT_FIELD_NUMBER = 3; - private java.util.List import_; - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - @java.lang.Override - public java.util.List getImportList() { - return import_; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - @java.lang.Override - public java.util.List - getImportOrBuilderList() { - return import_; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - @java.lang.Override - public int getImportCount() { - return import_.size(); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions getImport(int index) { - return import_.get(index); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder getImportOrBuilder( - int index) { - return import_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - for (int i = 0; i < import_.size(); i++) { - output.writeMessage(3, import_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - for (int i = 0; i < import_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, import_.get(i)); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSOptions other = (com.acme.glup.MetadataProto.HDFSOptions) obj; - - if (!getImportList() - .equals(other.getImportList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (getImportCount() > 0) { - hash = (37 * hash) + IMPORT_FIELD_NUMBER; - hash = (53 * hash) + getImportList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.HDFSOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSOptions) - com.acme.glup.MetadataProto.HDFSOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSOptions.class, com.acme.glup.MetadataProto.HDFSOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getImportFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (importBuilder_ == null) { - import_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - importBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions build() { - com.acme.glup.MetadataProto.HDFSOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions buildPartial() { - com.acme.glup.MetadataProto.HDFSOptions result = new com.acme.glup.MetadataProto.HDFSOptions(this); - int from_bitField0_ = bitField0_; - if (importBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - import_ = java.util.Collections.unmodifiableList(import_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.import_ = import_; - } else { - result.import_ = importBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSOptions) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSOptions other) { - if (other == com.acme.glup.MetadataProto.HDFSOptions.getDefaultInstance()) return this; - if (importBuilder_ == null) { - if (!other.import_.isEmpty()) { - if (import_.isEmpty()) { - import_ = other.import_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureImportIsMutable(); - import_.addAll(other.import_); - } - onChanged(); - } - } else { - if (!other.import_.isEmpty()) { - if (importBuilder_.isEmpty()) { - importBuilder_.dispose(); - importBuilder_ = null; - import_ = other.import_; - bitField0_ = (bitField0_ & ~0x00000001); - importBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getImportFieldBuilder() : null; - } else { - importBuilder_.addAllMessages(other.import_); - } - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.util.List import_ = - java.util.Collections.emptyList(); - private void ensureImportIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - import_ = new java.util.ArrayList(import_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder> importBuilder_; - - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public java.util.List getImportList() { - if (importBuilder_ == null) { - return java.util.Collections.unmodifiableList(import_); - } else { - return importBuilder_.getMessageList(); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public int getImportCount() { - if (importBuilder_ == null) { - return import_.size(); - } else { - return importBuilder_.getCount(); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions getImport(int index) { - if (importBuilder_ == null) { - return import_.get(index); - } else { - return importBuilder_.getMessage(index); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder setImport( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions value) { - if (importBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureImportIsMutable(); - import_.set(index, value); - onChanged(); - } else { - importBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder setImport( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder builderForValue) { - if (importBuilder_ == null) { - ensureImportIsMutable(); - import_.set(index, builderForValue.build()); - onChanged(); - } else { - importBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder addImport(com.acme.glup.MetadataProto.HDFSOptions.ImportOptions value) { - if (importBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureImportIsMutable(); - import_.add(value); - onChanged(); - } else { - importBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder addImport( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions value) { - if (importBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureImportIsMutable(); - import_.add(index, value); - onChanged(); - } else { - importBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder addImport( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder builderForValue) { - if (importBuilder_ == null) { - ensureImportIsMutable(); - import_.add(builderForValue.build()); - onChanged(); - } else { - importBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder addImport( - int index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder builderForValue) { - if (importBuilder_ == null) { - ensureImportIsMutable(); - import_.add(index, builderForValue.build()); - onChanged(); - } else { - importBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder addAllImport( - java.lang.Iterable values) { - if (importBuilder_ == null) { - ensureImportIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, import_); - onChanged(); - } else { - importBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder clearImport() { - if (importBuilder_ == null) { - import_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - importBuilder_.clear(); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public Builder removeImport(int index) { - if (importBuilder_ == null) { - ensureImportIsMutable(); - import_.remove(index); - onChanged(); - } else { - importBuilder_.remove(index); - } - return this; - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder getImportBuilder( - int index) { - return getImportFieldBuilder().getBuilder(index); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder getImportOrBuilder( - int index) { - if (importBuilder_ == null) { - return import_.get(index); } else { - return importBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public java.util.List - getImportOrBuilderList() { - if (importBuilder_ != null) { - return importBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(import_); - } - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder addImportBuilder() { - return getImportFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder addImportBuilder( - int index) { - return getImportFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.getDefaultInstance()); - } - /** - * repeated .Acme.Glup.HDFSOptions.ImportOptions import = 3; - */ - public java.util.List - getImportBuilderList() { - return getImportFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder> - getImportFieldBuilder() { - if (importBuilder_ == null) { - importBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions.ImportOptions, com.acme.glup.MetadataProto.HDFSOptions.ImportOptions.Builder, com.acme.glup.MetadataProto.HDFSOptions.ImportOptionsOrBuilder>( - import_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - import_ = null; - } - return importBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSOptions) - private static final com.acme.glup.MetadataProto.HDFSOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSOptions(); - } - - public static com.acme.glup.MetadataProto.HDFSOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public HDFSOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new HDFSOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ProducerTransportOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.ProducerTransportOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * send glup through syslog. Deprecated, do not use for new glup
-     * 
- * - * bool syslog = 1; - * @return The syslog. - */ - boolean getSyslog(); - - /** - *
-     * send glup through kafka
-     * 
- * - * bool kafka = 2; - * @return The kafka. - */ - boolean getKafka(); - } - /** - *
-   * Describes the producers to use when emitting a Glup
-   * If the producer is not set or is set to false, then the producer is not used
-   * 
- * - * Protobuf type {@code Acme.Glup.ProducerTransportOptions} - */ - public static final class ProducerTransportOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.ProducerTransportOptions) - ProducerTransportOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use ProducerTransportOptions.newBuilder() to construct. - private ProducerTransportOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ProducerTransportOptions() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ProducerTransportOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ProducerTransportOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - syslog_ = input.readBool(); - break; - } - case 16: { - - kafka_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ProducerTransportOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ProducerTransportOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ProducerTransportOptions.class, com.acme.glup.MetadataProto.ProducerTransportOptions.Builder.class); - } - - public static final int SYSLOG_FIELD_NUMBER = 1; - private boolean syslog_; - /** - *
-     * send glup through syslog. Deprecated, do not use for new glup
-     * 
- * - * bool syslog = 1; - * @return The syslog. - */ - @java.lang.Override - public boolean getSyslog() { - return syslog_; - } - - public static final int KAFKA_FIELD_NUMBER = 2; - private boolean kafka_; - /** - *
-     * send glup through kafka
-     * 
- * - * bool kafka = 2; - * @return The kafka. - */ - @java.lang.Override - public boolean getKafka() { - return kafka_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (syslog_ != false) { - output.writeBool(1, syslog_); - } - if (kafka_ != false) { - output.writeBool(2, kafka_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (syslog_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(1, syslog_); - } - if (kafka_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, kafka_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.ProducerTransportOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.ProducerTransportOptions other = (com.acme.glup.MetadataProto.ProducerTransportOptions) obj; - - if (getSyslog() - != other.getSyslog()) return false; - if (getKafka() - != other.getKafka()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + SYSLOG_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getSyslog()); - hash = (37 * hash) + KAFKA_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getKafka()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ProducerTransportOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.ProducerTransportOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Describes the producers to use when emitting a Glup
-     * If the producer is not set or is set to false, then the producer is not used
-     * 
- * - * Protobuf type {@code Acme.Glup.ProducerTransportOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.ProducerTransportOptions) - com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ProducerTransportOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ProducerTransportOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ProducerTransportOptions.class, com.acme.glup.MetadataProto.ProducerTransportOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.ProducerTransportOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - syslog_ = false; - - kafka_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ProducerTransportOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ProducerTransportOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.ProducerTransportOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ProducerTransportOptions build() { - com.acme.glup.MetadataProto.ProducerTransportOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ProducerTransportOptions buildPartial() { - com.acme.glup.MetadataProto.ProducerTransportOptions result = new com.acme.glup.MetadataProto.ProducerTransportOptions(this); - result.syslog_ = syslog_; - result.kafka_ = kafka_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.ProducerTransportOptions) { - return mergeFrom((com.acme.glup.MetadataProto.ProducerTransportOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.ProducerTransportOptions other) { - if (other == com.acme.glup.MetadataProto.ProducerTransportOptions.getDefaultInstance()) return this; - if (other.getSyslog() != false) { - setSyslog(other.getSyslog()); - } - if (other.getKafka() != false) { - setKafka(other.getKafka()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.ProducerTransportOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.ProducerTransportOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private boolean syslog_ ; - /** - *
-       * send glup through syslog. Deprecated, do not use for new glup
-       * 
- * - * bool syslog = 1; - * @return The syslog. - */ - @java.lang.Override - public boolean getSyslog() { - return syslog_; - } - /** - *
-       * send glup through syslog. Deprecated, do not use for new glup
-       * 
- * - * bool syslog = 1; - * @param value The syslog to set. - * @return This builder for chaining. - */ - public Builder setSyslog(boolean value) { - - syslog_ = value; - onChanged(); - return this; - } - /** - *
-       * send glup through syslog. Deprecated, do not use for new glup
-       * 
- * - * bool syslog = 1; - * @return This builder for chaining. - */ - public Builder clearSyslog() { - - syslog_ = false; - onChanged(); - return this; - } - - private boolean kafka_ ; - /** - *
-       * send glup through kafka
-       * 
- * - * bool kafka = 2; - * @return The kafka. - */ - @java.lang.Override - public boolean getKafka() { - return kafka_; - } - /** - *
-       * send glup through kafka
-       * 
- * - * bool kafka = 2; - * @param value The kafka to set. - * @return This builder for chaining. - */ - public Builder setKafka(boolean value) { - - kafka_ = value; - onChanged(); - return this; - } - /** - *
-       * send glup through kafka
-       * 
- * - * bool kafka = 2; - * @return This builder for chaining. - */ - public Builder clearKafka() { - - kafka_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.ProducerTransportOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.ProducerTransportOptions) - private static final com.acme.glup.MetadataProto.ProducerTransportOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.ProducerTransportOptions(); - } - - public static com.acme.glup.MetadataProto.ProducerTransportOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ProducerTransportOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ProducerTransportOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ProducerTransportOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface PropertyOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.PropertyOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * can be used to provide a different QoS for important glups
-     * 
- * - * bool valuable = 1; - * @return The valuable. - */ - boolean getValuable(); - - /** - *
-     * can be used to select suitable instances capable of handling a high volume of glups
-     * 
- * - * bool high_volume = 2; - * @return The highVolume. - */ - boolean getHighVolume(); - } - /** - *
-   * Describes additional glup properties
-   * It is used to help selecting the most appropriate pipeline configuration when sending a glup
-   * 
- * - * Protobuf type {@code Acme.Glup.PropertyOptions} - */ - public static final class PropertyOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.PropertyOptions) - PropertyOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use PropertyOptions.newBuilder() to construct. - private PropertyOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private PropertyOptions() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new PropertyOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private PropertyOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - valuable_ = input.readBool(); - break; - } - case 16: { - - highVolume_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_PropertyOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_PropertyOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.PropertyOptions.class, com.acme.glup.MetadataProto.PropertyOptions.Builder.class); - } - - public static final int VALUABLE_FIELD_NUMBER = 1; - private boolean valuable_; - /** - *
-     * can be used to provide a different QoS for important glups
-     * 
- * - * bool valuable = 1; - * @return The valuable. - */ - @java.lang.Override - public boolean getValuable() { - return valuable_; - } - - public static final int HIGH_VOLUME_FIELD_NUMBER = 2; - private boolean highVolume_; - /** - *
-     * can be used to select suitable instances capable of handling a high volume of glups
-     * 
- * - * bool high_volume = 2; - * @return The highVolume. - */ - @java.lang.Override - public boolean getHighVolume() { - return highVolume_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (valuable_ != false) { - output.writeBool(1, valuable_); - } - if (highVolume_ != false) { - output.writeBool(2, highVolume_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (valuable_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(1, valuable_); - } - if (highVolume_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, highVolume_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.PropertyOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.PropertyOptions other = (com.acme.glup.MetadataProto.PropertyOptions) obj; - - if (getValuable() - != other.getValuable()) return false; - if (getHighVolume() - != other.getHighVolume()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUABLE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getValuable()); - hash = (37 * hash) + HIGH_VOLUME_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getHighVolume()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.PropertyOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.PropertyOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Describes additional glup properties
-     * It is used to help selecting the most appropriate pipeline configuration when sending a glup
-     * 
- * - * Protobuf type {@code Acme.Glup.PropertyOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.PropertyOptions) - com.acme.glup.MetadataProto.PropertyOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_PropertyOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_PropertyOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.PropertyOptions.class, com.acme.glup.MetadataProto.PropertyOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.PropertyOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - valuable_ = false; - - highVolume_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_PropertyOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.PropertyOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.PropertyOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.PropertyOptions build() { - com.acme.glup.MetadataProto.PropertyOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.PropertyOptions buildPartial() { - com.acme.glup.MetadataProto.PropertyOptions result = new com.acme.glup.MetadataProto.PropertyOptions(this); - result.valuable_ = valuable_; - result.highVolume_ = highVolume_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.PropertyOptions) { - return mergeFrom((com.acme.glup.MetadataProto.PropertyOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.PropertyOptions other) { - if (other == com.acme.glup.MetadataProto.PropertyOptions.getDefaultInstance()) return this; - if (other.getValuable() != false) { - setValuable(other.getValuable()); - } - if (other.getHighVolume() != false) { - setHighVolume(other.getHighVolume()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.PropertyOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.PropertyOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private boolean valuable_ ; - /** - *
-       * can be used to provide a different QoS for important glups
-       * 
- * - * bool valuable = 1; - * @return The valuable. - */ - @java.lang.Override - public boolean getValuable() { - return valuable_; - } - /** - *
-       * can be used to provide a different QoS for important glups
-       * 
- * - * bool valuable = 1; - * @param value The valuable to set. - * @return This builder for chaining. - */ - public Builder setValuable(boolean value) { - - valuable_ = value; - onChanged(); - return this; - } - /** - *
-       * can be used to provide a different QoS for important glups
-       * 
- * - * bool valuable = 1; - * @return This builder for chaining. - */ - public Builder clearValuable() { - - valuable_ = false; - onChanged(); - return this; - } - - private boolean highVolume_ ; - /** - *
-       * can be used to select suitable instances capable of handling a high volume of glups
-       * 
- * - * bool high_volume = 2; - * @return The highVolume. - */ - @java.lang.Override - public boolean getHighVolume() { - return highVolume_; - } - /** - *
-       * can be used to select suitable instances capable of handling a high volume of glups
-       * 
- * - * bool high_volume = 2; - * @param value The highVolume to set. - * @return This builder for chaining. - */ - public Builder setHighVolume(boolean value) { - - highVolume_ = value; - onChanged(); - return this; - } - /** - *
-       * can be used to select suitable instances capable of handling a high volume of glups
-       * 
- * - * bool high_volume = 2; - * @return This builder for chaining. - */ - public Builder clearHighVolume() { - - highVolume_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.PropertyOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.PropertyOptions) - private static final com.acme.glup.MetadataProto.PropertyOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.PropertyOptions(); - } - - public static com.acme.glup.MetadataProto.PropertyOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public PropertyOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new PropertyOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.PropertyOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface GlupOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.GlupOptions) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * kafka settings
-     * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - * @return Whether the kafka field is set. - */ - boolean hasKafka(); - /** - *
-     * kafka settings
-     * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - * @return The kafka. - */ - com.acme.glup.MetadataProto.KafkaMessageOptions getKafka(); - /** - *
-     * kafka settings
-     * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder getKafkaOrBuilder(); - - /** - *
-     * hdfs import settings
-     * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - * @return Whether the hdfs field is set. - */ - boolean hasHdfs(); - /** - *
-     * hdfs import settings
-     * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - * @return The hdfs. - */ - com.acme.glup.MetadataProto.HDFSOptions getHdfs(); - /** - *
-     * hdfs import settings
-     * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - com.acme.glup.MetadataProto.HDFSOptionsOrBuilder getHdfsOrBuilder(); - - /** - *
-     * field samplimg rate
-     * 
- * - * uint32 sampling_pct = 3; - * @return The samplingPct. - */ - int getSamplingPct(); - - /** - *
-     * preprod message sampling rate
-     * 
- * - * uint32 preprod_sampling_pct = 4; - * @return The preprodSamplingPct. - */ - int getPreprodSamplingPct(); - - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - java.util.List - getDatasetList(); - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - com.acme.glup.MetadataProto.DataSet getDataset(int index); - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - int getDatasetCount(); - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - java.util.List - getDatasetOrBuilderList(); - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - com.acme.glup.MetadataProto.DataSetOrBuilder getDatasetOrBuilder( - int index); - - /** - *
-     * message sampling rate
-     * 
- * - * uint32 message_sampling_pct = 6; - * @return The messageSamplingPct. - */ - int getMessageSamplingPct(); - - /** - *
-     * producer(s) to use
-     * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - * @return Whether the producers field is set. - */ - boolean hasProducers(); - /** - *
-     * producer(s) to use
-     * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - * @return The producers. - */ - com.acme.glup.MetadataProto.ProducerTransportOptions getProducers(); - /** - *
-     * producer(s) to use
-     * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder getProducersOrBuilder(); - - /** - *
-     * additional glup properties
-     * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - * @return Whether the properties field is set. - */ - boolean hasProperties(); - /** - *
-     * additional glup properties
-     * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - * @return The properties. - */ - com.acme.glup.MetadataProto.PropertyOptions getProperties(); - /** - *
-     * additional glup properties
-     * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - com.acme.glup.MetadataProto.PropertyOptionsOrBuilder getPropertiesOrBuilder(); - } - /** - * Protobuf type {@code Acme.Glup.GlupOptions} - */ - public static final class GlupOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.GlupOptions) - GlupOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use GlupOptions.newBuilder() to construct. - private GlupOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private GlupOptions() { - dataset_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new GlupOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private GlupOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.KafkaMessageOptions.Builder subBuilder = null; - if (kafka_ != null) { - subBuilder = kafka_.toBuilder(); - } - kafka_ = input.readMessage(com.acme.glup.MetadataProto.KafkaMessageOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(kafka_); - kafka_ = subBuilder.buildPartial(); - } - - break; - } - case 18: { - com.acme.glup.MetadataProto.HDFSOptions.Builder subBuilder = null; - if (hdfs_ != null) { - subBuilder = hdfs_.toBuilder(); - } - hdfs_ = input.readMessage(com.acme.glup.MetadataProto.HDFSOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(hdfs_); - hdfs_ = subBuilder.buildPartial(); - } - - break; - } - case 24: { - - samplingPct_ = input.readUInt32(); - break; - } - case 32: { - - preprodSamplingPct_ = input.readUInt32(); - break; - } - case 42: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - dataset_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - dataset_.add( - input.readMessage(com.acme.glup.MetadataProto.DataSet.parser(), extensionRegistry)); - break; - } - case 48: { - - messageSamplingPct_ = input.readUInt32(); - break; - } - case 58: { - com.acme.glup.MetadataProto.ProducerTransportOptions.Builder subBuilder = null; - if (producers_ != null) { - subBuilder = producers_.toBuilder(); - } - producers_ = input.readMessage(com.acme.glup.MetadataProto.ProducerTransportOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(producers_); - producers_ = subBuilder.buildPartial(); - } - - break; - } - case 66: { - com.acme.glup.MetadataProto.PropertyOptions.Builder subBuilder = null; - if (properties_ != null) { - subBuilder = properties_.toBuilder(); - } - properties_ = input.readMessage(com.acme.glup.MetadataProto.PropertyOptions.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(properties_); - properties_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - dataset_ = java.util.Collections.unmodifiableList(dataset_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.GlupOptions.class, com.acme.glup.MetadataProto.GlupOptions.Builder.class); - } - - public static final int KAFKA_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.KafkaMessageOptions kafka_; - /** - *
-     * kafka settings
-     * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - * @return Whether the kafka field is set. - */ - @java.lang.Override - public boolean hasKafka() { - return kafka_ != null; - } - /** - *
-     * kafka settings
-     * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - * @return The kafka. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.KafkaMessageOptions getKafka() { - return kafka_ == null ? com.acme.glup.MetadataProto.KafkaMessageOptions.getDefaultInstance() : kafka_; - } - /** - *
-     * kafka settings
-     * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder getKafkaOrBuilder() { - return getKafka(); - } - - public static final int HDFS_FIELD_NUMBER = 2; - private com.acme.glup.MetadataProto.HDFSOptions hdfs_; - /** - *
-     * hdfs import settings
-     * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - * @return Whether the hdfs field is set. - */ - @java.lang.Override - public boolean hasHdfs() { - return hdfs_ != null; - } - /** - *
-     * hdfs import settings
-     * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - * @return The hdfs. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptions getHdfs() { - return hdfs_ == null ? com.acme.glup.MetadataProto.HDFSOptions.getDefaultInstance() : hdfs_; - } - /** - *
-     * hdfs import settings
-     * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSOptionsOrBuilder getHdfsOrBuilder() { - return getHdfs(); - } - - public static final int SAMPLING_PCT_FIELD_NUMBER = 3; - private int samplingPct_; - /** - *
-     * field samplimg rate
-     * 
- * - * uint32 sampling_pct = 3; - * @return The samplingPct. - */ - @java.lang.Override - public int getSamplingPct() { - return samplingPct_; - } - - public static final int PREPROD_SAMPLING_PCT_FIELD_NUMBER = 4; - private int preprodSamplingPct_; - /** - *
-     * preprod message sampling rate
-     * 
- * - * uint32 preprod_sampling_pct = 4; - * @return The preprodSamplingPct. - */ - @java.lang.Override - public int getPreprodSamplingPct() { - return preprodSamplingPct_; - } - - public static final int DATASET_FIELD_NUMBER = 5; - private java.util.List dataset_; - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - @java.lang.Override - public java.util.List getDatasetList() { - return dataset_; - } - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - @java.lang.Override - public java.util.List - getDatasetOrBuilderList() { - return dataset_; - } - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - @java.lang.Override - public int getDatasetCount() { - return dataset_.size(); - } - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSet getDataset(int index) { - return dataset_.get(index); - } - /** - *
-     * dataset definition
-     * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataSetOrBuilder getDatasetOrBuilder( - int index) { - return dataset_.get(index); - } - - public static final int MESSAGE_SAMPLING_PCT_FIELD_NUMBER = 6; - private int messageSamplingPct_; - /** - *
-     * message sampling rate
-     * 
- * - * uint32 message_sampling_pct = 6; - * @return The messageSamplingPct. - */ - @java.lang.Override - public int getMessageSamplingPct() { - return messageSamplingPct_; - } - - public static final int PRODUCERS_FIELD_NUMBER = 7; - private com.acme.glup.MetadataProto.ProducerTransportOptions producers_; - /** - *
-     * producer(s) to use
-     * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - * @return Whether the producers field is set. - */ - @java.lang.Override - public boolean hasProducers() { - return producers_ != null; - } - /** - *
-     * producer(s) to use
-     * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - * @return The producers. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ProducerTransportOptions getProducers() { - return producers_ == null ? com.acme.glup.MetadataProto.ProducerTransportOptions.getDefaultInstance() : producers_; - } - /** - *
-     * producer(s) to use
-     * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder getProducersOrBuilder() { - return getProducers(); - } - - public static final int PROPERTIES_FIELD_NUMBER = 8; - private com.acme.glup.MetadataProto.PropertyOptions properties_; - /** - *
-     * additional glup properties
-     * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - * @return Whether the properties field is set. - */ - @java.lang.Override - public boolean hasProperties() { - return properties_ != null; - } - /** - *
-     * additional glup properties
-     * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - * @return The properties. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PropertyOptions getProperties() { - return properties_ == null ? com.acme.glup.MetadataProto.PropertyOptions.getDefaultInstance() : properties_; - } - /** - *
-     * additional glup properties
-     * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PropertyOptionsOrBuilder getPropertiesOrBuilder() { - return getProperties(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (kafka_ != null) { - output.writeMessage(1, getKafka()); - } - if (hdfs_ != null) { - output.writeMessage(2, getHdfs()); - } - if (samplingPct_ != 0) { - output.writeUInt32(3, samplingPct_); - } - if (preprodSamplingPct_ != 0) { - output.writeUInt32(4, preprodSamplingPct_); - } - for (int i = 0; i < dataset_.size(); i++) { - output.writeMessage(5, dataset_.get(i)); - } - if (messageSamplingPct_ != 0) { - output.writeUInt32(6, messageSamplingPct_); - } - if (producers_ != null) { - output.writeMessage(7, getProducers()); - } - if (properties_ != null) { - output.writeMessage(8, getProperties()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (kafka_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getKafka()); - } - if (hdfs_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getHdfs()); - } - if (samplingPct_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(3, samplingPct_); - } - if (preprodSamplingPct_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(4, preprodSamplingPct_); - } - for (int i = 0; i < dataset_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(5, dataset_.get(i)); - } - if (messageSamplingPct_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(6, messageSamplingPct_); - } - if (producers_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(7, getProducers()); - } - if (properties_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(8, getProperties()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.GlupOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.GlupOptions other = (com.acme.glup.MetadataProto.GlupOptions) obj; - - if (hasKafka() != other.hasKafka()) return false; - if (hasKafka()) { - if (!getKafka() - .equals(other.getKafka())) return false; - } - if (hasHdfs() != other.hasHdfs()) return false; - if (hasHdfs()) { - if (!getHdfs() - .equals(other.getHdfs())) return false; - } - if (getSamplingPct() - != other.getSamplingPct()) return false; - if (getPreprodSamplingPct() - != other.getPreprodSamplingPct()) return false; - if (!getDatasetList() - .equals(other.getDatasetList())) return false; - if (getMessageSamplingPct() - != other.getMessageSamplingPct()) return false; - if (hasProducers() != other.hasProducers()) return false; - if (hasProducers()) { - if (!getProducers() - .equals(other.getProducers())) return false; - } - if (hasProperties() != other.hasProperties()) return false; - if (hasProperties()) { - if (!getProperties() - .equals(other.getProperties())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasKafka()) { - hash = (37 * hash) + KAFKA_FIELD_NUMBER; - hash = (53 * hash) + getKafka().hashCode(); - } - if (hasHdfs()) { - hash = (37 * hash) + HDFS_FIELD_NUMBER; - hash = (53 * hash) + getHdfs().hashCode(); - } - hash = (37 * hash) + SAMPLING_PCT_FIELD_NUMBER; - hash = (53 * hash) + getSamplingPct(); - hash = (37 * hash) + PREPROD_SAMPLING_PCT_FIELD_NUMBER; - hash = (53 * hash) + getPreprodSamplingPct(); - if (getDatasetCount() > 0) { - hash = (37 * hash) + DATASET_FIELD_NUMBER; - hash = (53 * hash) + getDatasetList().hashCode(); - } - hash = (37 * hash) + MESSAGE_SAMPLING_PCT_FIELD_NUMBER; - hash = (53 * hash) + getMessageSamplingPct(); - if (hasProducers()) { - hash = (37 * hash) + PRODUCERS_FIELD_NUMBER; - hash = (53 * hash) + getProducers().hashCode(); - } - if (hasProperties()) { - hash = (37 * hash) + PROPERTIES_FIELD_NUMBER; - hash = (53 * hash) + getProperties().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.GlupOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.GlupOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.GlupOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.GlupOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.GlupOptions) - com.acme.glup.MetadataProto.GlupOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.GlupOptions.class, com.acme.glup.MetadataProto.GlupOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.GlupOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getDatasetFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (kafkaBuilder_ == null) { - kafka_ = null; - } else { - kafka_ = null; - kafkaBuilder_ = null; - } - if (hdfsBuilder_ == null) { - hdfs_ = null; - } else { - hdfs_ = null; - hdfsBuilder_ = null; - } - samplingPct_ = 0; - - preprodSamplingPct_ = 0; - - if (datasetBuilder_ == null) { - dataset_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - datasetBuilder_.clear(); - } - messageSamplingPct_ = 0; - - if (producersBuilder_ == null) { - producers_ = null; - } else { - producers_ = null; - producersBuilder_ = null; - } - if (propertiesBuilder_ == null) { - properties_ = null; - } else { - properties_ = null; - propertiesBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.GlupOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupOptions build() { - com.acme.glup.MetadataProto.GlupOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupOptions buildPartial() { - com.acme.glup.MetadataProto.GlupOptions result = new com.acme.glup.MetadataProto.GlupOptions(this); - int from_bitField0_ = bitField0_; - if (kafkaBuilder_ == null) { - result.kafka_ = kafka_; - } else { - result.kafka_ = kafkaBuilder_.build(); - } - if (hdfsBuilder_ == null) { - result.hdfs_ = hdfs_; - } else { - result.hdfs_ = hdfsBuilder_.build(); - } - result.samplingPct_ = samplingPct_; - result.preprodSamplingPct_ = preprodSamplingPct_; - if (datasetBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - dataset_ = java.util.Collections.unmodifiableList(dataset_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.dataset_ = dataset_; - } else { - result.dataset_ = datasetBuilder_.build(); - } - result.messageSamplingPct_ = messageSamplingPct_; - if (producersBuilder_ == null) { - result.producers_ = producers_; - } else { - result.producers_ = producersBuilder_.build(); - } - if (propertiesBuilder_ == null) { - result.properties_ = properties_; - } else { - result.properties_ = propertiesBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.GlupOptions) { - return mergeFrom((com.acme.glup.MetadataProto.GlupOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.GlupOptions other) { - if (other == com.acme.glup.MetadataProto.GlupOptions.getDefaultInstance()) return this; - if (other.hasKafka()) { - mergeKafka(other.getKafka()); - } - if (other.hasHdfs()) { - mergeHdfs(other.getHdfs()); - } - if (other.getSamplingPct() != 0) { - setSamplingPct(other.getSamplingPct()); - } - if (other.getPreprodSamplingPct() != 0) { - setPreprodSamplingPct(other.getPreprodSamplingPct()); - } - if (datasetBuilder_ == null) { - if (!other.dataset_.isEmpty()) { - if (dataset_.isEmpty()) { - dataset_ = other.dataset_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureDatasetIsMutable(); - dataset_.addAll(other.dataset_); - } - onChanged(); - } - } else { - if (!other.dataset_.isEmpty()) { - if (datasetBuilder_.isEmpty()) { - datasetBuilder_.dispose(); - datasetBuilder_ = null; - dataset_ = other.dataset_; - bitField0_ = (bitField0_ & ~0x00000001); - datasetBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getDatasetFieldBuilder() : null; - } else { - datasetBuilder_.addAllMessages(other.dataset_); - } - } - } - if (other.getMessageSamplingPct() != 0) { - setMessageSamplingPct(other.getMessageSamplingPct()); - } - if (other.hasProducers()) { - mergeProducers(other.getProducers()); - } - if (other.hasProperties()) { - mergeProperties(other.getProperties()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.GlupOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.GlupOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.acme.glup.MetadataProto.KafkaMessageOptions kafka_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.KafkaMessageOptions, com.acme.glup.MetadataProto.KafkaMessageOptions.Builder, com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder> kafkaBuilder_; - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - * @return Whether the kafka field is set. - */ - public boolean hasKafka() { - return kafkaBuilder_ != null || kafka_ != null; - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - * @return The kafka. - */ - public com.acme.glup.MetadataProto.KafkaMessageOptions getKafka() { - if (kafkaBuilder_ == null) { - return kafka_ == null ? com.acme.glup.MetadataProto.KafkaMessageOptions.getDefaultInstance() : kafka_; - } else { - return kafkaBuilder_.getMessage(); - } - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - public Builder setKafka(com.acme.glup.MetadataProto.KafkaMessageOptions value) { - if (kafkaBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - kafka_ = value; - onChanged(); - } else { - kafkaBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - public Builder setKafka( - com.acme.glup.MetadataProto.KafkaMessageOptions.Builder builderForValue) { - if (kafkaBuilder_ == null) { - kafka_ = builderForValue.build(); - onChanged(); - } else { - kafkaBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - public Builder mergeKafka(com.acme.glup.MetadataProto.KafkaMessageOptions value) { - if (kafkaBuilder_ == null) { - if (kafka_ != null) { - kafka_ = - com.acme.glup.MetadataProto.KafkaMessageOptions.newBuilder(kafka_).mergeFrom(value).buildPartial(); - } else { - kafka_ = value; - } - onChanged(); - } else { - kafkaBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - public Builder clearKafka() { - if (kafkaBuilder_ == null) { - kafka_ = null; - onChanged(); - } else { - kafka_ = null; - kafkaBuilder_ = null; - } - - return this; - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - public com.acme.glup.MetadataProto.KafkaMessageOptions.Builder getKafkaBuilder() { - - onChanged(); - return getKafkaFieldBuilder().getBuilder(); - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - public com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder getKafkaOrBuilder() { - if (kafkaBuilder_ != null) { - return kafkaBuilder_.getMessageOrBuilder(); - } else { - return kafka_ == null ? - com.acme.glup.MetadataProto.KafkaMessageOptions.getDefaultInstance() : kafka_; - } - } - /** - *
-       * kafka settings
-       * 
- * - * .Acme.Glup.KafkaMessageOptions kafka = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.KafkaMessageOptions, com.acme.glup.MetadataProto.KafkaMessageOptions.Builder, com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder> - getKafkaFieldBuilder() { - if (kafkaBuilder_ == null) { - kafkaBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.KafkaMessageOptions, com.acme.glup.MetadataProto.KafkaMessageOptions.Builder, com.acme.glup.MetadataProto.KafkaMessageOptionsOrBuilder>( - getKafka(), - getParentForChildren(), - isClean()); - kafka_ = null; - } - return kafkaBuilder_; - } - - private com.acme.glup.MetadataProto.HDFSOptions hdfs_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions, com.acme.glup.MetadataProto.HDFSOptions.Builder, com.acme.glup.MetadataProto.HDFSOptionsOrBuilder> hdfsBuilder_; - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - * @return Whether the hdfs field is set. - */ - public boolean hasHdfs() { - return hdfsBuilder_ != null || hdfs_ != null; - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - * @return The hdfs. - */ - public com.acme.glup.MetadataProto.HDFSOptions getHdfs() { - if (hdfsBuilder_ == null) { - return hdfs_ == null ? com.acme.glup.MetadataProto.HDFSOptions.getDefaultInstance() : hdfs_; - } else { - return hdfsBuilder_.getMessage(); - } - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - public Builder setHdfs(com.acme.glup.MetadataProto.HDFSOptions value) { - if (hdfsBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - hdfs_ = value; - onChanged(); - } else { - hdfsBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - public Builder setHdfs( - com.acme.glup.MetadataProto.HDFSOptions.Builder builderForValue) { - if (hdfsBuilder_ == null) { - hdfs_ = builderForValue.build(); - onChanged(); - } else { - hdfsBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - public Builder mergeHdfs(com.acme.glup.MetadataProto.HDFSOptions value) { - if (hdfsBuilder_ == null) { - if (hdfs_ != null) { - hdfs_ = - com.acme.glup.MetadataProto.HDFSOptions.newBuilder(hdfs_).mergeFrom(value).buildPartial(); - } else { - hdfs_ = value; - } - onChanged(); - } else { - hdfsBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - public Builder clearHdfs() { - if (hdfsBuilder_ == null) { - hdfs_ = null; - onChanged(); - } else { - hdfs_ = null; - hdfsBuilder_ = null; - } - - return this; - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - public com.acme.glup.MetadataProto.HDFSOptions.Builder getHdfsBuilder() { - - onChanged(); - return getHdfsFieldBuilder().getBuilder(); - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - public com.acme.glup.MetadataProto.HDFSOptionsOrBuilder getHdfsOrBuilder() { - if (hdfsBuilder_ != null) { - return hdfsBuilder_.getMessageOrBuilder(); - } else { - return hdfs_ == null ? - com.acme.glup.MetadataProto.HDFSOptions.getDefaultInstance() : hdfs_; - } - } - /** - *
-       * hdfs import settings
-       * 
- * - * .Acme.Glup.HDFSOptions hdfs = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions, com.acme.glup.MetadataProto.HDFSOptions.Builder, com.acme.glup.MetadataProto.HDFSOptionsOrBuilder> - getHdfsFieldBuilder() { - if (hdfsBuilder_ == null) { - hdfsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.HDFSOptions, com.acme.glup.MetadataProto.HDFSOptions.Builder, com.acme.glup.MetadataProto.HDFSOptionsOrBuilder>( - getHdfs(), - getParentForChildren(), - isClean()); - hdfs_ = null; - } - return hdfsBuilder_; - } - - private int samplingPct_ ; - /** - *
-       * field samplimg rate
-       * 
- * - * uint32 sampling_pct = 3; - * @return The samplingPct. - */ - @java.lang.Override - public int getSamplingPct() { - return samplingPct_; - } - /** - *
-       * field samplimg rate
-       * 
- * - * uint32 sampling_pct = 3; - * @param value The samplingPct to set. - * @return This builder for chaining. - */ - public Builder setSamplingPct(int value) { - - samplingPct_ = value; - onChanged(); - return this; - } - /** - *
-       * field samplimg rate
-       * 
- * - * uint32 sampling_pct = 3; - * @return This builder for chaining. - */ - public Builder clearSamplingPct() { - - samplingPct_ = 0; - onChanged(); - return this; - } - - private int preprodSamplingPct_ ; - /** - *
-       * preprod message sampling rate
-       * 
- * - * uint32 preprod_sampling_pct = 4; - * @return The preprodSamplingPct. - */ - @java.lang.Override - public int getPreprodSamplingPct() { - return preprodSamplingPct_; - } - /** - *
-       * preprod message sampling rate
-       * 
- * - * uint32 preprod_sampling_pct = 4; - * @param value The preprodSamplingPct to set. - * @return This builder for chaining. - */ - public Builder setPreprodSamplingPct(int value) { - - preprodSamplingPct_ = value; - onChanged(); - return this; - } - /** - *
-       * preprod message sampling rate
-       * 
- * - * uint32 preprod_sampling_pct = 4; - * @return This builder for chaining. - */ - public Builder clearPreprodSamplingPct() { - - preprodSamplingPct_ = 0; - onChanged(); - return this; - } - - private java.util.List dataset_ = - java.util.Collections.emptyList(); - private void ensureDatasetIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - dataset_ = new java.util.ArrayList(dataset_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.DataSet, com.acme.glup.MetadataProto.DataSet.Builder, com.acme.glup.MetadataProto.DataSetOrBuilder> datasetBuilder_; - - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public java.util.List getDatasetList() { - if (datasetBuilder_ == null) { - return java.util.Collections.unmodifiableList(dataset_); - } else { - return datasetBuilder_.getMessageList(); - } - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public int getDatasetCount() { - if (datasetBuilder_ == null) { - return dataset_.size(); - } else { - return datasetBuilder_.getCount(); - } - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public com.acme.glup.MetadataProto.DataSet getDataset(int index) { - if (datasetBuilder_ == null) { - return dataset_.get(index); - } else { - return datasetBuilder_.getMessage(index); - } - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder setDataset( - int index, com.acme.glup.MetadataProto.DataSet value) { - if (datasetBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureDatasetIsMutable(); - dataset_.set(index, value); - onChanged(); - } else { - datasetBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder setDataset( - int index, com.acme.glup.MetadataProto.DataSet.Builder builderForValue) { - if (datasetBuilder_ == null) { - ensureDatasetIsMutable(); - dataset_.set(index, builderForValue.build()); - onChanged(); - } else { - datasetBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder addDataset(com.acme.glup.MetadataProto.DataSet value) { - if (datasetBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureDatasetIsMutable(); - dataset_.add(value); - onChanged(); - } else { - datasetBuilder_.addMessage(value); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder addDataset( - int index, com.acme.glup.MetadataProto.DataSet value) { - if (datasetBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureDatasetIsMutable(); - dataset_.add(index, value); - onChanged(); - } else { - datasetBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder addDataset( - com.acme.glup.MetadataProto.DataSet.Builder builderForValue) { - if (datasetBuilder_ == null) { - ensureDatasetIsMutable(); - dataset_.add(builderForValue.build()); - onChanged(); - } else { - datasetBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder addDataset( - int index, com.acme.glup.MetadataProto.DataSet.Builder builderForValue) { - if (datasetBuilder_ == null) { - ensureDatasetIsMutable(); - dataset_.add(index, builderForValue.build()); - onChanged(); - } else { - datasetBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder addAllDataset( - java.lang.Iterable values) { - if (datasetBuilder_ == null) { - ensureDatasetIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, dataset_); - onChanged(); - } else { - datasetBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder clearDataset() { - if (datasetBuilder_ == null) { - dataset_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - datasetBuilder_.clear(); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public Builder removeDataset(int index) { - if (datasetBuilder_ == null) { - ensureDatasetIsMutable(); - dataset_.remove(index); - onChanged(); - } else { - datasetBuilder_.remove(index); - } - return this; - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public com.acme.glup.MetadataProto.DataSet.Builder getDatasetBuilder( - int index) { - return getDatasetFieldBuilder().getBuilder(index); - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public com.acme.glup.MetadataProto.DataSetOrBuilder getDatasetOrBuilder( - int index) { - if (datasetBuilder_ == null) { - return dataset_.get(index); } else { - return datasetBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public java.util.List - getDatasetOrBuilderList() { - if (datasetBuilder_ != null) { - return datasetBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(dataset_); - } - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public com.acme.glup.MetadataProto.DataSet.Builder addDatasetBuilder() { - return getDatasetFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.DataSet.getDefaultInstance()); - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public com.acme.glup.MetadataProto.DataSet.Builder addDatasetBuilder( - int index) { - return getDatasetFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.DataSet.getDefaultInstance()); - } - /** - *
-       * dataset definition
-       * 
- * - * repeated .Acme.Glup.DataSet dataset = 5; - */ - public java.util.List - getDatasetBuilderList() { - return getDatasetFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.DataSet, com.acme.glup.MetadataProto.DataSet.Builder, com.acme.glup.MetadataProto.DataSetOrBuilder> - getDatasetFieldBuilder() { - if (datasetBuilder_ == null) { - datasetBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.DataSet, com.acme.glup.MetadataProto.DataSet.Builder, com.acme.glup.MetadataProto.DataSetOrBuilder>( - dataset_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - dataset_ = null; - } - return datasetBuilder_; - } - - private int messageSamplingPct_ ; - /** - *
-       * message sampling rate
-       * 
- * - * uint32 message_sampling_pct = 6; - * @return The messageSamplingPct. - */ - @java.lang.Override - public int getMessageSamplingPct() { - return messageSamplingPct_; - } - /** - *
-       * message sampling rate
-       * 
- * - * uint32 message_sampling_pct = 6; - * @param value The messageSamplingPct to set. - * @return This builder for chaining. - */ - public Builder setMessageSamplingPct(int value) { - - messageSamplingPct_ = value; - onChanged(); - return this; - } - /** - *
-       * message sampling rate
-       * 
- * - * uint32 message_sampling_pct = 6; - * @return This builder for chaining. - */ - public Builder clearMessageSamplingPct() { - - messageSamplingPct_ = 0; - onChanged(); - return this; - } - - private com.acme.glup.MetadataProto.ProducerTransportOptions producers_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.ProducerTransportOptions, com.acme.glup.MetadataProto.ProducerTransportOptions.Builder, com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder> producersBuilder_; - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - * @return Whether the producers field is set. - */ - public boolean hasProducers() { - return producersBuilder_ != null || producers_ != null; - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - * @return The producers. - */ - public com.acme.glup.MetadataProto.ProducerTransportOptions getProducers() { - if (producersBuilder_ == null) { - return producers_ == null ? com.acme.glup.MetadataProto.ProducerTransportOptions.getDefaultInstance() : producers_; - } else { - return producersBuilder_.getMessage(); - } - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - public Builder setProducers(com.acme.glup.MetadataProto.ProducerTransportOptions value) { - if (producersBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - producers_ = value; - onChanged(); - } else { - producersBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - public Builder setProducers( - com.acme.glup.MetadataProto.ProducerTransportOptions.Builder builderForValue) { - if (producersBuilder_ == null) { - producers_ = builderForValue.build(); - onChanged(); - } else { - producersBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - public Builder mergeProducers(com.acme.glup.MetadataProto.ProducerTransportOptions value) { - if (producersBuilder_ == null) { - if (producers_ != null) { - producers_ = - com.acme.glup.MetadataProto.ProducerTransportOptions.newBuilder(producers_).mergeFrom(value).buildPartial(); - } else { - producers_ = value; - } - onChanged(); - } else { - producersBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - public Builder clearProducers() { - if (producersBuilder_ == null) { - producers_ = null; - onChanged(); - } else { - producers_ = null; - producersBuilder_ = null; - } - - return this; - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - public com.acme.glup.MetadataProto.ProducerTransportOptions.Builder getProducersBuilder() { - - onChanged(); - return getProducersFieldBuilder().getBuilder(); - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - public com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder getProducersOrBuilder() { - if (producersBuilder_ != null) { - return producersBuilder_.getMessageOrBuilder(); - } else { - return producers_ == null ? - com.acme.glup.MetadataProto.ProducerTransportOptions.getDefaultInstance() : producers_; - } - } - /** - *
-       * producer(s) to use
-       * 
- * - * .Acme.Glup.ProducerTransportOptions producers = 7; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.ProducerTransportOptions, com.acme.glup.MetadataProto.ProducerTransportOptions.Builder, com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder> - getProducersFieldBuilder() { - if (producersBuilder_ == null) { - producersBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.ProducerTransportOptions, com.acme.glup.MetadataProto.ProducerTransportOptions.Builder, com.acme.glup.MetadataProto.ProducerTransportOptionsOrBuilder>( - getProducers(), - getParentForChildren(), - isClean()); - producers_ = null; - } - return producersBuilder_; - } - - private com.acme.glup.MetadataProto.PropertyOptions properties_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.PropertyOptions, com.acme.glup.MetadataProto.PropertyOptions.Builder, com.acme.glup.MetadataProto.PropertyOptionsOrBuilder> propertiesBuilder_; - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - * @return Whether the properties field is set. - */ - public boolean hasProperties() { - return propertiesBuilder_ != null || properties_ != null; - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - * @return The properties. - */ - public com.acme.glup.MetadataProto.PropertyOptions getProperties() { - if (propertiesBuilder_ == null) { - return properties_ == null ? com.acme.glup.MetadataProto.PropertyOptions.getDefaultInstance() : properties_; - } else { - return propertiesBuilder_.getMessage(); - } - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - public Builder setProperties(com.acme.glup.MetadataProto.PropertyOptions value) { - if (propertiesBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - properties_ = value; - onChanged(); - } else { - propertiesBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - public Builder setProperties( - com.acme.glup.MetadataProto.PropertyOptions.Builder builderForValue) { - if (propertiesBuilder_ == null) { - properties_ = builderForValue.build(); - onChanged(); - } else { - propertiesBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - public Builder mergeProperties(com.acme.glup.MetadataProto.PropertyOptions value) { - if (propertiesBuilder_ == null) { - if (properties_ != null) { - properties_ = - com.acme.glup.MetadataProto.PropertyOptions.newBuilder(properties_).mergeFrom(value).buildPartial(); - } else { - properties_ = value; - } - onChanged(); - } else { - propertiesBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - public Builder clearProperties() { - if (propertiesBuilder_ == null) { - properties_ = null; - onChanged(); - } else { - properties_ = null; - propertiesBuilder_ = null; - } - - return this; - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - public com.acme.glup.MetadataProto.PropertyOptions.Builder getPropertiesBuilder() { - - onChanged(); - return getPropertiesFieldBuilder().getBuilder(); - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - public com.acme.glup.MetadataProto.PropertyOptionsOrBuilder getPropertiesOrBuilder() { - if (propertiesBuilder_ != null) { - return propertiesBuilder_.getMessageOrBuilder(); - } else { - return properties_ == null ? - com.acme.glup.MetadataProto.PropertyOptions.getDefaultInstance() : properties_; - } - } - /** - *
-       * additional glup properties
-       * 
- * - * .Acme.Glup.PropertyOptions properties = 8; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.PropertyOptions, com.acme.glup.MetadataProto.PropertyOptions.Builder, com.acme.glup.MetadataProto.PropertyOptionsOrBuilder> - getPropertiesFieldBuilder() { - if (propertiesBuilder_ == null) { - propertiesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.PropertyOptions, com.acme.glup.MetadataProto.PropertyOptions.Builder, com.acme.glup.MetadataProto.PropertyOptionsOrBuilder>( - getProperties(), - getParentForChildren(), - isClean()); - properties_ = null; - } - return propertiesBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.GlupOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.GlupOptions) - private static final com.acme.glup.MetadataProto.GlupOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.GlupOptions(); - } - - public static com.acme.glup.MetadataProto.GlupOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public GlupOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new GlupOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface GlupFieldOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.GlupFieldOptions) - com.google.protobuf.MessageOrBuilder { - - /** - * bool sampled = 1; - * @return The sampled. - */ - boolean getSampled(); - - /** - * bool sampling_key = 2; - * @return The samplingKey. - */ - boolean getSamplingKey(); - - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return A list containing the disabledPlatform. - */ - java.util.List getDisabledPlatformList(); - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return The count of disabledPlatform. - */ - int getDisabledPlatformCount(); - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the element to return. - * @return The disabledPlatform at the given index. - */ - com.acme.glup.MetadataProto.Platform getDisabledPlatform(int index); - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return A list containing the enum numeric values on the wire for disabledPlatform. - */ - java.util.List - getDisabledPlatformValueList(); - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of disabledPlatform at the given index. - */ - int getDisabledPlatformValue(int index); - - /** - * bool should_clean_pii = 4; - * @return The shouldCleanPii. - */ - boolean getShouldCleanPii(); - - /** - *
-     * The next fields are part of the Try&Wipe hackathon 2018 project:
-     * When true, this field can not be used by GLUP consumers anymore
-     * 
- * - * bool pending_deletion = 5; - * @return The pendingDeletion. - */ - boolean getPendingDeletion(); - - /** - *
-     * Date at which the field has been added to the schema.
-     * 
- * - * string added_at = 6; - * @return The addedAt. - */ - java.lang.String getAddedAt(); - /** - *
-     * Date at which the field has been added to the schema.
-     * 
- * - * string added_at = 6; - * @return The bytes for addedAt. - */ - com.google.protobuf.ByteString - getAddedAtBytes(); - } - /** - *
-   * It describes glup fields options:
-   *disabled_platform => list of platform where the field will never be sent
-   * 
- * - * Protobuf type {@code Acme.Glup.GlupFieldOptions} - */ - public static final class GlupFieldOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.GlupFieldOptions) - GlupFieldOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use GlupFieldOptions.newBuilder() to construct. - private GlupFieldOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private GlupFieldOptions() { - disabledPlatform_ = java.util.Collections.emptyList(); - addedAt_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new GlupFieldOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private GlupFieldOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - sampled_ = input.readBool(); - break; - } - case 16: { - - samplingKey_ = input.readBool(); - break; - } - case 24: { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - disabledPlatform_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - disabledPlatform_.add(rawValue); - break; - } - case 26: { - int length = input.readRawVarint32(); - int oldLimit = input.pushLimit(length); - while(input.getBytesUntilLimit() > 0) { - int rawValue = input.readEnum(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - disabledPlatform_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - disabledPlatform_.add(rawValue); - } - input.popLimit(oldLimit); - break; - } - case 32: { - - shouldCleanPii_ = input.readBool(); - break; - } - case 40: { - - pendingDeletion_ = input.readBool(); - break; - } - case 50: { - java.lang.String s = input.readStringRequireUtf8(); - - addedAt_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - disabledPlatform_ = java.util.Collections.unmodifiableList(disabledPlatform_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupFieldOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupFieldOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.GlupFieldOptions.class, com.acme.glup.MetadataProto.GlupFieldOptions.Builder.class); - } - - public static final int SAMPLED_FIELD_NUMBER = 1; - private boolean sampled_; - /** - * bool sampled = 1; - * @return The sampled. - */ - @java.lang.Override - public boolean getSampled() { - return sampled_; - } - - public static final int SAMPLING_KEY_FIELD_NUMBER = 2; - private boolean samplingKey_; - /** - * bool sampling_key = 2; - * @return The samplingKey. - */ - @java.lang.Override - public boolean getSamplingKey() { - return samplingKey_; - } - - public static final int DISABLED_PLATFORM_FIELD_NUMBER = 3; - private java.util.List disabledPlatform_; - private static final com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform> disabledPlatform_converter_ = - new com.google.protobuf.Internal.ListAdapter.Converter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>() { - public com.acme.glup.MetadataProto.Platform convert(java.lang.Integer from) { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(from); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - }; - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return A list containing the disabledPlatform. - */ - @java.lang.Override - public java.util.List getDisabledPlatformList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(disabledPlatform_, disabledPlatform_converter_); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return The count of disabledPlatform. - */ - @java.lang.Override - public int getDisabledPlatformCount() { - return disabledPlatform_.size(); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the element to return. - * @return The disabledPlatform at the given index. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Platform getDisabledPlatform(int index) { - return disabledPlatform_converter_.convert(disabledPlatform_.get(index)); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return A list containing the enum numeric values on the wire for disabledPlatform. - */ - @java.lang.Override - public java.util.List - getDisabledPlatformValueList() { - return disabledPlatform_; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of disabledPlatform at the given index. - */ - @java.lang.Override - public int getDisabledPlatformValue(int index) { - return disabledPlatform_.get(index); - } - private int disabledPlatformMemoizedSerializedSize; - - public static final int SHOULD_CLEAN_PII_FIELD_NUMBER = 4; - private boolean shouldCleanPii_; - /** - * bool should_clean_pii = 4; - * @return The shouldCleanPii. - */ - @java.lang.Override - public boolean getShouldCleanPii() { - return shouldCleanPii_; - } - - public static final int PENDING_DELETION_FIELD_NUMBER = 5; - private boolean pendingDeletion_; - /** - *
-     * The next fields are part of the Try&Wipe hackathon 2018 project:
-     * When true, this field can not be used by GLUP consumers anymore
-     * 
- * - * bool pending_deletion = 5; - * @return The pendingDeletion. - */ - @java.lang.Override - public boolean getPendingDeletion() { - return pendingDeletion_; - } - - public static final int ADDED_AT_FIELD_NUMBER = 6; - private volatile java.lang.Object addedAt_; - /** - *
-     * Date at which the field has been added to the schema.
-     * 
- * - * string added_at = 6; - * @return The addedAt. - */ - @java.lang.Override - public java.lang.String getAddedAt() { - java.lang.Object ref = addedAt_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - addedAt_ = s; - return s; - } - } - /** - *
-     * Date at which the field has been added to the schema.
-     * 
- * - * string added_at = 6; - * @return The bytes for addedAt. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getAddedAtBytes() { - java.lang.Object ref = addedAt_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - addedAt_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - getSerializedSize(); - if (sampled_ != false) { - output.writeBool(1, sampled_); - } - if (samplingKey_ != false) { - output.writeBool(2, samplingKey_); - } - if (getDisabledPlatformList().size() > 0) { - output.writeUInt32NoTag(26); - output.writeUInt32NoTag(disabledPlatformMemoizedSerializedSize); - } - for (int i = 0; i < disabledPlatform_.size(); i++) { - output.writeEnumNoTag(disabledPlatform_.get(i)); - } - if (shouldCleanPii_ != false) { - output.writeBool(4, shouldCleanPii_); - } - if (pendingDeletion_ != false) { - output.writeBool(5, pendingDeletion_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(addedAt_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 6, addedAt_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (sampled_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(1, sampled_); - } - if (samplingKey_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, samplingKey_); - } - { - int dataSize = 0; - for (int i = 0; i < disabledPlatform_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeEnumSizeNoTag(disabledPlatform_.get(i)); - } - size += dataSize; - if (!getDisabledPlatformList().isEmpty()) { size += 1; - size += com.google.protobuf.CodedOutputStream - .computeUInt32SizeNoTag(dataSize); - }disabledPlatformMemoizedSerializedSize = dataSize; - } - if (shouldCleanPii_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(4, shouldCleanPii_); - } - if (pendingDeletion_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(5, pendingDeletion_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(addedAt_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, addedAt_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.GlupFieldOptions)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.GlupFieldOptions other = (com.acme.glup.MetadataProto.GlupFieldOptions) obj; - - if (getSampled() - != other.getSampled()) return false; - if (getSamplingKey() - != other.getSamplingKey()) return false; - if (!disabledPlatform_.equals(other.disabledPlatform_)) return false; - if (getShouldCleanPii() - != other.getShouldCleanPii()) return false; - if (getPendingDeletion() - != other.getPendingDeletion()) return false; - if (!getAddedAt() - .equals(other.getAddedAt())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + SAMPLED_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getSampled()); - hash = (37 * hash) + SAMPLING_KEY_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getSamplingKey()); - if (getDisabledPlatformCount() > 0) { - hash = (37 * hash) + DISABLED_PLATFORM_FIELD_NUMBER; - hash = (53 * hash) + disabledPlatform_.hashCode(); - } - hash = (37 * hash) + SHOULD_CLEAN_PII_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getShouldCleanPii()); - hash = (37 * hash) + PENDING_DELETION_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getPendingDeletion()); - hash = (37 * hash) + ADDED_AT_FIELD_NUMBER; - hash = (53 * hash) + getAddedAt().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.GlupFieldOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.GlupFieldOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * It describes glup fields options:
-     *disabled_platform => list of platform where the field will never be sent
-     * 
- * - * Protobuf type {@code Acme.Glup.GlupFieldOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.GlupFieldOptions) - com.acme.glup.MetadataProto.GlupFieldOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupFieldOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupFieldOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.GlupFieldOptions.class, com.acme.glup.MetadataProto.GlupFieldOptions.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.GlupFieldOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - sampled_ = false; - - samplingKey_ = false; - - disabledPlatform_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - shouldCleanPii_ = false; - - pendingDeletion_ = false; - - addedAt_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_GlupFieldOptions_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupFieldOptions getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.GlupFieldOptions.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupFieldOptions build() { - com.acme.glup.MetadataProto.GlupFieldOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupFieldOptions buildPartial() { - com.acme.glup.MetadataProto.GlupFieldOptions result = new com.acme.glup.MetadataProto.GlupFieldOptions(this); - int from_bitField0_ = bitField0_; - result.sampled_ = sampled_; - result.samplingKey_ = samplingKey_; - if (((bitField0_ & 0x00000001) != 0)) { - disabledPlatform_ = java.util.Collections.unmodifiableList(disabledPlatform_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.disabledPlatform_ = disabledPlatform_; - result.shouldCleanPii_ = shouldCleanPii_; - result.pendingDeletion_ = pendingDeletion_; - result.addedAt_ = addedAt_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.GlupFieldOptions) { - return mergeFrom((com.acme.glup.MetadataProto.GlupFieldOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.GlupFieldOptions other) { - if (other == com.acme.glup.MetadataProto.GlupFieldOptions.getDefaultInstance()) return this; - if (other.getSampled() != false) { - setSampled(other.getSampled()); - } - if (other.getSamplingKey() != false) { - setSamplingKey(other.getSamplingKey()); - } - if (!other.disabledPlatform_.isEmpty()) { - if (disabledPlatform_.isEmpty()) { - disabledPlatform_ = other.disabledPlatform_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureDisabledPlatformIsMutable(); - disabledPlatform_.addAll(other.disabledPlatform_); - } - onChanged(); - } - if (other.getShouldCleanPii() != false) { - setShouldCleanPii(other.getShouldCleanPii()); - } - if (other.getPendingDeletion() != false) { - setPendingDeletion(other.getPendingDeletion()); - } - if (!other.getAddedAt().isEmpty()) { - addedAt_ = other.addedAt_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.GlupFieldOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.GlupFieldOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private boolean sampled_ ; - /** - * bool sampled = 1; - * @return The sampled. - */ - @java.lang.Override - public boolean getSampled() { - return sampled_; - } - /** - * bool sampled = 1; - * @param value The sampled to set. - * @return This builder for chaining. - */ - public Builder setSampled(boolean value) { - - sampled_ = value; - onChanged(); - return this; - } - /** - * bool sampled = 1; - * @return This builder for chaining. - */ - public Builder clearSampled() { - - sampled_ = false; - onChanged(); - return this; - } - - private boolean samplingKey_ ; - /** - * bool sampling_key = 2; - * @return The samplingKey. - */ - @java.lang.Override - public boolean getSamplingKey() { - return samplingKey_; - } - /** - * bool sampling_key = 2; - * @param value The samplingKey to set. - * @return This builder for chaining. - */ - public Builder setSamplingKey(boolean value) { - - samplingKey_ = value; - onChanged(); - return this; - } - /** - * bool sampling_key = 2; - * @return This builder for chaining. - */ - public Builder clearSamplingKey() { - - samplingKey_ = false; - onChanged(); - return this; - } - - private java.util.List disabledPlatform_ = - java.util.Collections.emptyList(); - private void ensureDisabledPlatformIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - disabledPlatform_ = new java.util.ArrayList(disabledPlatform_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return A list containing the disabledPlatform. - */ - public java.util.List getDisabledPlatformList() { - return new com.google.protobuf.Internal.ListAdapter< - java.lang.Integer, com.acme.glup.MetadataProto.Platform>(disabledPlatform_, disabledPlatform_converter_); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return The count of disabledPlatform. - */ - public int getDisabledPlatformCount() { - return disabledPlatform_.size(); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the element to return. - * @return The disabledPlatform at the given index. - */ - public com.acme.glup.MetadataProto.Platform getDisabledPlatform(int index) { - return disabledPlatform_converter_.convert(disabledPlatform_.get(index)); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index to set the value at. - * @param value The disabledPlatform to set. - * @return This builder for chaining. - */ - public Builder setDisabledPlatform( - int index, com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensureDisabledPlatformIsMutable(); - disabledPlatform_.set(index, value.getNumber()); - onChanged(); - return this; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param value The disabledPlatform to add. - * @return This builder for chaining. - */ - public Builder addDisabledPlatform(com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - ensureDisabledPlatformIsMutable(); - disabledPlatform_.add(value.getNumber()); - onChanged(); - return this; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param values The disabledPlatform to add. - * @return This builder for chaining. - */ - public Builder addAllDisabledPlatform( - java.lang.Iterable values) { - ensureDisabledPlatformIsMutable(); - for (com.acme.glup.MetadataProto.Platform value : values) { - disabledPlatform_.add(value.getNumber()); - } - onChanged(); - return this; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return This builder for chaining. - */ - public Builder clearDisabledPlatform() { - disabledPlatform_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @return A list containing the enum numeric values on the wire for disabledPlatform. - */ - public java.util.List - getDisabledPlatformValueList() { - return java.util.Collections.unmodifiableList(disabledPlatform_); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of disabledPlatform at the given index. - */ - public int getDisabledPlatformValue(int index) { - return disabledPlatform_.get(index); - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of disabledPlatform at the given index. - * @return This builder for chaining. - */ - public Builder setDisabledPlatformValue( - int index, int value) { - ensureDisabledPlatformIsMutable(); - disabledPlatform_.set(index, value); - onChanged(); - return this; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param value The enum numeric value on the wire for disabledPlatform to add. - * @return This builder for chaining. - */ - public Builder addDisabledPlatformValue(int value) { - ensureDisabledPlatformIsMutable(); - disabledPlatform_.add(value); - onChanged(); - return this; - } - /** - * repeated .Acme.Glup.Platform disabled_platform = 3; - * @param values The enum numeric values on the wire for disabledPlatform to add. - * @return This builder for chaining. - */ - public Builder addAllDisabledPlatformValue( - java.lang.Iterable values) { - ensureDisabledPlatformIsMutable(); - for (int value : values) { - disabledPlatform_.add(value); - } - onChanged(); - return this; - } - - private boolean shouldCleanPii_ ; - /** - * bool should_clean_pii = 4; - * @return The shouldCleanPii. - */ - @java.lang.Override - public boolean getShouldCleanPii() { - return shouldCleanPii_; - } - /** - * bool should_clean_pii = 4; - * @param value The shouldCleanPii to set. - * @return This builder for chaining. - */ - public Builder setShouldCleanPii(boolean value) { - - shouldCleanPii_ = value; - onChanged(); - return this; - } - /** - * bool should_clean_pii = 4; - * @return This builder for chaining. - */ - public Builder clearShouldCleanPii() { - - shouldCleanPii_ = false; - onChanged(); - return this; - } - - private boolean pendingDeletion_ ; - /** - *
-       * The next fields are part of the Try&Wipe hackathon 2018 project:
-       * When true, this field can not be used by GLUP consumers anymore
-       * 
- * - * bool pending_deletion = 5; - * @return The pendingDeletion. - */ - @java.lang.Override - public boolean getPendingDeletion() { - return pendingDeletion_; - } - /** - *
-       * The next fields are part of the Try&Wipe hackathon 2018 project:
-       * When true, this field can not be used by GLUP consumers anymore
-       * 
- * - * bool pending_deletion = 5; - * @param value The pendingDeletion to set. - * @return This builder for chaining. - */ - public Builder setPendingDeletion(boolean value) { - - pendingDeletion_ = value; - onChanged(); - return this; - } - /** - *
-       * The next fields are part of the Try&Wipe hackathon 2018 project:
-       * When true, this field can not be used by GLUP consumers anymore
-       * 
- * - * bool pending_deletion = 5; - * @return This builder for chaining. - */ - public Builder clearPendingDeletion() { - - pendingDeletion_ = false; - onChanged(); - return this; - } - - private java.lang.Object addedAt_ = ""; - /** - *
-       * Date at which the field has been added to the schema.
-       * 
- * - * string added_at = 6; - * @return The addedAt. - */ - public java.lang.String getAddedAt() { - java.lang.Object ref = addedAt_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - addedAt_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * Date at which the field has been added to the schema.
-       * 
- * - * string added_at = 6; - * @return The bytes for addedAt. - */ - public com.google.protobuf.ByteString - getAddedAtBytes() { - java.lang.Object ref = addedAt_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - addedAt_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * Date at which the field has been added to the schema.
-       * 
- * - * string added_at = 6; - * @param value The addedAt to set. - * @return This builder for chaining. - */ - public Builder setAddedAt( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - addedAt_ = value; - onChanged(); - return this; - } - /** - *
-       * Date at which the field has been added to the schema.
-       * 
- * - * string added_at = 6; - * @return This builder for chaining. - */ - public Builder clearAddedAt() { - - addedAt_ = getDefaultInstance().getAddedAt(); - onChanged(); - return this; - } - /** - *
-       * Date at which the field has been added to the schema.
-       * 
- * - * string added_at = 6; - * @param value The bytes for addedAt to set. - * @return This builder for chaining. - */ - public Builder setAddedAtBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - addedAt_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.GlupFieldOptions) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.GlupFieldOptions) - private static final com.acme.glup.MetadataProto.GlupFieldOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.GlupFieldOptions(); - } - - public static com.acme.glup.MetadataProto.GlupFieldOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public GlupFieldOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new GlupFieldOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.GlupFieldOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface JsonMappingOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.JsonMapping) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * alias to use for json serialization
-     * 
- * - * string name = 1; - * @return The name. - */ - java.lang.String getName(); - /** - *
-     * alias to use for json serialization
-     * 
- * - * string name = 1; - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - *
-     * do we have to skip this field from json serialization
-     * 
- * - * bool skip = 2; - * @return The skip. - */ - boolean getSkip(); - } - /** - *
-   * This option is used when exposing a message to hive
-   * 
- * - * Protobuf type {@code Acme.Glup.JsonMapping} - */ - public static final class JsonMapping extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.JsonMapping) - JsonMappingOrBuilder { - private static final long serialVersionUID = 0L; - // Use JsonMapping.newBuilder() to construct. - private JsonMapping(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private JsonMapping() { - name_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new JsonMapping(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private JsonMapping( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - name_ = s; - break; - } - case 16: { - - skip_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonMapping_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonMapping_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.JsonMapping.class, com.acme.glup.MetadataProto.JsonMapping.Builder.class); - } - - public static final int NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object name_; - /** - *
-     * alias to use for json serialization
-     * 
- * - * string name = 1; - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } - } - /** - *
-     * alias to use for json serialization
-     * 
- * - * string name = 1; - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SKIP_FIELD_NUMBER = 2; - private boolean skip_; - /** - *
-     * do we have to skip this field from json serialization
-     * 
- * - * bool skip = 2; - * @return The skip. - */ - @java.lang.Override - public boolean getSkip() { - return skip_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); - } - if (skip_ != false) { - output.writeBool(2, skip_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); - } - if (skip_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, skip_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.JsonMapping)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.JsonMapping other = (com.acme.glup.MetadataProto.JsonMapping) obj; - - if (!getName() - .equals(other.getName())) return false; - if (getSkip() - != other.getSkip()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + NAME_FIELD_NUMBER; - hash = (53 * hash) + getName().hashCode(); - hash = (37 * hash) + SKIP_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getSkip()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonMapping parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.JsonMapping parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.JsonMapping parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.JsonMapping prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * This option is used when exposing a message to hive
-     * 
- * - * Protobuf type {@code Acme.Glup.JsonMapping} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.JsonMapping) - com.acme.glup.MetadataProto.JsonMappingOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonMapping_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonMapping_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.JsonMapping.class, com.acme.glup.MetadataProto.JsonMapping.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.JsonMapping.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - name_ = ""; - - skip_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonMapping_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonMapping getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.JsonMapping.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonMapping build() { - com.acme.glup.MetadataProto.JsonMapping result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonMapping buildPartial() { - com.acme.glup.MetadataProto.JsonMapping result = new com.acme.glup.MetadataProto.JsonMapping(this); - result.name_ = name_; - result.skip_ = skip_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.JsonMapping) { - return mergeFrom((com.acme.glup.MetadataProto.JsonMapping)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.JsonMapping other) { - if (other == com.acme.glup.MetadataProto.JsonMapping.getDefaultInstance()) return this; - if (!other.getName().isEmpty()) { - name_ = other.name_; - onChanged(); - } - if (other.getSkip() != false) { - setSkip(other.getSkip()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.JsonMapping parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.JsonMapping) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object name_ = ""; - /** - *
-       * alias to use for json serialization
-       * 
- * - * string name = 1; - * @return The name. - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * alias to use for json serialization
-       * 
- * - * string name = 1; - * @return The bytes for name. - */ - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * alias to use for json serialization
-       * 
- * - * string name = 1; - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - name_ = value; - onChanged(); - return this; - } - /** - *
-       * alias to use for json serialization
-       * 
- * - * string name = 1; - * @return This builder for chaining. - */ - public Builder clearName() { - - name_ = getDefaultInstance().getName(); - onChanged(); - return this; - } - /** - *
-       * alias to use for json serialization
-       * 
- * - * string name = 1; - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; - } - - private boolean skip_ ; - /** - *
-       * do we have to skip this field from json serialization
-       * 
- * - * bool skip = 2; - * @return The skip. - */ - @java.lang.Override - public boolean getSkip() { - return skip_; - } - /** - *
-       * do we have to skip this field from json serialization
-       * 
- * - * bool skip = 2; - * @param value The skip to set. - * @return This builder for chaining. - */ - public Builder setSkip(boolean value) { - - skip_ = value; - onChanged(); - return this; - } - /** - *
-       * do we have to skip this field from json serialization
-       * 
- * - * bool skip = 2; - * @return This builder for chaining. - */ - public Builder clearSkip() { - - skip_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.JsonMapping) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.JsonMapping) - private static final com.acme.glup.MetadataProto.JsonMapping DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.JsonMapping(); - } - - public static com.acme.glup.MetadataProto.JsonMapping getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public JsonMapping parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new JsonMapping(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonMapping getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface JsonAliasOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.JsonAlias) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * alias for json serialization
-     * 
- * - * string name = 1; - * @return The name. - */ - java.lang.String getName(); - /** - *
-     * alias for json serialization
-     * 
- * - * string name = 1; - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - *
-     * When the field type is an enum in protobuf, the value of this field in
-     * json is the id of the field of the enum (an integer value) rather
-     * than its name.
-     * 
- * - * bool use_enum_field_id = 3; - * @return The useEnumFieldId. - */ - boolean getUseEnumFieldId(); - } - /** - *
-   * This option is used by the transcoder
-   * Note that both options could be merged, see RIVERS-1894
-   * 
- * - * Protobuf type {@code Acme.Glup.JsonAlias} - */ - public static final class JsonAlias extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.JsonAlias) - JsonAliasOrBuilder { - private static final long serialVersionUID = 0L; - // Use JsonAlias.newBuilder() to construct. - private JsonAlias(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private JsonAlias() { - name_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new JsonAlias(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private JsonAlias( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - name_ = s; - break; - } - case 24: { - - useEnumFieldId_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonAlias_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonAlias_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.JsonAlias.class, com.acme.glup.MetadataProto.JsonAlias.Builder.class); - } - - public static final int NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object name_; - /** - *
-     * alias for json serialization
-     * 
- * - * string name = 1; - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } - } - /** - *
-     * alias for json serialization
-     * 
- * - * string name = 1; - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int USE_ENUM_FIELD_ID_FIELD_NUMBER = 3; - private boolean useEnumFieldId_; - /** - *
-     * When the field type is an enum in protobuf, the value of this field in
-     * json is the id of the field of the enum (an integer value) rather
-     * than its name.
-     * 
- * - * bool use_enum_field_id = 3; - * @return The useEnumFieldId. - */ - @java.lang.Override - public boolean getUseEnumFieldId() { - return useEnumFieldId_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); - } - if (useEnumFieldId_ != false) { - output.writeBool(3, useEnumFieldId_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); - } - if (useEnumFieldId_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(3, useEnumFieldId_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.JsonAlias)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.JsonAlias other = (com.acme.glup.MetadataProto.JsonAlias) obj; - - if (!getName() - .equals(other.getName())) return false; - if (getUseEnumFieldId() - != other.getUseEnumFieldId()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + NAME_FIELD_NUMBER; - hash = (53 * hash) + getName().hashCode(); - hash = (37 * hash) + USE_ENUM_FIELD_ID_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getUseEnumFieldId()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonAlias parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.JsonAlias parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.JsonAlias parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.JsonAlias prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * This option is used by the transcoder
-     * Note that both options could be merged, see RIVERS-1894
-     * 
- * - * Protobuf type {@code Acme.Glup.JsonAlias} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.JsonAlias) - com.acme.glup.MetadataProto.JsonAliasOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonAlias_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonAlias_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.JsonAlias.class, com.acme.glup.MetadataProto.JsonAlias.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.JsonAlias.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - name_ = ""; - - useEnumFieldId_ = false; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_JsonAlias_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonAlias getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.JsonAlias.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonAlias build() { - com.acme.glup.MetadataProto.JsonAlias result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonAlias buildPartial() { - com.acme.glup.MetadataProto.JsonAlias result = new com.acme.glup.MetadataProto.JsonAlias(this); - result.name_ = name_; - result.useEnumFieldId_ = useEnumFieldId_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.JsonAlias) { - return mergeFrom((com.acme.glup.MetadataProto.JsonAlias)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.JsonAlias other) { - if (other == com.acme.glup.MetadataProto.JsonAlias.getDefaultInstance()) return this; - if (!other.getName().isEmpty()) { - name_ = other.name_; - onChanged(); - } - if (other.getUseEnumFieldId() != false) { - setUseEnumFieldId(other.getUseEnumFieldId()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.JsonAlias parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.JsonAlias) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object name_ = ""; - /** - *
-       * alias for json serialization
-       * 
- * - * string name = 1; - * @return The name. - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * alias for json serialization
-       * 
- * - * string name = 1; - * @return The bytes for name. - */ - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * alias for json serialization
-       * 
- * - * string name = 1; - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - name_ = value; - onChanged(); - return this; - } - /** - *
-       * alias for json serialization
-       * 
- * - * string name = 1; - * @return This builder for chaining. - */ - public Builder clearName() { - - name_ = getDefaultInstance().getName(); - onChanged(); - return this; - } - /** - *
-       * alias for json serialization
-       * 
- * - * string name = 1; - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; - } - - private boolean useEnumFieldId_ ; - /** - *
-       * When the field type is an enum in protobuf, the value of this field in
-       * json is the id of the field of the enum (an integer value) rather
-       * than its name.
-       * 
- * - * bool use_enum_field_id = 3; - * @return The useEnumFieldId. - */ - @java.lang.Override - public boolean getUseEnumFieldId() { - return useEnumFieldId_; - } - /** - *
-       * When the field type is an enum in protobuf, the value of this field in
-       * json is the id of the field of the enum (an integer value) rather
-       * than its name.
-       * 
- * - * bool use_enum_field_id = 3; - * @param value The useEnumFieldId to set. - * @return This builder for chaining. - */ - public Builder setUseEnumFieldId(boolean value) { - - useEnumFieldId_ = value; - onChanged(); - return this; - } - /** - *
-       * When the field type is an enum in protobuf, the value of this field in
-       * json is the id of the field of the enum (an integer value) rather
-       * than its name.
-       * 
- * - * bool use_enum_field_id = 3; - * @return This builder for chaining. - */ - public Builder clearUseEnumFieldId() { - - useEnumFieldId_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.JsonAlias) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.JsonAlias) - private static final com.acme.glup.MetadataProto.JsonAlias DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.JsonAlias(); - } - - public static com.acme.glup.MetadataProto.JsonAlias getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public JsonAlias parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new JsonAlias(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.JsonAlias getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface BaseGlupMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.BaseGlupMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return Whether the glupOrigin field is set. - */ - boolean hasGlupOrigin(); - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return The glupOrigin. - */ - com.acme.glup.MetadataProto.Origin getGlupOrigin(); - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - com.acme.glup.MetadataProto.OriginOrBuilder getGlupOriginOrBuilder(); - - /** - * .Acme.Glup.Partition partition = 2; - * @return Whether the partition field is set. - */ - boolean hasPartition(); - /** - * .Acme.Glup.Partition partition = 2; - * @return The partition. - */ - com.acme.glup.MetadataProto.Partition getPartition(); - /** - * .Acme.Glup.Partition partition = 2; - */ - com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder(); - - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - int getSetFieldsCount(); - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - boolean containsSetFields( - int key); - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getSetFields(); - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - java.util.Map - getSetFieldsMap(); - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrDefault( - int key, - boolean defaultValue); - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrThrow( - int key); - - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - java.util.List - getControlMessageList(); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - int getControlMessageCount(); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - java.util.List - getControlMessageOrBuilderList(); - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index); - } - /** - *
-   * It is safe to read any GLUP message as a BaseGlupMessage 
-   * 
- * - * Protobuf type {@code Acme.Glup.BaseGlupMessage} - */ - public static final class BaseGlupMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.BaseGlupMessage) - BaseGlupMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use BaseGlupMessage.newBuilder() to construct. - private BaseGlupMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private BaseGlupMessage() { - controlMessage_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new BaseGlupMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private BaseGlupMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.Origin.Builder subBuilder = null; - if (glupOrigin_ != null) { - subBuilder = glupOrigin_.toBuilder(); - } - glupOrigin_ = input.readMessage(com.acme.glup.MetadataProto.Origin.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(glupOrigin_); - glupOrigin_ = subBuilder.buildPartial(); - } - - break; - } - case 18: { - com.acme.glup.MetadataProto.Partition.Builder subBuilder = null; - if (partition_ != null) { - subBuilder = partition_.toBuilder(); - } - partition_ = input.readMessage(com.acme.glup.MetadataProto.Partition.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(partition_); - partition_ = subBuilder.buildPartial(); - } - - break; - } - case 400082: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000001; - } - com.google.protobuf.MapEntry - setFields__ = input.readMessage( - SetFieldsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - setFields_.getMutableMap().put( - setFields__.getKey(), setFields__.getValue()); - break; - } - case 16777210: { - if (!((mutable_bitField0_ & 0x00000002) != 0)) { - controlMessage_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000002; - } - controlMessage_.add( - input.readMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark.parser(), extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000002) != 0)) { - controlMessage_ = java.util.Collections.unmodifiableList(controlMessage_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_BaseGlupMessage_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_BaseGlupMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.BaseGlupMessage.class, com.acme.glup.MetadataProto.BaseGlupMessage.Builder.class); - } - - public static final int GLUP_ORIGIN_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.Origin glupOrigin_; - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return Whether the glupOrigin field is set. - */ - @java.lang.Override - public boolean hasGlupOrigin() { - return glupOrigin_ != null; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return The glupOrigin. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Origin getGlupOrigin() { - return glupOrigin_ == null ? com.acme.glup.MetadataProto.Origin.getDefaultInstance() : glupOrigin_; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.OriginOrBuilder getGlupOriginOrBuilder() { - return getGlupOrigin(); - } - - public static final int PARTITION_FIELD_NUMBER = 2; - private com.acme.glup.MetadataProto.Partition partition_; - /** - * .Acme.Glup.Partition partition = 2; - * @return Whether the partition field is set. - */ - @java.lang.Override - public boolean hasPartition() { - return partition_ != null; - } - /** - * .Acme.Glup.Partition partition = 2; - * @return The partition. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Partition getPartition() { - return partition_ == null ? com.acme.glup.MetadataProto.Partition.getDefaultInstance() : partition_; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder() { - return getPartition(); - } - - public static final int SET_FIELDS_FIELD_NUMBER = 50010; - private static final class SetFieldsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.Integer, java.lang.Boolean> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - com.acme.glup.MetadataProto.internal_static_Acme_Glup_BaseGlupMessage_SetFieldsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.INT32, - 0, - com.google.protobuf.WireFormat.FieldType.BOOL, - false); - } - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-     * ID 3 is reserved, ask rivers-team@ first.
-     * ID 4 is reserved, ask rivers-team@ first.
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int CONTROL_MESSAGE_FIELD_NUMBER = 2097151; - private java.util.List controlMessage_; - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public java.util.List getControlMessageList() { - return controlMessage_; - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public java.util.List - getControlMessageOrBuilderList() { - return controlMessage_; - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public int getControlMessageCount() { - return controlMessage_.size(); - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index) { - return controlMessage_.get(index); - } - /** - *
-     * standard glup field
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index) { - return controlMessage_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (glupOrigin_ != null) { - output.writeMessage(1, getGlupOrigin()); - } - if (partition_ != null) { - output.writeMessage(2, getPartition()); - } - com.google.protobuf.GeneratedMessageV3 - .serializeIntegerMapTo( - output, - internalGetSetFields(), - SetFieldsDefaultEntryHolder.defaultEntry, - 50010); - for (int i = 0; i < controlMessage_.size(); i++) { - output.writeMessage(2097151, controlMessage_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (glupOrigin_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getGlupOrigin()); - } - if (partition_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getPartition()); - } - for (java.util.Map.Entry entry - : internalGetSetFields().getMap().entrySet()) { - com.google.protobuf.MapEntry - setFields__ = SetFieldsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(50010, setFields__); - } - for (int i = 0; i < controlMessage_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2097151, controlMessage_.get(i)); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.BaseGlupMessage)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.BaseGlupMessage other = (com.acme.glup.MetadataProto.BaseGlupMessage) obj; - - if (hasGlupOrigin() != other.hasGlupOrigin()) return false; - if (hasGlupOrigin()) { - if (!getGlupOrigin() - .equals(other.getGlupOrigin())) return false; - } - if (hasPartition() != other.hasPartition()) return false; - if (hasPartition()) { - if (!getPartition() - .equals(other.getPartition())) return false; - } - if (!internalGetSetFields().equals( - other.internalGetSetFields())) return false; - if (!getControlMessageList() - .equals(other.getControlMessageList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasGlupOrigin()) { - hash = (37 * hash) + GLUP_ORIGIN_FIELD_NUMBER; - hash = (53 * hash) + getGlupOrigin().hashCode(); - } - if (hasPartition()) { - hash = (37 * hash) + PARTITION_FIELD_NUMBER; - hash = (53 * hash) + getPartition().hashCode(); - } - if (!internalGetSetFields().getMap().isEmpty()) { - hash = (37 * hash) + SET_FIELDS_FIELD_NUMBER; - hash = (53 * hash) + internalGetSetFields().hashCode(); - } - if (getControlMessageCount() > 0) { - hash = (37 * hash) + CONTROL_MESSAGE_FIELD_NUMBER; - hash = (53 * hash) + getControlMessageList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.BaseGlupMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.BaseGlupMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * It is safe to read any GLUP message as a BaseGlupMessage 
-     * 
- * - * Protobuf type {@code Acme.Glup.BaseGlupMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.BaseGlupMessage) - com.acme.glup.MetadataProto.BaseGlupMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_BaseGlupMessage_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 50010: - return internalGetMutableSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_BaseGlupMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.BaseGlupMessage.class, com.acme.glup.MetadataProto.BaseGlupMessage.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.BaseGlupMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getControlMessageFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (glupOriginBuilder_ == null) { - glupOrigin_ = null; - } else { - glupOrigin_ = null; - glupOriginBuilder_ = null; - } - if (partitionBuilder_ == null) { - partition_ = null; - } else { - partition_ = null; - partitionBuilder_ = null; - } - internalGetMutableSetFields().clear(); - if (controlMessageBuilder_ == null) { - controlMessage_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - } else { - controlMessageBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_BaseGlupMessage_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.BaseGlupMessage getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.BaseGlupMessage.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.BaseGlupMessage build() { - com.acme.glup.MetadataProto.BaseGlupMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.BaseGlupMessage buildPartial() { - com.acme.glup.MetadataProto.BaseGlupMessage result = new com.acme.glup.MetadataProto.BaseGlupMessage(this); - int from_bitField0_ = bitField0_; - if (glupOriginBuilder_ == null) { - result.glupOrigin_ = glupOrigin_; - } else { - result.glupOrigin_ = glupOriginBuilder_.build(); - } - if (partitionBuilder_ == null) { - result.partition_ = partition_; - } else { - result.partition_ = partitionBuilder_.build(); - } - result.setFields_ = internalGetSetFields(); - result.setFields_.makeImmutable(); - if (controlMessageBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0)) { - controlMessage_ = java.util.Collections.unmodifiableList(controlMessage_); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.controlMessage_ = controlMessage_; - } else { - result.controlMessage_ = controlMessageBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.BaseGlupMessage) { - return mergeFrom((com.acme.glup.MetadataProto.BaseGlupMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.BaseGlupMessage other) { - if (other == com.acme.glup.MetadataProto.BaseGlupMessage.getDefaultInstance()) return this; - if (other.hasGlupOrigin()) { - mergeGlupOrigin(other.getGlupOrigin()); - } - if (other.hasPartition()) { - mergePartition(other.getPartition()); - } - internalGetMutableSetFields().mergeFrom( - other.internalGetSetFields()); - if (controlMessageBuilder_ == null) { - if (!other.controlMessage_.isEmpty()) { - if (controlMessage_.isEmpty()) { - controlMessage_ = other.controlMessage_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensureControlMessageIsMutable(); - controlMessage_.addAll(other.controlMessage_); - } - onChanged(); - } - } else { - if (!other.controlMessage_.isEmpty()) { - if (controlMessageBuilder_.isEmpty()) { - controlMessageBuilder_.dispose(); - controlMessageBuilder_ = null; - controlMessage_ = other.controlMessage_; - bitField0_ = (bitField0_ & ~0x00000002); - controlMessageBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getControlMessageFieldBuilder() : null; - } else { - controlMessageBuilder_.addAllMessages(other.controlMessage_); - } - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.BaseGlupMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.BaseGlupMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.acme.glup.MetadataProto.Origin glupOrigin_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Origin, com.acme.glup.MetadataProto.Origin.Builder, com.acme.glup.MetadataProto.OriginOrBuilder> glupOriginBuilder_; - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return Whether the glupOrigin field is set. - */ - public boolean hasGlupOrigin() { - return glupOriginBuilder_ != null || glupOrigin_ != null; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - * @return The glupOrigin. - */ - public com.acme.glup.MetadataProto.Origin getGlupOrigin() { - if (glupOriginBuilder_ == null) { - return glupOrigin_ == null ? com.acme.glup.MetadataProto.Origin.getDefaultInstance() : glupOrigin_; - } else { - return glupOriginBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder setGlupOrigin(com.acme.glup.MetadataProto.Origin value) { - if (glupOriginBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - glupOrigin_ = value; - onChanged(); - } else { - glupOriginBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder setGlupOrigin( - com.acme.glup.MetadataProto.Origin.Builder builderForValue) { - if (glupOriginBuilder_ == null) { - glupOrigin_ = builderForValue.build(); - onChanged(); - } else { - glupOriginBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder mergeGlupOrigin(com.acme.glup.MetadataProto.Origin value) { - if (glupOriginBuilder_ == null) { - if (glupOrigin_ != null) { - glupOrigin_ = - com.acme.glup.MetadataProto.Origin.newBuilder(glupOrigin_).mergeFrom(value).buildPartial(); - } else { - glupOrigin_ = value; - } - onChanged(); - } else { - glupOriginBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public Builder clearGlupOrigin() { - if (glupOriginBuilder_ == null) { - glupOrigin_ = null; - onChanged(); - } else { - glupOrigin_ = null; - glupOriginBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public com.acme.glup.MetadataProto.Origin.Builder getGlupOriginBuilder() { - - onChanged(); - return getGlupOriginFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - public com.acme.glup.MetadataProto.OriginOrBuilder getGlupOriginOrBuilder() { - if (glupOriginBuilder_ != null) { - return glupOriginBuilder_.getMessageOrBuilder(); - } else { - return glupOrigin_ == null ? - com.acme.glup.MetadataProto.Origin.getDefaultInstance() : glupOrigin_; - } - } - /** - * .Acme.Glup.Origin glup_origin = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Origin, com.acme.glup.MetadataProto.Origin.Builder, com.acme.glup.MetadataProto.OriginOrBuilder> - getGlupOriginFieldBuilder() { - if (glupOriginBuilder_ == null) { - glupOriginBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Origin, com.acme.glup.MetadataProto.Origin.Builder, com.acme.glup.MetadataProto.OriginOrBuilder>( - getGlupOrigin(), - getParentForChildren(), - isClean()); - glupOrigin_ = null; - } - return glupOriginBuilder_; - } - - private com.acme.glup.MetadataProto.Partition partition_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder> partitionBuilder_; - /** - * .Acme.Glup.Partition partition = 2; - * @return Whether the partition field is set. - */ - public boolean hasPartition() { - return partitionBuilder_ != null || partition_ != null; - } - /** - * .Acme.Glup.Partition partition = 2; - * @return The partition. - */ - public com.acme.glup.MetadataProto.Partition getPartition() { - if (partitionBuilder_ == null) { - return partition_ == null ? com.acme.glup.MetadataProto.Partition.getDefaultInstance() : partition_; - } else { - return partitionBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder setPartition(com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - partition_ = value; - onChanged(); - } else { - partitionBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder setPartition( - com.acme.glup.MetadataProto.Partition.Builder builderForValue) { - if (partitionBuilder_ == null) { - partition_ = builderForValue.build(); - onChanged(); - } else { - partitionBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder mergePartition(com.acme.glup.MetadataProto.Partition value) { - if (partitionBuilder_ == null) { - if (partition_ != null) { - partition_ = - com.acme.glup.MetadataProto.Partition.newBuilder(partition_).mergeFrom(value).buildPartial(); - } else { - partition_ = value; - } - onChanged(); - } else { - partitionBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public Builder clearPartition() { - if (partitionBuilder_ == null) { - partition_ = null; - onChanged(); - } else { - partition_ = null; - partitionBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public com.acme.glup.MetadataProto.Partition.Builder getPartitionBuilder() { - - onChanged(); - return getPartitionFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.Partition partition = 2; - */ - public com.acme.glup.MetadataProto.PartitionOrBuilder getPartitionOrBuilder() { - if (partitionBuilder_ != null) { - return partitionBuilder_.getMessageOrBuilder(); - } else { - return partition_ == null ? - com.acme.glup.MetadataProto.Partition.getDefaultInstance() : partition_; - } - } - /** - * .Acme.Glup.Partition partition = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder> - getPartitionFieldBuilder() { - if (partitionBuilder_ == null) { - partitionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.Partition, com.acme.glup.MetadataProto.Partition.Builder, com.acme.glup.MetadataProto.PartitionOrBuilder>( - getPartition(), - getParentForChildren(), - isClean()); - partition_ = null; - } - return partitionBuilder_; - } - - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - private com.google.protobuf.MapField - internalGetMutableSetFields() { - onChanged();; - if (setFields_ == null) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - if (!setFields_.isMutable()) { - setFields_ = setFields_.copy(); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearSetFields() { - internalGetMutableSetFields().getMutableMap() - .clear(); - return this; - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder removeSetFields( - int key) { - - internalGetMutableSetFields().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableSetFields() { - return internalGetMutableSetFields().getMutableMap(); - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - public Builder putSetFields( - int key, - boolean value) { - - - internalGetMutableSetFields().getMutableMap() - .put(key, value); - return this; - } - /** - *
-       * ID 3 is reserved, ask rivers-team@ first.
-       * ID 4 is reserved, ask rivers-team@ first.
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder putAllSetFields( - java.util.Map values) { - internalGetMutableSetFields().getMutableMap() - .putAll(values); - return this; - } - - private java.util.List controlMessage_ = - java.util.Collections.emptyList(); - private void ensureControlMessageIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - controlMessage_ = new java.util.ArrayList(controlMessage_); - bitField0_ |= 0x00000002; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> controlMessageBuilder_; - - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List getControlMessageList() { - if (controlMessageBuilder_ == null) { - return java.util.Collections.unmodifiableList(controlMessage_); - } else { - return controlMessageBuilder_.getMessageList(); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public int getControlMessageCount() { - if (controlMessageBuilder_ == null) { - return controlMessage_.size(); - } else { - return controlMessageBuilder_.getCount(); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index) { - if (controlMessageBuilder_ == null) { - return controlMessage_.get(index); - } else { - return controlMessageBuilder_.getMessage(index); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder setControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.set(index, value); - onChanged(); - } else { - controlMessageBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder setControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.set(index, builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.add(value); - onChanged(); - } else { - controlMessageBuilder_.addMessage(value); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.add(index, value); - onChanged(); - } else { - controlMessageBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.add(builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.add(index, builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addAllControlMessage( - java.lang.Iterable values) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, controlMessage_); - onChanged(); - } else { - controlMessageBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder clearControlMessage() { - if (controlMessageBuilder_ == null) { - controlMessage_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - } else { - controlMessageBuilder_.clear(); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder removeControlMessage(int index) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.remove(index); - onChanged(); - } else { - controlMessageBuilder_.remove(index); - } - return this; - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder getControlMessageBuilder( - int index) { - return getControlMessageFieldBuilder().getBuilder(index); - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index) { - if (controlMessageBuilder_ == null) { - return controlMessage_.get(index); } else { - return controlMessageBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List - getControlMessageOrBuilderList() { - if (controlMessageBuilder_ != null) { - return controlMessageBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(controlMessage_); - } - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder addControlMessageBuilder() { - return getControlMessageFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()); - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder addControlMessageBuilder( - int index) { - return getControlMessageFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()); - } - /** - *
-       * standard glup field
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List - getControlMessageBuilderList() { - return getControlMessageFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> - getControlMessageFieldBuilder() { - if (controlMessageBuilder_ == null) { - controlMessageBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder>( - controlMessage_, - ((bitField0_ & 0x00000002) != 0), - getParentForChildren(), - isClean()); - controlMessage_ = null; - } - return controlMessageBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.BaseGlupMessage) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.BaseGlupMessage) - private static final com.acme.glup.MetadataProto.BaseGlupMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.BaseGlupMessage(); - } - - public static com.acme.glup.MetadataProto.BaseGlupMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public BaseGlupMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new BaseGlupMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.BaseGlupMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ForwardedWatermarkMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.ForwardedWatermarkMessage) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     *Where it was taken
-     * 
- * - * int64 original_kafka_offset = 5; - * @return The originalKafkaOffset. - */ - long getOriginalKafkaOffset(); - - /** - *
-     *When message was created
-     * 
- * - * int64 timestamp = 6; - * @return The timestamp. - */ - long getTimestamp(); - - /** - *
-     *True to update consensus in consolidation folder, false for consensus in dataset folder
-     * 
- * - * bool consolidation_enabled = 7; - * @return The consolidationEnabled. - */ - boolean getConsolidationEnabled(); - - /** - *
-     *DatasetId that we should process
-     * 
- * - * string dataset_id = 10; - * @return The datasetId. - */ - java.lang.String getDatasetId(); - /** - *
-     *DatasetId that we should process
-     * 
- * - * string dataset_id = 10; - * @return The bytes for datasetId. - */ - com.google.protobuf.ByteString - getDatasetIdBytes(); - - /** - *
-     * Exact format that we're processing (when overriding the default format)
-     * 
- * - * string dataset_format_label = 11; - * @return The datasetFormatLabel. - */ - java.lang.String getDatasetFormatLabel(); - /** - *
-     * Exact format that we're processing (when overriding the default format)
-     * 
- * - * string dataset_format_label = 11; - * @return The bytes for datasetFormatLabel. - */ - com.google.protobuf.ByteString - getDatasetFormatLabelBytes(); - - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - java.util.List - getControlMessageList(); - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index); - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - int getControlMessageCount(); - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - java.util.List - getControlMessageOrBuilderList(); - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index); - } - /** - *
-   * Message to be used for forward watermarks in KaCoHa 
-   * 
- * - * Protobuf type {@code Acme.Glup.ForwardedWatermarkMessage} - */ - public static final class ForwardedWatermarkMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.ForwardedWatermarkMessage) - ForwardedWatermarkMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use ForwardedWatermarkMessage.newBuilder() to construct. - private ForwardedWatermarkMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ForwardedWatermarkMessage() { - datasetId_ = ""; - datasetFormatLabel_ = ""; - controlMessage_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ForwardedWatermarkMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ForwardedWatermarkMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 40: { - - originalKafkaOffset_ = input.readInt64(); - break; - } - case 48: { - - timestamp_ = input.readInt64(); - break; - } - case 56: { - - consolidationEnabled_ = input.readBool(); - break; - } - case 82: { - java.lang.String s = input.readStringRequireUtf8(); - - datasetId_ = s; - break; - } - case 90: { - java.lang.String s = input.readStringRequireUtf8(); - - datasetFormatLabel_ = s; - break; - } - case 16777210: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - controlMessage_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - controlMessage_.add( - input.readMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark.parser(), extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - controlMessage_ = java.util.Collections.unmodifiableList(controlMessage_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ForwardedWatermarkMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ForwardedWatermarkMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ForwardedWatermarkMessage.class, com.acme.glup.MetadataProto.ForwardedWatermarkMessage.Builder.class); - } - - public static final int ORIGINAL_KAFKA_OFFSET_FIELD_NUMBER = 5; - private long originalKafkaOffset_; - /** - *
-     *Where it was taken
-     * 
- * - * int64 original_kafka_offset = 5; - * @return The originalKafkaOffset. - */ - @java.lang.Override - public long getOriginalKafkaOffset() { - return originalKafkaOffset_; - } - - public static final int TIMESTAMP_FIELD_NUMBER = 6; - private long timestamp_; - /** - *
-     *When message was created
-     * 
- * - * int64 timestamp = 6; - * @return The timestamp. - */ - @java.lang.Override - public long getTimestamp() { - return timestamp_; - } - - public static final int CONSOLIDATION_ENABLED_FIELD_NUMBER = 7; - private boolean consolidationEnabled_; - /** - *
-     *True to update consensus in consolidation folder, false for consensus in dataset folder
-     * 
- * - * bool consolidation_enabled = 7; - * @return The consolidationEnabled. - */ - @java.lang.Override - public boolean getConsolidationEnabled() { - return consolidationEnabled_; - } - - public static final int DATASET_ID_FIELD_NUMBER = 10; - private volatile java.lang.Object datasetId_; - /** - *
-     *DatasetId that we should process
-     * 
- * - * string dataset_id = 10; - * @return The datasetId. - */ - @java.lang.Override - public java.lang.String getDatasetId() { - java.lang.Object ref = datasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetId_ = s; - return s; - } - } - /** - *
-     *DatasetId that we should process
-     * 
- * - * string dataset_id = 10; - * @return The bytes for datasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDatasetIdBytes() { - java.lang.Object ref = datasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int DATASET_FORMAT_LABEL_FIELD_NUMBER = 11; - private volatile java.lang.Object datasetFormatLabel_; - /** - *
-     * Exact format that we're processing (when overriding the default format)
-     * 
- * - * string dataset_format_label = 11; - * @return The datasetFormatLabel. - */ - @java.lang.Override - public java.lang.String getDatasetFormatLabel() { - java.lang.Object ref = datasetFormatLabel_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetFormatLabel_ = s; - return s; - } - } - /** - *
-     * Exact format that we're processing (when overriding the default format)
-     * 
- * - * string dataset_format_label = 11; - * @return The bytes for datasetFormatLabel. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDatasetFormatLabelBytes() { - java.lang.Object ref = datasetFormatLabel_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int CONTROL_MESSAGE_FIELD_NUMBER = 2097151; - private java.util.List controlMessage_; - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public java.util.List getControlMessageList() { - return controlMessage_; - } - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public java.util.List - getControlMessageOrBuilderList() { - return controlMessage_; - } - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public int getControlMessageCount() { - return controlMessage_.size(); - } - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index) { - return controlMessage_.get(index); - } - /** - *
-     * original watermark
-     * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index) { - return controlMessage_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (originalKafkaOffset_ != 0L) { - output.writeInt64(5, originalKafkaOffset_); - } - if (timestamp_ != 0L) { - output.writeInt64(6, timestamp_); - } - if (consolidationEnabled_ != false) { - output.writeBool(7, consolidationEnabled_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 10, datasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetFormatLabel_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 11, datasetFormatLabel_); - } - for (int i = 0; i < controlMessage_.size(); i++) { - output.writeMessage(2097151, controlMessage_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (originalKafkaOffset_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeInt64Size(5, originalKafkaOffset_); - } - if (timestamp_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeInt64Size(6, timestamp_); - } - if (consolidationEnabled_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(7, consolidationEnabled_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, datasetId_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetFormatLabel_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(11, datasetFormatLabel_); - } - for (int i = 0; i < controlMessage_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2097151, controlMessage_.get(i)); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.ForwardedWatermarkMessage)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.ForwardedWatermarkMessage other = (com.acme.glup.MetadataProto.ForwardedWatermarkMessage) obj; - - if (getOriginalKafkaOffset() - != other.getOriginalKafkaOffset()) return false; - if (getTimestamp() - != other.getTimestamp()) return false; - if (getConsolidationEnabled() - != other.getConsolidationEnabled()) return false; - if (!getDatasetId() - .equals(other.getDatasetId())) return false; - if (!getDatasetFormatLabel() - .equals(other.getDatasetFormatLabel())) return false; - if (!getControlMessageList() - .equals(other.getControlMessageList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ORIGINAL_KAFKA_OFFSET_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getOriginalKafkaOffset()); - hash = (37 * hash) + TIMESTAMP_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTimestamp()); - hash = (37 * hash) + CONSOLIDATION_ENABLED_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getConsolidationEnabled()); - hash = (37 * hash) + DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getDatasetId().hashCode(); - hash = (37 * hash) + DATASET_FORMAT_LABEL_FIELD_NUMBER; - hash = (53 * hash) + getDatasetFormatLabel().hashCode(); - if (getControlMessageCount() > 0) { - hash = (37 * hash) + CONTROL_MESSAGE_FIELD_NUMBER; - hash = (53 * hash) + getControlMessageList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.ForwardedWatermarkMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Message to be used for forward watermarks in KaCoHa 
-     * 
- * - * Protobuf type {@code Acme.Glup.ForwardedWatermarkMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.ForwardedWatermarkMessage) - com.acme.glup.MetadataProto.ForwardedWatermarkMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ForwardedWatermarkMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ForwardedWatermarkMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ForwardedWatermarkMessage.class, com.acme.glup.MetadataProto.ForwardedWatermarkMessage.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.ForwardedWatermarkMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getControlMessageFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - originalKafkaOffset_ = 0L; - - timestamp_ = 0L; - - consolidationEnabled_ = false; - - datasetId_ = ""; - - datasetFormatLabel_ = ""; - - if (controlMessageBuilder_ == null) { - controlMessage_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - controlMessageBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ForwardedWatermarkMessage_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ForwardedWatermarkMessage getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.ForwardedWatermarkMessage.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ForwardedWatermarkMessage build() { - com.acme.glup.MetadataProto.ForwardedWatermarkMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ForwardedWatermarkMessage buildPartial() { - com.acme.glup.MetadataProto.ForwardedWatermarkMessage result = new com.acme.glup.MetadataProto.ForwardedWatermarkMessage(this); - int from_bitField0_ = bitField0_; - result.originalKafkaOffset_ = originalKafkaOffset_; - result.timestamp_ = timestamp_; - result.consolidationEnabled_ = consolidationEnabled_; - result.datasetId_ = datasetId_; - result.datasetFormatLabel_ = datasetFormatLabel_; - if (controlMessageBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - controlMessage_ = java.util.Collections.unmodifiableList(controlMessage_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.controlMessage_ = controlMessage_; - } else { - result.controlMessage_ = controlMessageBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.ForwardedWatermarkMessage) { - return mergeFrom((com.acme.glup.MetadataProto.ForwardedWatermarkMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.ForwardedWatermarkMessage other) { - if (other == com.acme.glup.MetadataProto.ForwardedWatermarkMessage.getDefaultInstance()) return this; - if (other.getOriginalKafkaOffset() != 0L) { - setOriginalKafkaOffset(other.getOriginalKafkaOffset()); - } - if (other.getTimestamp() != 0L) { - setTimestamp(other.getTimestamp()); - } - if (other.getConsolidationEnabled() != false) { - setConsolidationEnabled(other.getConsolidationEnabled()); - } - if (!other.getDatasetId().isEmpty()) { - datasetId_ = other.datasetId_; - onChanged(); - } - if (!other.getDatasetFormatLabel().isEmpty()) { - datasetFormatLabel_ = other.datasetFormatLabel_; - onChanged(); - } - if (controlMessageBuilder_ == null) { - if (!other.controlMessage_.isEmpty()) { - if (controlMessage_.isEmpty()) { - controlMessage_ = other.controlMessage_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureControlMessageIsMutable(); - controlMessage_.addAll(other.controlMessage_); - } - onChanged(); - } - } else { - if (!other.controlMessage_.isEmpty()) { - if (controlMessageBuilder_.isEmpty()) { - controlMessageBuilder_.dispose(); - controlMessageBuilder_ = null; - controlMessage_ = other.controlMessage_; - bitField0_ = (bitField0_ & ~0x00000001); - controlMessageBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getControlMessageFieldBuilder() : null; - } else { - controlMessageBuilder_.addAllMessages(other.controlMessage_); - } - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.ForwardedWatermarkMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.ForwardedWatermarkMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private long originalKafkaOffset_ ; - /** - *
-       *Where it was taken
-       * 
- * - * int64 original_kafka_offset = 5; - * @return The originalKafkaOffset. - */ - @java.lang.Override - public long getOriginalKafkaOffset() { - return originalKafkaOffset_; - } - /** - *
-       *Where it was taken
-       * 
- * - * int64 original_kafka_offset = 5; - * @param value The originalKafkaOffset to set. - * @return This builder for chaining. - */ - public Builder setOriginalKafkaOffset(long value) { - - originalKafkaOffset_ = value; - onChanged(); - return this; - } - /** - *
-       *Where it was taken
-       * 
- * - * int64 original_kafka_offset = 5; - * @return This builder for chaining. - */ - public Builder clearOriginalKafkaOffset() { - - originalKafkaOffset_ = 0L; - onChanged(); - return this; - } - - private long timestamp_ ; - /** - *
-       *When message was created
-       * 
- * - * int64 timestamp = 6; - * @return The timestamp. - */ - @java.lang.Override - public long getTimestamp() { - return timestamp_; - } - /** - *
-       *When message was created
-       * 
- * - * int64 timestamp = 6; - * @param value The timestamp to set. - * @return This builder for chaining. - */ - public Builder setTimestamp(long value) { - - timestamp_ = value; - onChanged(); - return this; - } - /** - *
-       *When message was created
-       * 
- * - * int64 timestamp = 6; - * @return This builder for chaining. - */ - public Builder clearTimestamp() { - - timestamp_ = 0L; - onChanged(); - return this; - } - - private boolean consolidationEnabled_ ; - /** - *
-       *True to update consensus in consolidation folder, false for consensus in dataset folder
-       * 
- * - * bool consolidation_enabled = 7; - * @return The consolidationEnabled. - */ - @java.lang.Override - public boolean getConsolidationEnabled() { - return consolidationEnabled_; - } - /** - *
-       *True to update consensus in consolidation folder, false for consensus in dataset folder
-       * 
- * - * bool consolidation_enabled = 7; - * @param value The consolidationEnabled to set. - * @return This builder for chaining. - */ - public Builder setConsolidationEnabled(boolean value) { - - consolidationEnabled_ = value; - onChanged(); - return this; - } - /** - *
-       *True to update consensus in consolidation folder, false for consensus in dataset folder
-       * 
- * - * bool consolidation_enabled = 7; - * @return This builder for chaining. - */ - public Builder clearConsolidationEnabled() { - - consolidationEnabled_ = false; - onChanged(); - return this; - } - - private java.lang.Object datasetId_ = ""; - /** - *
-       *DatasetId that we should process
-       * 
- * - * string dataset_id = 10; - * @return The datasetId. - */ - public java.lang.String getDatasetId() { - java.lang.Object ref = datasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       *DatasetId that we should process
-       * 
- * - * string dataset_id = 10; - * @return The bytes for datasetId. - */ - public com.google.protobuf.ByteString - getDatasetIdBytes() { - java.lang.Object ref = datasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       *DatasetId that we should process
-       * 
- * - * string dataset_id = 10; - * @param value The datasetId to set. - * @return This builder for chaining. - */ - public Builder setDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - datasetId_ = value; - onChanged(); - return this; - } - /** - *
-       *DatasetId that we should process
-       * 
- * - * string dataset_id = 10; - * @return This builder for chaining. - */ - public Builder clearDatasetId() { - - datasetId_ = getDefaultInstance().getDatasetId(); - onChanged(); - return this; - } - /** - *
-       *DatasetId that we should process
-       * 
- * - * string dataset_id = 10; - * @param value The bytes for datasetId to set. - * @return This builder for chaining. - */ - public Builder setDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - datasetId_ = value; - onChanged(); - return this; - } - - private java.lang.Object datasetFormatLabel_ = ""; - /** - *
-       * Exact format that we're processing (when overriding the default format)
-       * 
- * - * string dataset_format_label = 11; - * @return The datasetFormatLabel. - */ - public java.lang.String getDatasetFormatLabel() { - java.lang.Object ref = datasetFormatLabel_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetFormatLabel_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * Exact format that we're processing (when overriding the default format)
-       * 
- * - * string dataset_format_label = 11; - * @return The bytes for datasetFormatLabel. - */ - public com.google.protobuf.ByteString - getDatasetFormatLabelBytes() { - java.lang.Object ref = datasetFormatLabel_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetFormatLabel_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * Exact format that we're processing (when overriding the default format)
-       * 
- * - * string dataset_format_label = 11; - * @param value The datasetFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setDatasetFormatLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - datasetFormatLabel_ = value; - onChanged(); - return this; - } - /** - *
-       * Exact format that we're processing (when overriding the default format)
-       * 
- * - * string dataset_format_label = 11; - * @return This builder for chaining. - */ - public Builder clearDatasetFormatLabel() { - - datasetFormatLabel_ = getDefaultInstance().getDatasetFormatLabel(); - onChanged(); - return this; - } - /** - *
-       * Exact format that we're processing (when overriding the default format)
-       * 
- * - * string dataset_format_label = 11; - * @param value The bytes for datasetFormatLabel to set. - * @return This builder for chaining. - */ - public Builder setDatasetFormatLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - datasetFormatLabel_ = value; - onChanged(); - return this; - } - - private java.util.List controlMessage_ = - java.util.Collections.emptyList(); - private void ensureControlMessageIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - controlMessage_ = new java.util.ArrayList(controlMessage_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> controlMessageBuilder_; - - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List getControlMessageList() { - if (controlMessageBuilder_ == null) { - return java.util.Collections.unmodifiableList(controlMessage_); - } else { - return controlMessageBuilder_.getMessageList(); - } - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public int getControlMessageCount() { - if (controlMessageBuilder_ == null) { - return controlMessage_.size(); - } else { - return controlMessageBuilder_.getCount(); - } - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark getControlMessage(int index) { - if (controlMessageBuilder_ == null) { - return controlMessage_.get(index); - } else { - return controlMessageBuilder_.getMessage(index); - } - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder setControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.set(index, value); - onChanged(); - } else { - controlMessageBuilder_.setMessage(index, value); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder setControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.set(index, builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.add(value); - onChanged(); - } else { - controlMessageBuilder_.addMessage(value); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (controlMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureControlMessageIsMutable(); - controlMessage_.add(index, value); - onChanged(); - } else { - controlMessageBuilder_.addMessage(index, value); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.add(builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addControlMessage( - int index, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.add(index, builderForValue.build()); - onChanged(); - } else { - controlMessageBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder addAllControlMessage( - java.lang.Iterable values) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, controlMessage_); - onChanged(); - } else { - controlMessageBuilder_.addAllMessages(values); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder clearControlMessage() { - if (controlMessageBuilder_ == null) { - controlMessage_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - controlMessageBuilder_.clear(); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public Builder removeControlMessage(int index) { - if (controlMessageBuilder_ == null) { - ensureControlMessageIsMutable(); - controlMessage_.remove(index); - onChanged(); - } else { - controlMessageBuilder_.remove(index); - } - return this; - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder getControlMessageBuilder( - int index) { - return getControlMessageFieldBuilder().getBuilder(index); - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getControlMessageOrBuilder( - int index) { - if (controlMessageBuilder_ == null) { - return controlMessage_.get(index); } else { - return controlMessageBuilder_.getMessageOrBuilder(index); - } - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List - getControlMessageOrBuilderList() { - if (controlMessageBuilder_ != null) { - return controlMessageBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(controlMessage_); - } - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder addControlMessageBuilder() { - return getControlMessageFieldBuilder().addBuilder( - com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()); - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder addControlMessageBuilder( - int index) { - return getControlMessageFieldBuilder().addBuilder( - index, com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()); - } - /** - *
-       * original watermark
-       * 
- * - * repeated .Acme.Glup.ControlMessage.Watermark control_message = 2097151 [(.Acme.Glup.json) = { ... } - */ - public java.util.List - getControlMessageBuilderList() { - return getControlMessageFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> - getControlMessageFieldBuilder() { - if (controlMessageBuilder_ == null) { - controlMessageBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder>( - controlMessage_, - ((bitField0_ & 0x00000001) != 0), - getParentForChildren(), - isClean()); - controlMessage_ = null; - } - return controlMessageBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.ForwardedWatermarkMessage) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.ForwardedWatermarkMessage) - private static final com.acme.glup.MetadataProto.ForwardedWatermarkMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.ForwardedWatermarkMessage(); - } - - public static com.acme.glup.MetadataProto.ForwardedWatermarkMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ForwardedWatermarkMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ForwardedWatermarkMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ForwardedWatermarkMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface LocationOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.Location) - com.google.protobuf.MessageOrBuilder { - - /** - * .Acme.Glup.Environment env = 1; - * @return The enum numeric value on the wire for env. - */ - int getEnvValue(); - /** - * .Acme.Glup.Environment env = 1; - * @return The env. - */ - com.acme.glup.MetadataProto.Environment getEnv(); - - /** - * .Acme.Glup.DataCenter dc = 2; - * @return The enum numeric value on the wire for dc. - */ - int getDcValue(); - /** - * .Acme.Glup.DataCenter dc = 2; - * @return The dc. - */ - com.acme.glup.MetadataProto.DataCenter getDc(); - - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string label = 3; - * @return The label. - */ - java.lang.String getLabel(); - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string label = 3; - * @return The bytes for label. - */ - com.google.protobuf.ByteString - getLabelBytes(); - - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string dataset_id = 4; - * @return The datasetId. - */ - java.lang.String getDatasetId(); - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string dataset_id = 4; - * @return The bytes for datasetId. - */ - com.google.protobuf.ByteString - getDatasetIdBytes(); - } - /** - * Protobuf type {@code Acme.Glup.Location} - */ - public static final class Location extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.Location) - LocationOrBuilder { - private static final long serialVersionUID = 0L; - // Use Location.newBuilder() to construct. - private Location(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Location() { - env_ = 0; - dc_ = 0; - label_ = ""; - datasetId_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Location(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Location( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - int rawValue = input.readEnum(); - - env_ = rawValue; - break; - } - case 16: { - int rawValue = input.readEnum(); - - dc_ = rawValue; - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - label_ = s; - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - datasetId_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Location_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Location_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Location.class, com.acme.glup.MetadataProto.Location.Builder.class); - } - - public static final int ENV_FIELD_NUMBER = 1; - private int env_; - /** - * .Acme.Glup.Environment env = 1; - * @return The enum numeric value on the wire for env. - */ - @java.lang.Override public int getEnvValue() { - return env_; - } - /** - * .Acme.Glup.Environment env = 1; - * @return The env. - */ - @java.lang.Override public com.acme.glup.MetadataProto.Environment getEnv() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Environment result = com.acme.glup.MetadataProto.Environment.valueOf(env_); - return result == null ? com.acme.glup.MetadataProto.Environment.UNRECOGNIZED : result; - } - - public static final int DC_FIELD_NUMBER = 2; - private int dc_; - /** - * .Acme.Glup.DataCenter dc = 2; - * @return The enum numeric value on the wire for dc. - */ - @java.lang.Override public int getDcValue() { - return dc_; - } - /** - * .Acme.Glup.DataCenter dc = 2; - * @return The dc. - */ - @java.lang.Override public com.acme.glup.MetadataProto.DataCenter getDc() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(dc_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - - public static final int LABEL_FIELD_NUMBER = 3; - private volatile java.lang.Object label_; - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string label = 3; - * @return The label. - */ - @java.lang.Override - public java.lang.String getLabel() { - java.lang.Object ref = label_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - label_ = s; - return s; - } - } - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string label = 3; - * @return The bytes for label. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getLabelBytes() { - java.lang.Object ref = label_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - label_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int DATASET_ID_FIELD_NUMBER = 4; - private volatile java.lang.Object datasetId_; - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string dataset_id = 4; - * @return The datasetId. - */ - @java.lang.Override - public java.lang.String getDatasetId() { - java.lang.Object ref = datasetId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetId_ = s; - return s; - } - } - /** - *
-     * label, associated with dataset_id (both required) is used to override source path of data
-     * 
- * - * string dataset_id = 4; - * @return The bytes for datasetId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDatasetIdBytes() { - java.lang.Object ref = datasetId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (env_ != com.acme.glup.MetadataProto.Environment.UNSUPPORTED_ENVIRONMENT.getNumber()) { - output.writeEnum(1, env_); - } - if (dc_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - output.writeEnum(2, dc_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(label_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, label_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetId_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, datasetId_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (env_ != com.acme.glup.MetadataProto.Environment.UNSUPPORTED_ENVIRONMENT.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(1, env_); - } - if (dc_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, dc_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(label_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, label_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(datasetId_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, datasetId_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.Location)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.Location other = (com.acme.glup.MetadataProto.Location) obj; - - if (env_ != other.env_) return false; - if (dc_ != other.dc_) return false; - if (!getLabel() - .equals(other.getLabel())) return false; - if (!getDatasetId() - .equals(other.getDatasetId())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ENV_FIELD_NUMBER; - hash = (53 * hash) + env_; - hash = (37 * hash) + DC_FIELD_NUMBER; - hash = (53 * hash) + dc_; - hash = (37 * hash) + LABEL_FIELD_NUMBER; - hash = (53 * hash) + getLabel().hashCode(); - hash = (37 * hash) + DATASET_ID_FIELD_NUMBER; - hash = (53 * hash) + getDatasetId().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.Location parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Location parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Location parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Location parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Location parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Location parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.Location prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.Location} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.Location) - com.acme.glup.MetadataProto.LocationOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Location_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Location_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Location.class, com.acme.glup.MetadataProto.Location.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.Location.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - env_ = 0; - - dc_ = 0; - - label_ = ""; - - datasetId_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Location_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Location getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.Location.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Location build() { - com.acme.glup.MetadataProto.Location result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Location buildPartial() { - com.acme.glup.MetadataProto.Location result = new com.acme.glup.MetadataProto.Location(this); - result.env_ = env_; - result.dc_ = dc_; - result.label_ = label_; - result.datasetId_ = datasetId_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.Location) { - return mergeFrom((com.acme.glup.MetadataProto.Location)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.Location other) { - if (other == com.acme.glup.MetadataProto.Location.getDefaultInstance()) return this; - if (other.env_ != 0) { - setEnvValue(other.getEnvValue()); - } - if (other.dc_ != 0) { - setDcValue(other.getDcValue()); - } - if (!other.getLabel().isEmpty()) { - label_ = other.label_; - onChanged(); - } - if (!other.getDatasetId().isEmpty()) { - datasetId_ = other.datasetId_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.Location parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.Location) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int env_ = 0; - /** - * .Acme.Glup.Environment env = 1; - * @return The enum numeric value on the wire for env. - */ - @java.lang.Override public int getEnvValue() { - return env_; - } - /** - * .Acme.Glup.Environment env = 1; - * @param value The enum numeric value on the wire for env to set. - * @return This builder for chaining. - */ - public Builder setEnvValue(int value) { - - env_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.Environment env = 1; - * @return The env. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Environment getEnv() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Environment result = com.acme.glup.MetadataProto.Environment.valueOf(env_); - return result == null ? com.acme.glup.MetadataProto.Environment.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.Environment env = 1; - * @param value The env to set. - * @return This builder for chaining. - */ - public Builder setEnv(com.acme.glup.MetadataProto.Environment value) { - if (value == null) { - throw new NullPointerException(); - } - - env_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.Environment env = 1; - * @return This builder for chaining. - */ - public Builder clearEnv() { - - env_ = 0; - onChanged(); - return this; - } - - private int dc_ = 0; - /** - * .Acme.Glup.DataCenter dc = 2; - * @return The enum numeric value on the wire for dc. - */ - @java.lang.Override public int getDcValue() { - return dc_; - } - /** - * .Acme.Glup.DataCenter dc = 2; - * @param value The enum numeric value on the wire for dc to set. - * @return This builder for chaining. - */ - public Builder setDcValue(int value) { - - dc_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.DataCenter dc = 2; - * @return The dc. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataCenter getDc() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(dc_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.DataCenter dc = 2; - * @param value The dc to set. - * @return This builder for chaining. - */ - public Builder setDc(com.acme.glup.MetadataProto.DataCenter value) { - if (value == null) { - throw new NullPointerException(); - } - - dc_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.DataCenter dc = 2; - * @return This builder for chaining. - */ - public Builder clearDc() { - - dc_ = 0; - onChanged(); - return this; - } - - private java.lang.Object label_ = ""; - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string label = 3; - * @return The label. - */ - public java.lang.String getLabel() { - java.lang.Object ref = label_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - label_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string label = 3; - * @return The bytes for label. - */ - public com.google.protobuf.ByteString - getLabelBytes() { - java.lang.Object ref = label_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - label_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string label = 3; - * @param value The label to set. - * @return This builder for chaining. - */ - public Builder setLabel( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - label_ = value; - onChanged(); - return this; - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string label = 3; - * @return This builder for chaining. - */ - public Builder clearLabel() { - - label_ = getDefaultInstance().getLabel(); - onChanged(); - return this; - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string label = 3; - * @param value The bytes for label to set. - * @return This builder for chaining. - */ - public Builder setLabelBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - label_ = value; - onChanged(); - return this; - } - - private java.lang.Object datasetId_ = ""; - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string dataset_id = 4; - * @return The datasetId. - */ - public java.lang.String getDatasetId() { - java.lang.Object ref = datasetId_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - datasetId_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string dataset_id = 4; - * @return The bytes for datasetId. - */ - public com.google.protobuf.ByteString - getDatasetIdBytes() { - java.lang.Object ref = datasetId_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - datasetId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string dataset_id = 4; - * @param value The datasetId to set. - * @return This builder for chaining. - */ - public Builder setDatasetId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - datasetId_ = value; - onChanged(); - return this; - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string dataset_id = 4; - * @return This builder for chaining. - */ - public Builder clearDatasetId() { - - datasetId_ = getDefaultInstance().getDatasetId(); - onChanged(); - return this; - } - /** - *
-       * label, associated with dataset_id (both required) is used to override source path of data
-       * 
- * - * string dataset_id = 4; - * @param value The bytes for datasetId to set. - * @return This builder for chaining. - */ - public Builder setDatasetIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - datasetId_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.Location) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.Location) - private static final com.acme.glup.MetadataProto.Location DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.Location(); - } - - public static com.acme.glup.MetadataProto.Location getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Location parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Location(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Location getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface OriginOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.Origin) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * DataCenter of the emitting server.
-     * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return The enum numeric value on the wire for datacenter. - */ - int getDatacenterValue(); - /** - *
-     * DataCenter of the emitting server.
-     * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return The datacenter. - */ - com.acme.glup.MetadataProto.DataCenter getDatacenter(); - - /** - *
-     * Mandatory for TLAs and chef-deployed producers.
-     * IP v4 adresses in netork byte order
-     * 
- * - * fixed32 ip4 = 2 [(.Acme.Glup.json_mapping) = { ... } - * @return The ip4. - */ - int getIp4(); - - /** - *
-     * Mandatory for TLAs and chef-deployed producers.
-     * 
- * - * string hostname = 3; - * @return The hostname. - */ - java.lang.String getHostname(); - /** - *
-     * Mandatory for TLAs and chef-deployed producers.
-     * 
- * - * string hostname = 3; - * @return The bytes for hostname. - */ - com.google.protobuf.ByteString - getHostnameBytes(); - - /** - *
-     * Mandatory on container environment.
-     * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return The containerTask. - */ - java.lang.String getContainerTask(); - /** - *
-     * Mandatory on container environment.
-     * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return The bytes for containerTask. - */ - com.google.protobuf.ByteString - getContainerTaskBytes(); - - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return The containerApp. - */ - java.lang.String getContainerApp(); - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return The bytes for containerApp. - */ - com.google.protobuf.ByteString - getContainerAppBytes(); - } - /** - *
-   * Identifies the emitter of a message. 
-   * 
- * - * Protobuf type {@code Acme.Glup.Origin} - */ - public static final class Origin extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.Origin) - OriginOrBuilder { - private static final long serialVersionUID = 0L; - // Use Origin.newBuilder() to construct. - private Origin(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Origin() { - datacenter_ = 0; - hostname_ = ""; - containerTask_ = ""; - containerApp_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Origin(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Origin( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - int rawValue = input.readEnum(); - - datacenter_ = rawValue; - break; - } - case 21: { - - ip4_ = input.readFixed32(); - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - hostname_ = s; - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - containerTask_ = s; - break; - } - case 42: { - java.lang.String s = input.readStringRequireUtf8(); - - containerApp_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Origin_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Origin_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Origin.class, com.acme.glup.MetadataProto.Origin.Builder.class); - } - - public static final int DATACENTER_FIELD_NUMBER = 1; - private int datacenter_; - /** - *
-     * DataCenter of the emitting server.
-     * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return The enum numeric value on the wire for datacenter. - */ - @java.lang.Override public int getDatacenterValue() { - return datacenter_; - } - /** - *
-     * DataCenter of the emitting server.
-     * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return The datacenter. - */ - @java.lang.Override public com.acme.glup.MetadataProto.DataCenter getDatacenter() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(datacenter_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - - public static final int IP4_FIELD_NUMBER = 2; - private int ip4_; - /** - *
-     * Mandatory for TLAs and chef-deployed producers.
-     * IP v4 adresses in netork byte order
-     * 
- * - * fixed32 ip4 = 2 [(.Acme.Glup.json_mapping) = { ... } - * @return The ip4. - */ - @java.lang.Override - public int getIp4() { - return ip4_; - } - - public static final int HOSTNAME_FIELD_NUMBER = 3; - private volatile java.lang.Object hostname_; - /** - *
-     * Mandatory for TLAs and chef-deployed producers.
-     * 
- * - * string hostname = 3; - * @return The hostname. - */ - @java.lang.Override - public java.lang.String getHostname() { - java.lang.Object ref = hostname_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - hostname_ = s; - return s; - } - } - /** - *
-     * Mandatory for TLAs and chef-deployed producers.
-     * 
- * - * string hostname = 3; - * @return The bytes for hostname. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getHostnameBytes() { - java.lang.Object ref = hostname_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - hostname_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int CONTAINER_TASK_FIELD_NUMBER = 4; - private volatile java.lang.Object containerTask_; - /** - *
-     * Mandatory on container environment.
-     * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return The containerTask. - */ - @java.lang.Override - public java.lang.String getContainerTask() { - java.lang.Object ref = containerTask_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - containerTask_ = s; - return s; - } - } - /** - *
-     * Mandatory on container environment.
-     * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return The bytes for containerTask. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getContainerTaskBytes() { - java.lang.Object ref = containerTask_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - containerTask_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int CONTAINER_APP_FIELD_NUMBER = 5; - private volatile java.lang.Object containerApp_; - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return The containerApp. - */ - @java.lang.Override - public java.lang.String getContainerApp() { - java.lang.Object ref = containerApp_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - containerApp_ = s; - return s; - } - } - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return The bytes for containerApp. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getContainerAppBytes() { - java.lang.Object ref = containerApp_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - containerApp_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (datacenter_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - output.writeEnum(1, datacenter_); - } - if (ip4_ != 0) { - output.writeFixed32(2, ip4_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(hostname_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, hostname_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(containerTask_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, containerTask_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(containerApp_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, containerApp_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (datacenter_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(1, datacenter_); - } - if (ip4_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFixed32Size(2, ip4_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(hostname_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, hostname_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(containerTask_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, containerTask_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(containerApp_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, containerApp_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.Origin)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.Origin other = (com.acme.glup.MetadataProto.Origin) obj; - - if (datacenter_ != other.datacenter_) return false; - if (getIp4() - != other.getIp4()) return false; - if (!getHostname() - .equals(other.getHostname())) return false; - if (!getContainerTask() - .equals(other.getContainerTask())) return false; - if (!getContainerApp() - .equals(other.getContainerApp())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + DATACENTER_FIELD_NUMBER; - hash = (53 * hash) + datacenter_; - hash = (37 * hash) + IP4_FIELD_NUMBER; - hash = (53 * hash) + getIp4(); - hash = (37 * hash) + HOSTNAME_FIELD_NUMBER; - hash = (53 * hash) + getHostname().hashCode(); - hash = (37 * hash) + CONTAINER_TASK_FIELD_NUMBER; - hash = (53 * hash) + getContainerTask().hashCode(); - hash = (37 * hash) + CONTAINER_APP_FIELD_NUMBER; - hash = (53 * hash) + getContainerApp().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.Origin parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Origin parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Origin parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Origin parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Origin parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Origin parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.Origin prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Identifies the emitter of a message. 
-     * 
- * - * Protobuf type {@code Acme.Glup.Origin} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.Origin) - com.acme.glup.MetadataProto.OriginOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Origin_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Origin_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Origin.class, com.acme.glup.MetadataProto.Origin.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.Origin.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - datacenter_ = 0; - - ip4_ = 0; - - hostname_ = ""; - - containerTask_ = ""; - - containerApp_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Origin_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Origin getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.Origin.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Origin build() { - com.acme.glup.MetadataProto.Origin result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Origin buildPartial() { - com.acme.glup.MetadataProto.Origin result = new com.acme.glup.MetadataProto.Origin(this); - result.datacenter_ = datacenter_; - result.ip4_ = ip4_; - result.hostname_ = hostname_; - result.containerTask_ = containerTask_; - result.containerApp_ = containerApp_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.Origin) { - return mergeFrom((com.acme.glup.MetadataProto.Origin)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.Origin other) { - if (other == com.acme.glup.MetadataProto.Origin.getDefaultInstance()) return this; - if (other.datacenter_ != 0) { - setDatacenterValue(other.getDatacenterValue()); - } - if (other.getIp4() != 0) { - setIp4(other.getIp4()); - } - if (!other.getHostname().isEmpty()) { - hostname_ = other.hostname_; - onChanged(); - } - if (!other.getContainerTask().isEmpty()) { - containerTask_ = other.containerTask_; - onChanged(); - } - if (!other.getContainerApp().isEmpty()) { - containerApp_ = other.containerApp_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.Origin parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.Origin) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int datacenter_ = 0; - /** - *
-       * DataCenter of the emitting server.
-       * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return The enum numeric value on the wire for datacenter. - */ - @java.lang.Override public int getDatacenterValue() { - return datacenter_; - } - /** - *
-       * DataCenter of the emitting server.
-       * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @param value The enum numeric value on the wire for datacenter to set. - * @return This builder for chaining. - */ - public Builder setDatacenterValue(int value) { - - datacenter_ = value; - onChanged(); - return this; - } - /** - *
-       * DataCenter of the emitting server.
-       * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return The datacenter. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataCenter getDatacenter() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(datacenter_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - /** - *
-       * DataCenter of the emitting server.
-       * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @param value The datacenter to set. - * @return This builder for chaining. - */ - public Builder setDatacenter(com.acme.glup.MetadataProto.DataCenter value) { - if (value == null) { - throw new NullPointerException(); - } - - datacenter_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * DataCenter of the emitting server.
-       * 
- * - * .Acme.Glup.DataCenter datacenter = 1; - * @return This builder for chaining. - */ - public Builder clearDatacenter() { - - datacenter_ = 0; - onChanged(); - return this; - } - - private int ip4_ ; - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * IP v4 adresses in netork byte order
-       * 
- * - * fixed32 ip4 = 2 [(.Acme.Glup.json_mapping) = { ... } - * @return The ip4. - */ - @java.lang.Override - public int getIp4() { - return ip4_; - } - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * IP v4 adresses in netork byte order
-       * 
- * - * fixed32 ip4 = 2 [(.Acme.Glup.json_mapping) = { ... } - * @param value The ip4 to set. - * @return This builder for chaining. - */ - public Builder setIp4(int value) { - - ip4_ = value; - onChanged(); - return this; - } - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * IP v4 adresses in netork byte order
-       * 
- * - * fixed32 ip4 = 2 [(.Acme.Glup.json_mapping) = { ... } - * @return This builder for chaining. - */ - public Builder clearIp4() { - - ip4_ = 0; - onChanged(); - return this; - } - - private java.lang.Object hostname_ = ""; - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * 
- * - * string hostname = 3; - * @return The hostname. - */ - public java.lang.String getHostname() { - java.lang.Object ref = hostname_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - hostname_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * 
- * - * string hostname = 3; - * @return The bytes for hostname. - */ - public com.google.protobuf.ByteString - getHostnameBytes() { - java.lang.Object ref = hostname_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - hostname_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * 
- * - * string hostname = 3; - * @param value The hostname to set. - * @return This builder for chaining. - */ - public Builder setHostname( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - hostname_ = value; - onChanged(); - return this; - } - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * 
- * - * string hostname = 3; - * @return This builder for chaining. - */ - public Builder clearHostname() { - - hostname_ = getDefaultInstance().getHostname(); - onChanged(); - return this; - } - /** - *
-       * Mandatory for TLAs and chef-deployed producers.
-       * 
- * - * string hostname = 3; - * @param value The bytes for hostname to set. - * @return This builder for chaining. - */ - public Builder setHostnameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - hostname_ = value; - onChanged(); - return this; - } - - private java.lang.Object containerTask_ = ""; - /** - *
-       * Mandatory on container environment.
-       * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return The containerTask. - */ - public java.lang.String getContainerTask() { - java.lang.Object ref = containerTask_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - containerTask_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-       * Mandatory on container environment.
-       * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return The bytes for containerTask. - */ - public com.google.protobuf.ByteString - getContainerTaskBytes() { - java.lang.Object ref = containerTask_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - containerTask_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-       * Mandatory on container environment.
-       * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @param value The containerTask to set. - * @return This builder for chaining. - */ - public Builder setContainerTask( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - containerTask_ = value; - onChanged(); - return this; - } - /** - *
-       * Mandatory on container environment.
-       * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @return This builder for chaining. - */ - public Builder clearContainerTask() { - - containerTask_ = getDefaultInstance().getContainerTask(); - onChanged(); - return this; - } - /** - *
-       * Mandatory on container environment.
-       * 
- * - * string container_task = 4 [(.Acme.Glup.json_mapping) = { ... } - * @param value The bytes for containerTask to set. - * @return This builder for chaining. - */ - public Builder setContainerTaskBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - containerTask_ = value; - onChanged(); - return this; - } - - private java.lang.Object containerApp_ = ""; - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return The containerApp. - */ - public java.lang.String getContainerApp() { - java.lang.Object ref = containerApp_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - containerApp_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return The bytes for containerApp. - */ - public com.google.protobuf.ByteString - getContainerAppBytes() { - java.lang.Object ref = containerApp_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - containerApp_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @param value The containerApp to set. - * @return This builder for chaining. - */ - public Builder setContainerApp( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - containerApp_ = value; - onChanged(); - return this; - } - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @return This builder for chaining. - */ - public Builder clearContainerApp() { - - containerApp_ = getDefaultInstance().getContainerApp(); - onChanged(); - return this; - } - /** - * string container_app = 5 [(.Acme.Glup.json_mapping) = { ... } - * @param value The bytes for containerApp to set. - * @return This builder for chaining. - */ - public Builder setContainerAppBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - containerApp_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.Origin) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.Origin) - private static final com.acme.glup.MetadataProto.Origin DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.Origin(); - } - - public static com.acme.glup.MetadataProto.Origin getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Origin parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Origin(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Origin getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ControlMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.ControlMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - * @return Whether the watermark field is set. - */ - boolean hasWatermark(); - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - * @return The watermark. - */ - com.acme.glup.MetadataProto.ControlMessage.Watermark getWatermark(); - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getWatermarkOrBuilder(); - } - /** - *
-   * For use by infrastructure teams. 
-   * 
- * - * Protobuf type {@code Acme.Glup.ControlMessage} - */ - public static final class ControlMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.ControlMessage) - ControlMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use ControlMessage.newBuilder() to construct. - private ControlMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ControlMessage() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ControlMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ControlMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder subBuilder = null; - if (watermark_ != null) { - subBuilder = watermark_.toBuilder(); - } - watermark_ = input.readMessage(com.acme.glup.MetadataProto.ControlMessage.Watermark.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(watermark_); - watermark_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ControlMessage.class, com.acme.glup.MetadataProto.ControlMessage.Builder.class); - } - - /** - * Protobuf enum {@code Acme.Glup.ControlMessage.Cluster} - */ - public enum Cluster - implements com.google.protobuf.ProtocolMessageEnum { - /** - * UNSUPPORTED_CLUSTER = 0; - */ - UNSUPPORTED_CLUSTER(0), - /** - * LOCAL = 2; - */ - LOCAL(2), - /** - * CENTRAL = 3; - */ - CENTRAL(3), - /** - * STREAM = 4; - */ - STREAM(4), - UNRECOGNIZED(-1), - ; - - /** - * UNSUPPORTED_CLUSTER = 0; - */ - public static final int UNSUPPORTED_CLUSTER_VALUE = 0; - /** - * LOCAL = 2; - */ - public static final int LOCAL_VALUE = 2; - /** - * CENTRAL = 3; - */ - public static final int CENTRAL_VALUE = 3; - /** - * STREAM = 4; - */ - public static final int STREAM_VALUE = 4; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static Cluster valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static Cluster forNumber(int value) { - switch (value) { - case 0: return UNSUPPORTED_CLUSTER; - case 2: return LOCAL; - case 3: return CENTRAL; - case 4: return STREAM; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - Cluster> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public Cluster findValueByNumber(int number) { - return Cluster.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return com.acme.glup.MetadataProto.ControlMessage.getDescriptor().getEnumTypes().get(0); - } - - private static final Cluster[] VALUES = values(); - - public static Cluster valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private Cluster(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:Acme.Glup.ControlMessage.Cluster) - } - - public interface WatermarkOriginOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.ControlMessage.WatermarkOrigin) - com.google.protobuf.MessageOrBuilder { - - /** - * string kafka_topic = 1; - * @return The kafkaTopic. - */ - java.lang.String getKafkaTopic(); - /** - * string kafka_topic = 1; - * @return The bytes for kafkaTopic. - */ - com.google.protobuf.ByteString - getKafkaTopicBytes(); - - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return The enum numeric value on the wire for datacenter. - */ - int getDatacenterValue(); - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return The datacenter. - */ - com.acme.glup.MetadataProto.DataCenter getDatacenter(); - - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return The enum numeric value on the wire for cluster. - */ - int getClusterValue(); - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return The cluster. - */ - com.acme.glup.MetadataProto.ControlMessage.Cluster getCluster(); - } - /** - * Protobuf type {@code Acme.Glup.ControlMessage.WatermarkOrigin} - */ - public static final class WatermarkOrigin extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.ControlMessage.WatermarkOrigin) - WatermarkOriginOrBuilder { - private static final long serialVersionUID = 0L; - // Use WatermarkOrigin.newBuilder() to construct. - private WatermarkOrigin(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private WatermarkOrigin() { - kafkaTopic_ = ""; - datacenter_ = 0; - cluster_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new WatermarkOrigin(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private WatermarkOrigin( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - kafkaTopic_ = s; - break; - } - case 16: { - int rawValue = input.readEnum(); - - datacenter_ = rawValue; - break; - } - case 24: { - int rawValue = input.readEnum(); - - cluster_ = rawValue; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.class, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.Builder.class); - } - - public static final int KAFKA_TOPIC_FIELD_NUMBER = 1; - private volatile java.lang.Object kafkaTopic_; - /** - * string kafka_topic = 1; - * @return The kafkaTopic. - */ - @java.lang.Override - public java.lang.String getKafkaTopic() { - java.lang.Object ref = kafkaTopic_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - kafkaTopic_ = s; - return s; - } - } - /** - * string kafka_topic = 1; - * @return The bytes for kafkaTopic. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getKafkaTopicBytes() { - java.lang.Object ref = kafkaTopic_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - kafkaTopic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int DATACENTER_FIELD_NUMBER = 2; - private int datacenter_; - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return The enum numeric value on the wire for datacenter. - */ - @java.lang.Override public int getDatacenterValue() { - return datacenter_; - } - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return The datacenter. - */ - @java.lang.Override public com.acme.glup.MetadataProto.DataCenter getDatacenter() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(datacenter_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - - public static final int CLUSTER_FIELD_NUMBER = 3; - private int cluster_; - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return The enum numeric value on the wire for cluster. - */ - @java.lang.Override public int getClusterValue() { - return cluster_; - } - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return The cluster. - */ - @java.lang.Override public com.acme.glup.MetadataProto.ControlMessage.Cluster getCluster() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.ControlMessage.Cluster result = com.acme.glup.MetadataProto.ControlMessage.Cluster.valueOf(cluster_); - return result == null ? com.acme.glup.MetadataProto.ControlMessage.Cluster.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(kafkaTopic_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, kafkaTopic_); - } - if (datacenter_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - output.writeEnum(2, datacenter_); - } - if (cluster_ != com.acme.glup.MetadataProto.ControlMessage.Cluster.UNSUPPORTED_CLUSTER.getNumber()) { - output.writeEnum(3, cluster_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(kafkaTopic_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, kafkaTopic_); - } - if (datacenter_ != com.acme.glup.MetadataProto.DataCenter.UNSUPPORTED_DATACENTER.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, datacenter_); - } - if (cluster_ != com.acme.glup.MetadataProto.ControlMessage.Cluster.UNSUPPORTED_CLUSTER.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, cluster_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin other = (com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin) obj; - - if (!getKafkaTopic() - .equals(other.getKafkaTopic())) return false; - if (datacenter_ != other.datacenter_) return false; - if (cluster_ != other.cluster_) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + KAFKA_TOPIC_FIELD_NUMBER; - hash = (53 * hash) + getKafkaTopic().hashCode(); - hash = (37 * hash) + DATACENTER_FIELD_NUMBER; - hash = (53 * hash) + datacenter_; - hash = (37 * hash) + CLUSTER_FIELD_NUMBER; - hash = (53 * hash) + cluster_; - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.ControlMessage.WatermarkOrigin} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.ControlMessage.WatermarkOrigin) - com.acme.glup.MetadataProto.ControlMessage.WatermarkOriginOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.class, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - kafkaTopic_ = ""; - - datacenter_ = 0; - - cluster_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin build() { - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin buildPartial() { - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin result = new com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin(this); - result.kafkaTopic_ = kafkaTopic_; - result.datacenter_ = datacenter_; - result.cluster_ = cluster_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin) { - return mergeFrom((com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin other) { - if (other == com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin.getDefaultInstance()) return this; - if (!other.getKafkaTopic().isEmpty()) { - kafkaTopic_ = other.kafkaTopic_; - onChanged(); - } - if (other.datacenter_ != 0) { - setDatacenterValue(other.getDatacenterValue()); - } - if (other.cluster_ != 0) { - setClusterValue(other.getClusterValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object kafkaTopic_ = ""; - /** - * string kafka_topic = 1; - * @return The kafkaTopic. - */ - public java.lang.String getKafkaTopic() { - java.lang.Object ref = kafkaTopic_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - kafkaTopic_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string kafka_topic = 1; - * @return The bytes for kafkaTopic. - */ - public com.google.protobuf.ByteString - getKafkaTopicBytes() { - java.lang.Object ref = kafkaTopic_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - kafkaTopic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string kafka_topic = 1; - * @param value The kafkaTopic to set. - * @return This builder for chaining. - */ - public Builder setKafkaTopic( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - kafkaTopic_ = value; - onChanged(); - return this; - } - /** - * string kafka_topic = 1; - * @return This builder for chaining. - */ - public Builder clearKafkaTopic() { - - kafkaTopic_ = getDefaultInstance().getKafkaTopic(); - onChanged(); - return this; - } - /** - * string kafka_topic = 1; - * @param value The bytes for kafkaTopic to set. - * @return This builder for chaining. - */ - public Builder setKafkaTopicBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - kafkaTopic_ = value; - onChanged(); - return this; - } - - private int datacenter_ = 0; - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return The enum numeric value on the wire for datacenter. - */ - @java.lang.Override public int getDatacenterValue() { - return datacenter_; - } - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @param value The enum numeric value on the wire for datacenter to set. - * @return This builder for chaining. - */ - public Builder setDatacenterValue(int value) { - - datacenter_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return The datacenter. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.DataCenter getDatacenter() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.DataCenter result = com.acme.glup.MetadataProto.DataCenter.valueOf(datacenter_); - return result == null ? com.acme.glup.MetadataProto.DataCenter.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @param value The datacenter to set. - * @return This builder for chaining. - */ - public Builder setDatacenter(com.acme.glup.MetadataProto.DataCenter value) { - if (value == null) { - throw new NullPointerException(); - } - - datacenter_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.DataCenter datacenter = 2; - * @return This builder for chaining. - */ - public Builder clearDatacenter() { - - datacenter_ = 0; - onChanged(); - return this; - } - - private int cluster_ = 0; - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return The enum numeric value on the wire for cluster. - */ - @java.lang.Override public int getClusterValue() { - return cluster_; - } - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @param value The enum numeric value on the wire for cluster to set. - * @return This builder for chaining. - */ - public Builder setClusterValue(int value) { - - cluster_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return The cluster. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Cluster getCluster() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.ControlMessage.Cluster result = com.acme.glup.MetadataProto.ControlMessage.Cluster.valueOf(cluster_); - return result == null ? com.acme.glup.MetadataProto.ControlMessage.Cluster.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @param value The cluster to set. - * @return This builder for chaining. - */ - public Builder setCluster(com.acme.glup.MetadataProto.ControlMessage.Cluster value) { - if (value == null) { - throw new NullPointerException(); - } - - cluster_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.ControlMessage.Cluster cluster = 3; - * @return This builder for chaining. - */ - public Builder clearCluster() { - - cluster_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.ControlMessage.WatermarkOrigin) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.ControlMessage.WatermarkOrigin) - private static final com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin(); - } - - public static com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public WatermarkOrigin parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new WatermarkOrigin(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrigin getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface WatermarkOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.ControlMessage.Watermark) - com.google.protobuf.MessageOrBuilder { - - /** - *
-       * backward compatibility watermark type
-       * 
- * - * string type = 1; - * @return The type. - */ - java.lang.String getType(); - /** - *
-       * backward compatibility watermark type
-       * 
- * - * string type = 1; - * @return The bytes for type. - */ - com.google.protobuf.ByteString - getTypeBytes(); - - /** - *
-       * hostname of sender
-       * 
- * - * string hostname = 2; - * @return The hostname. - */ - java.lang.String getHostname(); - /** - *
-       * hostname of sender
-       * 
- * - * string hostname = 2; - * @return The bytes for hostname. - */ - com.google.protobuf.ByteString - getHostnameBytes(); - - /** - *
-       * topic concerned
-       * 
- * - * string kafka_topic = 3; - * @return The kafkaTopic. - */ - java.lang.String getKafkaTopic(); - /** - *
-       * topic concerned
-       * 
- * - * string kafka_topic = 3; - * @return The bytes for kafkaTopic. - */ - com.google.protobuf.ByteString - getKafkaTopicBytes(); - - /** - *
-       * partition id
-       * 
- * - * int32 partition = 4; - * @return The partition. - */ - int getPartition(); - - /** - *
-       * partition count
-       * 
- * - * int32 partition_count = 5; - * @return The partitionCount. - */ - int getPartitionCount(); - - /** - *
-       * process uuid of sender
-       * 
- * - * bytes process_uuid = 6; - * @return The processUuid. - */ - com.google.protobuf.ByteString getProcessUuid(); - - /** - *
-       * region of sender
-       * 
- * - * string region = 7; - * @return The region. - */ - java.lang.String getRegion(); - /** - *
-       * region of sender
-       * 
- * - * string region = 7; - * @return The bytes for region. - */ - com.google.protobuf.ByteString - getRegionBytes(); - - /** - *
-       * timestamp in second
-       * 
- * - * int32 timestamp_seconds = 8 [(.Acme.Glup.json) = { ... } - * @return The timestampSeconds. - */ - int getTimestampSeconds(); - - /** - *
-       * cluster
-       * 
- * - * string cluster = 9; - * @return The cluster. - */ - java.lang.String getCluster(); - /** - *
-       * cluster
-       * 
- * - * string cluster = 9; - * @return The bytes for cluster. - */ - com.google.protobuf.ByteString - getClusterBytes(); - - /** - *
-       * prod or preprod
-       * 
- * - * string environment = 10; - * @return The environment. - */ - java.lang.String getEnvironment(); - /** - *
-       * prod or preprod
-       * 
- * - * string environment = 10; - * @return The bytes for environment. - */ - com.google.protobuf.ByteString - getEnvironmentBytes(); - - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - int getSetFieldsCount(); - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - boolean containsSetFields( - int key); - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getSetFields(); - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - java.util.Map - getSetFieldsMap(); - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrDefault( - int key, - boolean defaultValue); - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrThrow( - int key); - } - /** - * Protobuf type {@code Acme.Glup.ControlMessage.Watermark} - */ - public static final class Watermark extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.ControlMessage.Watermark) - WatermarkOrBuilder { - private static final long serialVersionUID = 0L; - // Use Watermark.newBuilder() to construct. - private Watermark(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Watermark() { - type_ = ""; - hostname_ = ""; - kafkaTopic_ = ""; - processUuid_ = com.google.protobuf.ByteString.EMPTY; - region_ = ""; - cluster_ = ""; - environment_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Watermark(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Watermark( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - type_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - - hostname_ = s; - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - - kafkaTopic_ = s; - break; - } - case 32: { - - partition_ = input.readInt32(); - break; - } - case 40: { - - partitionCount_ = input.readInt32(); - break; - } - case 50: { - - processUuid_ = input.readBytes(); - break; - } - case 58: { - java.lang.String s = input.readStringRequireUtf8(); - - region_ = s; - break; - } - case 64: { - - timestampSeconds_ = input.readInt32(); - break; - } - case 74: { - java.lang.String s = input.readStringRequireUtf8(); - - cluster_ = s; - break; - } - case 82: { - java.lang.String s = input.readStringRequireUtf8(); - - environment_ = s; - break; - } - case 400082: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000001; - } - com.google.protobuf.MapEntry - setFields__ = input.readMessage( - SetFieldsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - setFields_.getMutableMap().put( - setFields__.getKey(), setFields__.getValue()); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_Watermark_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_Watermark_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ControlMessage.Watermark.class, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder.class); - } - - public static final int TYPE_FIELD_NUMBER = 1; - private volatile java.lang.Object type_; - /** - *
-       * backward compatibility watermark type
-       * 
- * - * string type = 1; - * @return The type. - */ - @java.lang.Override - public java.lang.String getType() { - java.lang.Object ref = type_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - type_ = s; - return s; - } - } - /** - *
-       * backward compatibility watermark type
-       * 
- * - * string type = 1; - * @return The bytes for type. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTypeBytes() { - java.lang.Object ref = type_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - type_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int HOSTNAME_FIELD_NUMBER = 2; - private volatile java.lang.Object hostname_; - /** - *
-       * hostname of sender
-       * 
- * - * string hostname = 2; - * @return The hostname. - */ - @java.lang.Override - public java.lang.String getHostname() { - java.lang.Object ref = hostname_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - hostname_ = s; - return s; - } - } - /** - *
-       * hostname of sender
-       * 
- * - * string hostname = 2; - * @return The bytes for hostname. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getHostnameBytes() { - java.lang.Object ref = hostname_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - hostname_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int KAFKA_TOPIC_FIELD_NUMBER = 3; - private volatile java.lang.Object kafkaTopic_; - /** - *
-       * topic concerned
-       * 
- * - * string kafka_topic = 3; - * @return The kafkaTopic. - */ - @java.lang.Override - public java.lang.String getKafkaTopic() { - java.lang.Object ref = kafkaTopic_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - kafkaTopic_ = s; - return s; - } - } - /** - *
-       * topic concerned
-       * 
- * - * string kafka_topic = 3; - * @return The bytes for kafkaTopic. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getKafkaTopicBytes() { - java.lang.Object ref = kafkaTopic_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - kafkaTopic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PARTITION_FIELD_NUMBER = 4; - private int partition_; - /** - *
-       * partition id
-       * 
- * - * int32 partition = 4; - * @return The partition. - */ - @java.lang.Override - public int getPartition() { - return partition_; - } - - public static final int PARTITION_COUNT_FIELD_NUMBER = 5; - private int partitionCount_; - /** - *
-       * partition count
-       * 
- * - * int32 partition_count = 5; - * @return The partitionCount. - */ - @java.lang.Override - public int getPartitionCount() { - return partitionCount_; - } - - public static final int PROCESS_UUID_FIELD_NUMBER = 6; - private com.google.protobuf.ByteString processUuid_; - /** - *
-       * process uuid of sender
-       * 
- * - * bytes process_uuid = 6; - * @return The processUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString getProcessUuid() { - return processUuid_; - } - - public static final int REGION_FIELD_NUMBER = 7; - private volatile java.lang.Object region_; - /** - *
-       * region of sender
-       * 
- * - * string region = 7; - * @return The region. - */ - @java.lang.Override - public java.lang.String getRegion() { - java.lang.Object ref = region_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - region_ = s; - return s; - } - } - /** - *
-       * region of sender
-       * 
- * - * string region = 7; - * @return The bytes for region. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRegionBytes() { - java.lang.Object ref = region_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - region_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int TIMESTAMP_SECONDS_FIELD_NUMBER = 8; - private int timestampSeconds_; - /** - *
-       * timestamp in second
-       * 
- * - * int32 timestamp_seconds = 8 [(.Acme.Glup.json) = { ... } - * @return The timestampSeconds. - */ - @java.lang.Override - public int getTimestampSeconds() { - return timestampSeconds_; - } - - public static final int CLUSTER_FIELD_NUMBER = 9; - private volatile java.lang.Object cluster_; - /** - *
-       * cluster
-       * 
- * - * string cluster = 9; - * @return The cluster. - */ - @java.lang.Override - public java.lang.String getCluster() { - java.lang.Object ref = cluster_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - cluster_ = s; - return s; - } - } - /** - *
-       * cluster
-       * 
- * - * string cluster = 9; - * @return The bytes for cluster. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getClusterBytes() { - java.lang.Object ref = cluster_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - cluster_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int ENVIRONMENT_FIELD_NUMBER = 10; - private volatile java.lang.Object environment_; - /** - *
-       * prod or preprod
-       * 
- * - * string environment = 10; - * @return The environment. - */ - @java.lang.Override - public java.lang.String getEnvironment() { - java.lang.Object ref = environment_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - environment_ = s; - return s; - } - } - /** - *
-       * prod or preprod
-       * 
- * - * string environment = 10; - * @return The bytes for environment. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getEnvironmentBytes() { - java.lang.Object ref = environment_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - environment_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SET_FIELDS_FIELD_NUMBER = 50010; - private static final class SetFieldsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.Integer, java.lang.Boolean> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_Watermark_SetFieldsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.INT32, - 0, - com.google.protobuf.WireFormat.FieldType.BOOL, - false); - } - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(type_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, type_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(hostname_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, hostname_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(kafkaTopic_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, kafkaTopic_); - } - if (partition_ != 0) { - output.writeInt32(4, partition_); - } - if (partitionCount_ != 0) { - output.writeInt32(5, partitionCount_); - } - if (!processUuid_.isEmpty()) { - output.writeBytes(6, processUuid_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(region_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 7, region_); - } - if (timestampSeconds_ != 0) { - output.writeInt32(8, timestampSeconds_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cluster_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 9, cluster_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(environment_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 10, environment_); - } - com.google.protobuf.GeneratedMessageV3 - .serializeIntegerMapTo( - output, - internalGetSetFields(), - SetFieldsDefaultEntryHolder.defaultEntry, - 50010); - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(type_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, type_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(hostname_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, hostname_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(kafkaTopic_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, kafkaTopic_); - } - if (partition_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(4, partition_); - } - if (partitionCount_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(5, partitionCount_); - } - if (!processUuid_.isEmpty()) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(6, processUuid_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(region_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, region_); - } - if (timestampSeconds_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(8, timestampSeconds_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cluster_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, cluster_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(environment_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, environment_); - } - for (java.util.Map.Entry entry - : internalGetSetFields().getMap().entrySet()) { - com.google.protobuf.MapEntry - setFields__ = SetFieldsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(50010, setFields__); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.ControlMessage.Watermark)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.ControlMessage.Watermark other = (com.acme.glup.MetadataProto.ControlMessage.Watermark) obj; - - if (!getType() - .equals(other.getType())) return false; - if (!getHostname() - .equals(other.getHostname())) return false; - if (!getKafkaTopic() - .equals(other.getKafkaTopic())) return false; - if (getPartition() - != other.getPartition()) return false; - if (getPartitionCount() - != other.getPartitionCount()) return false; - if (!getProcessUuid() - .equals(other.getProcessUuid())) return false; - if (!getRegion() - .equals(other.getRegion())) return false; - if (getTimestampSeconds() - != other.getTimestampSeconds()) return false; - if (!getCluster() - .equals(other.getCluster())) return false; - if (!getEnvironment() - .equals(other.getEnvironment())) return false; - if (!internalGetSetFields().equals( - other.internalGetSetFields())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TYPE_FIELD_NUMBER; - hash = (53 * hash) + getType().hashCode(); - hash = (37 * hash) + HOSTNAME_FIELD_NUMBER; - hash = (53 * hash) + getHostname().hashCode(); - hash = (37 * hash) + KAFKA_TOPIC_FIELD_NUMBER; - hash = (53 * hash) + getKafkaTopic().hashCode(); - hash = (37 * hash) + PARTITION_FIELD_NUMBER; - hash = (53 * hash) + getPartition(); - hash = (37 * hash) + PARTITION_COUNT_FIELD_NUMBER; - hash = (53 * hash) + getPartitionCount(); - hash = (37 * hash) + PROCESS_UUID_FIELD_NUMBER; - hash = (53 * hash) + getProcessUuid().hashCode(); - hash = (37 * hash) + REGION_FIELD_NUMBER; - hash = (53 * hash) + getRegion().hashCode(); - hash = (37 * hash) + TIMESTAMP_SECONDS_FIELD_NUMBER; - hash = (53 * hash) + getTimestampSeconds(); - hash = (37 * hash) + CLUSTER_FIELD_NUMBER; - hash = (53 * hash) + getCluster().hashCode(); - hash = (37 * hash) + ENVIRONMENT_FIELD_NUMBER; - hash = (53 * hash) + getEnvironment().hashCode(); - if (!internalGetSetFields().getMap().isEmpty()) { - hash = (37 * hash) + SET_FIELDS_FIELD_NUMBER; - hash = (53 * hash) + internalGetSetFields().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage.Watermark parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.ControlMessage.Watermark prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code Acme.Glup.ControlMessage.Watermark} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.ControlMessage.Watermark) - com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_Watermark_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 50010: - return internalGetMutableSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_Watermark_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ControlMessage.Watermark.class, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.ControlMessage.Watermark.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - type_ = ""; - - hostname_ = ""; - - kafkaTopic_ = ""; - - partition_ = 0; - - partitionCount_ = 0; - - processUuid_ = com.google.protobuf.ByteString.EMPTY; - - region_ = ""; - - timestampSeconds_ = 0; - - cluster_ = ""; - - environment_ = ""; - - internalGetMutableSetFields().clear(); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_Watermark_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark build() { - com.acme.glup.MetadataProto.ControlMessage.Watermark result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark buildPartial() { - com.acme.glup.MetadataProto.ControlMessage.Watermark result = new com.acme.glup.MetadataProto.ControlMessage.Watermark(this); - int from_bitField0_ = bitField0_; - result.type_ = type_; - result.hostname_ = hostname_; - result.kafkaTopic_ = kafkaTopic_; - result.partition_ = partition_; - result.partitionCount_ = partitionCount_; - result.processUuid_ = processUuid_; - result.region_ = region_; - result.timestampSeconds_ = timestampSeconds_; - result.cluster_ = cluster_; - result.environment_ = environment_; - result.setFields_ = internalGetSetFields(); - result.setFields_.makeImmutable(); - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.ControlMessage.Watermark) { - return mergeFrom((com.acme.glup.MetadataProto.ControlMessage.Watermark)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.ControlMessage.Watermark other) { - if (other == com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance()) return this; - if (!other.getType().isEmpty()) { - type_ = other.type_; - onChanged(); - } - if (!other.getHostname().isEmpty()) { - hostname_ = other.hostname_; - onChanged(); - } - if (!other.getKafkaTopic().isEmpty()) { - kafkaTopic_ = other.kafkaTopic_; - onChanged(); - } - if (other.getPartition() != 0) { - setPartition(other.getPartition()); - } - if (other.getPartitionCount() != 0) { - setPartitionCount(other.getPartitionCount()); - } - if (other.getProcessUuid() != com.google.protobuf.ByteString.EMPTY) { - setProcessUuid(other.getProcessUuid()); - } - if (!other.getRegion().isEmpty()) { - region_ = other.region_; - onChanged(); - } - if (other.getTimestampSeconds() != 0) { - setTimestampSeconds(other.getTimestampSeconds()); - } - if (!other.getCluster().isEmpty()) { - cluster_ = other.cluster_; - onChanged(); - } - if (!other.getEnvironment().isEmpty()) { - environment_ = other.environment_; - onChanged(); - } - internalGetMutableSetFields().mergeFrom( - other.internalGetSetFields()); - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.ControlMessage.Watermark parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.ControlMessage.Watermark) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.lang.Object type_ = ""; - /** - *
-         * backward compatibility watermark type
-         * 
- * - * string type = 1; - * @return The type. - */ - public java.lang.String getType() { - java.lang.Object ref = type_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - type_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * backward compatibility watermark type
-         * 
- * - * string type = 1; - * @return The bytes for type. - */ - public com.google.protobuf.ByteString - getTypeBytes() { - java.lang.Object ref = type_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - type_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * backward compatibility watermark type
-         * 
- * - * string type = 1; - * @param value The type to set. - * @return This builder for chaining. - */ - public Builder setType( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - type_ = value; - onChanged(); - return this; - } - /** - *
-         * backward compatibility watermark type
-         * 
- * - * string type = 1; - * @return This builder for chaining. - */ - public Builder clearType() { - - type_ = getDefaultInstance().getType(); - onChanged(); - return this; - } - /** - *
-         * backward compatibility watermark type
-         * 
- * - * string type = 1; - * @param value The bytes for type to set. - * @return This builder for chaining. - */ - public Builder setTypeBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - type_ = value; - onChanged(); - return this; - } - - private java.lang.Object hostname_ = ""; - /** - *
-         * hostname of sender
-         * 
- * - * string hostname = 2; - * @return The hostname. - */ - public java.lang.String getHostname() { - java.lang.Object ref = hostname_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - hostname_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * hostname of sender
-         * 
- * - * string hostname = 2; - * @return The bytes for hostname. - */ - public com.google.protobuf.ByteString - getHostnameBytes() { - java.lang.Object ref = hostname_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - hostname_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * hostname of sender
-         * 
- * - * string hostname = 2; - * @param value The hostname to set. - * @return This builder for chaining. - */ - public Builder setHostname( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - hostname_ = value; - onChanged(); - return this; - } - /** - *
-         * hostname of sender
-         * 
- * - * string hostname = 2; - * @return This builder for chaining. - */ - public Builder clearHostname() { - - hostname_ = getDefaultInstance().getHostname(); - onChanged(); - return this; - } - /** - *
-         * hostname of sender
-         * 
- * - * string hostname = 2; - * @param value The bytes for hostname to set. - * @return This builder for chaining. - */ - public Builder setHostnameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - hostname_ = value; - onChanged(); - return this; - } - - private java.lang.Object kafkaTopic_ = ""; - /** - *
-         * topic concerned
-         * 
- * - * string kafka_topic = 3; - * @return The kafkaTopic. - */ - public java.lang.String getKafkaTopic() { - java.lang.Object ref = kafkaTopic_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - kafkaTopic_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * topic concerned
-         * 
- * - * string kafka_topic = 3; - * @return The bytes for kafkaTopic. - */ - public com.google.protobuf.ByteString - getKafkaTopicBytes() { - java.lang.Object ref = kafkaTopic_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - kafkaTopic_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * topic concerned
-         * 
- * - * string kafka_topic = 3; - * @param value The kafkaTopic to set. - * @return This builder for chaining. - */ - public Builder setKafkaTopic( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - kafkaTopic_ = value; - onChanged(); - return this; - } - /** - *
-         * topic concerned
-         * 
- * - * string kafka_topic = 3; - * @return This builder for chaining. - */ - public Builder clearKafkaTopic() { - - kafkaTopic_ = getDefaultInstance().getKafkaTopic(); - onChanged(); - return this; - } - /** - *
-         * topic concerned
-         * 
- * - * string kafka_topic = 3; - * @param value The bytes for kafkaTopic to set. - * @return This builder for chaining. - */ - public Builder setKafkaTopicBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - kafkaTopic_ = value; - onChanged(); - return this; - } - - private int partition_ ; - /** - *
-         * partition id
-         * 
- * - * int32 partition = 4; - * @return The partition. - */ - @java.lang.Override - public int getPartition() { - return partition_; - } - /** - *
-         * partition id
-         * 
- * - * int32 partition = 4; - * @param value The partition to set. - * @return This builder for chaining. - */ - public Builder setPartition(int value) { - - partition_ = value; - onChanged(); - return this; - } - /** - *
-         * partition id
-         * 
- * - * int32 partition = 4; - * @return This builder for chaining. - */ - public Builder clearPartition() { - - partition_ = 0; - onChanged(); - return this; - } - - private int partitionCount_ ; - /** - *
-         * partition count
-         * 
- * - * int32 partition_count = 5; - * @return The partitionCount. - */ - @java.lang.Override - public int getPartitionCount() { - return partitionCount_; - } - /** - *
-         * partition count
-         * 
- * - * int32 partition_count = 5; - * @param value The partitionCount to set. - * @return This builder for chaining. - */ - public Builder setPartitionCount(int value) { - - partitionCount_ = value; - onChanged(); - return this; - } - /** - *
-         * partition count
-         * 
- * - * int32 partition_count = 5; - * @return This builder for chaining. - */ - public Builder clearPartitionCount() { - - partitionCount_ = 0; - onChanged(); - return this; - } - - private com.google.protobuf.ByteString processUuid_ = com.google.protobuf.ByteString.EMPTY; - /** - *
-         * process uuid of sender
-         * 
- * - * bytes process_uuid = 6; - * @return The processUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString getProcessUuid() { - return processUuid_; - } - /** - *
-         * process uuid of sender
-         * 
- * - * bytes process_uuid = 6; - * @param value The processUuid to set. - * @return This builder for chaining. - */ - public Builder setProcessUuid(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - - processUuid_ = value; - onChanged(); - return this; - } - /** - *
-         * process uuid of sender
-         * 
- * - * bytes process_uuid = 6; - * @return This builder for chaining. - */ - public Builder clearProcessUuid() { - - processUuid_ = getDefaultInstance().getProcessUuid(); - onChanged(); - return this; - } - - private java.lang.Object region_ = ""; - /** - *
-         * region of sender
-         * 
- * - * string region = 7; - * @return The region. - */ - public java.lang.String getRegion() { - java.lang.Object ref = region_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - region_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * region of sender
-         * 
- * - * string region = 7; - * @return The bytes for region. - */ - public com.google.protobuf.ByteString - getRegionBytes() { - java.lang.Object ref = region_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - region_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * region of sender
-         * 
- * - * string region = 7; - * @param value The region to set. - * @return This builder for chaining. - */ - public Builder setRegion( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - region_ = value; - onChanged(); - return this; - } - /** - *
-         * region of sender
-         * 
- * - * string region = 7; - * @return This builder for chaining. - */ - public Builder clearRegion() { - - region_ = getDefaultInstance().getRegion(); - onChanged(); - return this; - } - /** - *
-         * region of sender
-         * 
- * - * string region = 7; - * @param value The bytes for region to set. - * @return This builder for chaining. - */ - public Builder setRegionBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - region_ = value; - onChanged(); - return this; - } - - private int timestampSeconds_ ; - /** - *
-         * timestamp in second
-         * 
- * - * int32 timestamp_seconds = 8 [(.Acme.Glup.json) = { ... } - * @return The timestampSeconds. - */ - @java.lang.Override - public int getTimestampSeconds() { - return timestampSeconds_; - } - /** - *
-         * timestamp in second
-         * 
- * - * int32 timestamp_seconds = 8 [(.Acme.Glup.json) = { ... } - * @param value The timestampSeconds to set. - * @return This builder for chaining. - */ - public Builder setTimestampSeconds(int value) { - - timestampSeconds_ = value; - onChanged(); - return this; - } - /** - *
-         * timestamp in second
-         * 
- * - * int32 timestamp_seconds = 8 [(.Acme.Glup.json) = { ... } - * @return This builder for chaining. - */ - public Builder clearTimestampSeconds() { - - timestampSeconds_ = 0; - onChanged(); - return this; - } - - private java.lang.Object cluster_ = ""; - /** - *
-         * cluster
-         * 
- * - * string cluster = 9; - * @return The cluster. - */ - public java.lang.String getCluster() { - java.lang.Object ref = cluster_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - cluster_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * cluster
-         * 
- * - * string cluster = 9; - * @return The bytes for cluster. - */ - public com.google.protobuf.ByteString - getClusterBytes() { - java.lang.Object ref = cluster_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - cluster_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * cluster
-         * 
- * - * string cluster = 9; - * @param value The cluster to set. - * @return This builder for chaining. - */ - public Builder setCluster( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - cluster_ = value; - onChanged(); - return this; - } - /** - *
-         * cluster
-         * 
- * - * string cluster = 9; - * @return This builder for chaining. - */ - public Builder clearCluster() { - - cluster_ = getDefaultInstance().getCluster(); - onChanged(); - return this; - } - /** - *
-         * cluster
-         * 
- * - * string cluster = 9; - * @param value The bytes for cluster to set. - * @return This builder for chaining. - */ - public Builder setClusterBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - cluster_ = value; - onChanged(); - return this; - } - - private java.lang.Object environment_ = ""; - /** - *
-         * prod or preprod
-         * 
- * - * string environment = 10; - * @return The environment. - */ - public java.lang.String getEnvironment() { - java.lang.Object ref = environment_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - environment_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
-         * prod or preprod
-         * 
- * - * string environment = 10; - * @return The bytes for environment. - */ - public com.google.protobuf.ByteString - getEnvironmentBytes() { - java.lang.Object ref = environment_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - environment_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
-         * prod or preprod
-         * 
- * - * string environment = 10; - * @param value The environment to set. - * @return This builder for chaining. - */ - public Builder setEnvironment( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - environment_ = value; - onChanged(); - return this; - } - /** - *
-         * prod or preprod
-         * 
- * - * string environment = 10; - * @return This builder for chaining. - */ - public Builder clearEnvironment() { - - environment_ = getDefaultInstance().getEnvironment(); - onChanged(); - return this; - } - /** - *
-         * prod or preprod
-         * 
- * - * string environment = 10; - * @param value The bytes for environment to set. - * @return This builder for chaining. - */ - public Builder setEnvironmentBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - environment_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - private com.google.protobuf.MapField - internalGetMutableSetFields() { - onChanged();; - if (setFields_ == null) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - if (!setFields_.isMutable()) { - setFields_ = setFields_.copy(); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearSetFields() { - internalGetMutableSetFields().getMutableMap() - .clear(); - return this; - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder removeSetFields( - int key) { - - internalGetMutableSetFields().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableSetFields() { - return internalGetMutableSetFields().getMutableMap(); - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - public Builder putSetFields( - int key, - boolean value) { - - - internalGetMutableSetFields().getMutableMap() - .put(key, value); - return this; - } - /** - *
-         * nullable map to track set fields
-         * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder putAllSetFields( - java.util.Map values) { - internalGetMutableSetFields().getMutableMap() - .putAll(values); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.ControlMessage.Watermark) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.ControlMessage.Watermark) - private static final com.acme.glup.MetadataProto.ControlMessage.Watermark DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.ControlMessage.Watermark(); - } - - public static com.acme.glup.MetadataProto.ControlMessage.Watermark getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Watermark parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Watermark(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int WATERMARK_FIELD_NUMBER = 1; - private com.acme.glup.MetadataProto.ControlMessage.Watermark watermark_; - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - * @return Whether the watermark field is set. - */ - @java.lang.Override - public boolean hasWatermark() { - return watermark_ != null; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - * @return The watermark. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.Watermark getWatermark() { - return watermark_ == null ? com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance() : watermark_; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getWatermarkOrBuilder() { - return getWatermark(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (watermark_ != null) { - output.writeMessage(1, getWatermark()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (watermark_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getWatermark()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.ControlMessage)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.ControlMessage other = (com.acme.glup.MetadataProto.ControlMessage) obj; - - if (hasWatermark() != other.hasWatermark()) return false; - if (hasWatermark()) { - if (!getWatermark() - .equals(other.getWatermark())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasWatermark()) { - hash = (37 * hash) + WATERMARK_FIELD_NUMBER; - hash = (53 * hash) + getWatermark().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.ControlMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.ControlMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * For use by infrastructure teams. 
-     * 
- * - * Protobuf type {@code Acme.Glup.ControlMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.ControlMessage) - com.acme.glup.MetadataProto.ControlMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.ControlMessage.class, com.acme.glup.MetadataProto.ControlMessage.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.ControlMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (watermarkBuilder_ == null) { - watermark_ = null; - } else { - watermark_ = null; - watermarkBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_ControlMessage_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.ControlMessage.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage build() { - com.acme.glup.MetadataProto.ControlMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage buildPartial() { - com.acme.glup.MetadataProto.ControlMessage result = new com.acme.glup.MetadataProto.ControlMessage(this); - if (watermarkBuilder_ == null) { - result.watermark_ = watermark_; - } else { - result.watermark_ = watermarkBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.ControlMessage) { - return mergeFrom((com.acme.glup.MetadataProto.ControlMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.ControlMessage other) { - if (other == com.acme.glup.MetadataProto.ControlMessage.getDefaultInstance()) return this; - if (other.hasWatermark()) { - mergeWatermark(other.getWatermark()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.ControlMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.ControlMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private com.acme.glup.MetadataProto.ControlMessage.Watermark watermark_; - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> watermarkBuilder_; - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - * @return Whether the watermark field is set. - */ - public boolean hasWatermark() { - return watermarkBuilder_ != null || watermark_ != null; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - * @return The watermark. - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark getWatermark() { - if (watermarkBuilder_ == null) { - return watermark_ == null ? com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance() : watermark_; - } else { - return watermarkBuilder_.getMessage(); - } - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - public Builder setWatermark(com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (watermarkBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - watermark_ = value; - onChanged(); - } else { - watermarkBuilder_.setMessage(value); - } - - return this; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - public Builder setWatermark( - com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder builderForValue) { - if (watermarkBuilder_ == null) { - watermark_ = builderForValue.build(); - onChanged(); - } else { - watermarkBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - public Builder mergeWatermark(com.acme.glup.MetadataProto.ControlMessage.Watermark value) { - if (watermarkBuilder_ == null) { - if (watermark_ != null) { - watermark_ = - com.acme.glup.MetadataProto.ControlMessage.Watermark.newBuilder(watermark_).mergeFrom(value).buildPartial(); - } else { - watermark_ = value; - } - onChanged(); - } else { - watermarkBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - public Builder clearWatermark() { - if (watermarkBuilder_ == null) { - watermark_ = null; - onChanged(); - } else { - watermark_ = null; - watermarkBuilder_ = null; - } - - return this; - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - public com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder getWatermarkBuilder() { - - onChanged(); - return getWatermarkFieldBuilder().getBuilder(); - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - public com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder getWatermarkOrBuilder() { - if (watermarkBuilder_ != null) { - return watermarkBuilder_.getMessageOrBuilder(); - } else { - return watermark_ == null ? - com.acme.glup.MetadataProto.ControlMessage.Watermark.getDefaultInstance() : watermark_; - } - } - /** - * .Acme.Glup.ControlMessage.Watermark watermark = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder> - getWatermarkFieldBuilder() { - if (watermarkBuilder_ == null) { - watermarkBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.acme.glup.MetadataProto.ControlMessage.Watermark, com.acme.glup.MetadataProto.ControlMessage.Watermark.Builder, com.acme.glup.MetadataProto.ControlMessage.WatermarkOrBuilder>( - getWatermark(), - getParentForChildren(), - isClean()); - watermark_ = null; - } - return watermarkBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.ControlMessage) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.ControlMessage) - private static final com.acme.glup.MetadataProto.ControlMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.ControlMessage(); - } - - public static com.acme.glup.MetadataProto.ControlMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ControlMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ControlMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.ControlMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface PartitionOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.Partition) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * Unix timestamp in seconds
-     * 
- * - * uint64 timestamp_seconds = 1 [(.Acme.Glup.json_mapping) = { ... } - * @return The timestampSeconds. - */ - long getTimestampSeconds(); - - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The enum numeric value on the wire for hostPlatform. - */ - int getHostPlatformValue(); - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The hostPlatform. - */ - com.acme.glup.MetadataProto.Platform getHostPlatform(); - - /** - *
-     * Other partition keys... 
-     * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return The enum numeric value on the wire for eventType. - */ - int getEventTypeValue(); - /** - *
-     * Other partition keys... 
-     * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return The eventType. - */ - com.acme.glup.MetadataProto.EventType getEventType(); - } - /** - *
-   * Describes where messages should go on HDFS.
-   * This information is carried by all glup message.
-   * 
- * - * Protobuf type {@code Acme.Glup.Partition} - */ - public static final class Partition extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.Partition) - PartitionOrBuilder { - private static final long serialVersionUID = 0L; - // Use Partition.newBuilder() to construct. - private Partition(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Partition() { - hostPlatform_ = 0; - eventType_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Partition(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Partition( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - timestampSeconds_ = input.readUInt64(); - break; - } - case 16: { - int rawValue = input.readEnum(); - - hostPlatform_ = rawValue; - break; - } - case 24: { - int rawValue = input.readEnum(); - - eventType_ = rawValue; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Partition_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Partition_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Partition.class, com.acme.glup.MetadataProto.Partition.Builder.class); - } - - public static final int TIMESTAMP_SECONDS_FIELD_NUMBER = 1; - private long timestampSeconds_; - /** - *
-     * Unix timestamp in seconds
-     * 
- * - * uint64 timestamp_seconds = 1 [(.Acme.Glup.json_mapping) = { ... } - * @return The timestampSeconds. - */ - @java.lang.Override - public long getTimestampSeconds() { - return timestampSeconds_; - } - - public static final int HOST_PLATFORM_FIELD_NUMBER = 2; - private int hostPlatform_; - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The enum numeric value on the wire for hostPlatform. - */ - @java.lang.Override public int getHostPlatformValue() { - return hostPlatform_; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The hostPlatform. - */ - @java.lang.Override public com.acme.glup.MetadataProto.Platform getHostPlatform() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(hostPlatform_); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - - public static final int EVENT_TYPE_FIELD_NUMBER = 3; - private int eventType_; - /** - *
-     * Other partition keys... 
-     * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return The enum numeric value on the wire for eventType. - */ - @java.lang.Override public int getEventTypeValue() { - return eventType_; - } - /** - *
-     * Other partition keys... 
-     * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return The eventType. - */ - @java.lang.Override public com.acme.glup.MetadataProto.EventType getEventType() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.EventType result = com.acme.glup.MetadataProto.EventType.valueOf(eventType_); - return result == null ? com.acme.glup.MetadataProto.EventType.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (timestampSeconds_ != 0L) { - output.writeUInt64(1, timestampSeconds_); - } - if (hostPlatform_ != com.acme.glup.MetadataProto.Platform.UNSUPPORTED_PLATFORM.getNumber()) { - output.writeEnum(2, hostPlatform_); - } - if (eventType_ != com.acme.glup.MetadataProto.EventType.UNSUPPORTED_EVENT_TYPE.getNumber()) { - output.writeEnum(3, eventType_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (timestampSeconds_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeUInt64Size(1, timestampSeconds_); - } - if (hostPlatform_ != com.acme.glup.MetadataProto.Platform.UNSUPPORTED_PLATFORM.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, hostPlatform_); - } - if (eventType_ != com.acme.glup.MetadataProto.EventType.UNSUPPORTED_EVENT_TYPE.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, eventType_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.Partition)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.Partition other = (com.acme.glup.MetadataProto.Partition) obj; - - if (getTimestampSeconds() - != other.getTimestampSeconds()) return false; - if (hostPlatform_ != other.hostPlatform_) return false; - if (eventType_ != other.eventType_) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TIMESTAMP_SECONDS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTimestampSeconds()); - hash = (37 * hash) + HOST_PLATFORM_FIELD_NUMBER; - hash = (53 * hash) + hostPlatform_; - hash = (37 * hash) + EVENT_TYPE_FIELD_NUMBER; - hash = (53 * hash) + eventType_; - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.Partition parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Partition parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Partition parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Partition parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Partition parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Partition parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.Partition prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Describes where messages should go on HDFS.
-     * This information is carried by all glup message.
-     * 
- * - * Protobuf type {@code Acme.Glup.Partition} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.Partition) - com.acme.glup.MetadataProto.PartitionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Partition_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Partition_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Partition.class, com.acme.glup.MetadataProto.Partition.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.Partition.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - timestampSeconds_ = 0L; - - hostPlatform_ = 0; - - eventType_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Partition_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Partition getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.Partition.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Partition build() { - com.acme.glup.MetadataProto.Partition result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Partition buildPartial() { - com.acme.glup.MetadataProto.Partition result = new com.acme.glup.MetadataProto.Partition(this); - result.timestampSeconds_ = timestampSeconds_; - result.hostPlatform_ = hostPlatform_; - result.eventType_ = eventType_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.Partition) { - return mergeFrom((com.acme.glup.MetadataProto.Partition)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.Partition other) { - if (other == com.acme.glup.MetadataProto.Partition.getDefaultInstance()) return this; - if (other.getTimestampSeconds() != 0L) { - setTimestampSeconds(other.getTimestampSeconds()); - } - if (other.hostPlatform_ != 0) { - setHostPlatformValue(other.getHostPlatformValue()); - } - if (other.eventType_ != 0) { - setEventTypeValue(other.getEventTypeValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.Partition parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.Partition) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private long timestampSeconds_ ; - /** - *
-       * Unix timestamp in seconds
-       * 
- * - * uint64 timestamp_seconds = 1 [(.Acme.Glup.json_mapping) = { ... } - * @return The timestampSeconds. - */ - @java.lang.Override - public long getTimestampSeconds() { - return timestampSeconds_; - } - /** - *
-       * Unix timestamp in seconds
-       * 
- * - * uint64 timestamp_seconds = 1 [(.Acme.Glup.json_mapping) = { ... } - * @param value The timestampSeconds to set. - * @return This builder for chaining. - */ - public Builder setTimestampSeconds(long value) { - - timestampSeconds_ = value; - onChanged(); - return this; - } - /** - *
-       * Unix timestamp in seconds
-       * 
- * - * uint64 timestamp_seconds = 1 [(.Acme.Glup.json_mapping) = { ... } - * @return This builder for chaining. - */ - public Builder clearTimestampSeconds() { - - timestampSeconds_ = 0L; - onChanged(); - return this; - } - - private int hostPlatform_ = 0; - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The enum numeric value on the wire for hostPlatform. - */ - @java.lang.Override public int getHostPlatformValue() { - return hostPlatform_; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @param value The enum numeric value on the wire for hostPlatform to set. - * @return This builder for chaining. - */ - public Builder setHostPlatformValue(int value) { - - hostPlatform_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The hostPlatform. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Platform getHostPlatform() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(hostPlatform_); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @param value The hostPlatform to set. - * @return This builder for chaining. - */ - public Builder setHostPlatform(com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - - hostPlatform_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @return This builder for chaining. - */ - public Builder clearHostPlatform() { - - hostPlatform_ = 0; - onChanged(); - return this; - } - - private int eventType_ = 0; - /** - *
-       * Other partition keys... 
-       * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return The enum numeric value on the wire for eventType. - */ - @java.lang.Override public int getEventTypeValue() { - return eventType_; - } - /** - *
-       * Other partition keys... 
-       * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @param value The enum numeric value on the wire for eventType to set. - * @return This builder for chaining. - */ - public Builder setEventTypeValue(int value) { - - eventType_ = value; - onChanged(); - return this; - } - /** - *
-       * Other partition keys... 
-       * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return The eventType. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.EventType getEventType() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.EventType result = com.acme.glup.MetadataProto.EventType.valueOf(eventType_); - return result == null ? com.acme.glup.MetadataProto.EventType.UNRECOGNIZED : result; - } - /** - *
-       * Other partition keys... 
-       * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @param value The eventType to set. - * @return This builder for chaining. - */ - public Builder setEventType(com.acme.glup.MetadataProto.EventType value) { - if (value == null) { - throw new NullPointerException(); - } - - eventType_ = value.getNumber(); - onChanged(); - return this; - } - /** - *
-       * Other partition keys... 
-       * 
- * - * .Acme.Glup.EventType event_type = 3 [(.Acme.Glup.json_mapping) = { ... } - * @return This builder for chaining. - */ - public Builder clearEventType() { - - eventType_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.Partition) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.Partition) - private static final com.acme.glup.MetadataProto.Partition DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.Partition(); - } - - public static com.acme.glup.MetadataProto.Partition getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Partition parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Partition(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Partition getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface HDFSPartitionOrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.HDFSPartition) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * Unix timestamp in seconds
-     * 
- * - * uint64 timestamp_seconds = 1; - * @return The timestampSeconds. - */ - long getTimestampSeconds(); - - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The enum numeric value on the wire for hostPlatform. - */ - int getHostPlatformValue(); - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The hostPlatform. - */ - com.acme.glup.MetadataProto.Platform getHostPlatform(); - - /** - * .Acme.Glup.EventType event_type = 3; - * @return The enum numeric value on the wire for eventType. - */ - int getEventTypeValue(); - /** - * .Acme.Glup.EventType event_type = 3; - * @return The eventType. - */ - com.acme.glup.MetadataProto.EventType getEventType(); - - /** - *
-     * Define the depth of a partition. This is used in order to distinguished partition
-     * membership within a parent partition:
-     * 2017-02-01/12/EU with depth 3 is a parent partition of 2017-02-01/12 with depth 2
-     * 
- * - * int32 depth = 4; - * @return The depth. - */ - int getDepth(); - } - /** - *
-   * Internaly used by datadiscovery framework to handlde
-   * datadiscovery path and datadisco filesystem
-   * 
- * - * Protobuf type {@code Acme.Glup.HDFSPartition} - */ - public static final class HDFSPartition extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.HDFSPartition) - HDFSPartitionOrBuilder { - private static final long serialVersionUID = 0L; - // Use HDFSPartition.newBuilder() to construct. - private HDFSPartition(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private HDFSPartition() { - hostPlatform_ = 0; - eventType_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new HDFSPartition(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private HDFSPartition( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - timestampSeconds_ = input.readUInt64(); - break; - } - case 16: { - int rawValue = input.readEnum(); - - hostPlatform_ = rawValue; - break; - } - case 24: { - int rawValue = input.readEnum(); - - eventType_ = rawValue; - break; - } - case 32: { - - depth_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSPartition_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSPartition_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSPartition.class, com.acme.glup.MetadataProto.HDFSPartition.Builder.class); - } - - public static final int TIMESTAMP_SECONDS_FIELD_NUMBER = 1; - private long timestampSeconds_; - /** - *
-     * Unix timestamp in seconds
-     * 
- * - * uint64 timestamp_seconds = 1; - * @return The timestampSeconds. - */ - @java.lang.Override - public long getTimestampSeconds() { - return timestampSeconds_; - } - - public static final int HOST_PLATFORM_FIELD_NUMBER = 2; - private int hostPlatform_; - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The enum numeric value on the wire for hostPlatform. - */ - @java.lang.Override public int getHostPlatformValue() { - return hostPlatform_; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The hostPlatform. - */ - @java.lang.Override public com.acme.glup.MetadataProto.Platform getHostPlatform() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(hostPlatform_); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - - public static final int EVENT_TYPE_FIELD_NUMBER = 3; - private int eventType_; - /** - * .Acme.Glup.EventType event_type = 3; - * @return The enum numeric value on the wire for eventType. - */ - @java.lang.Override public int getEventTypeValue() { - return eventType_; - } - /** - * .Acme.Glup.EventType event_type = 3; - * @return The eventType. - */ - @java.lang.Override public com.acme.glup.MetadataProto.EventType getEventType() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.EventType result = com.acme.glup.MetadataProto.EventType.valueOf(eventType_); - return result == null ? com.acme.glup.MetadataProto.EventType.UNRECOGNIZED : result; - } - - public static final int DEPTH_FIELD_NUMBER = 4; - private int depth_; - /** - *
-     * Define the depth of a partition. This is used in order to distinguished partition
-     * membership within a parent partition:
-     * 2017-02-01/12/EU with depth 3 is a parent partition of 2017-02-01/12 with depth 2
-     * 
- * - * int32 depth = 4; - * @return The depth. - */ - @java.lang.Override - public int getDepth() { - return depth_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (timestampSeconds_ != 0L) { - output.writeUInt64(1, timestampSeconds_); - } - if (hostPlatform_ != com.acme.glup.MetadataProto.Platform.UNSUPPORTED_PLATFORM.getNumber()) { - output.writeEnum(2, hostPlatform_); - } - if (eventType_ != com.acme.glup.MetadataProto.EventType.UNSUPPORTED_EVENT_TYPE.getNumber()) { - output.writeEnum(3, eventType_); - } - if (depth_ != 0) { - output.writeInt32(4, depth_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (timestampSeconds_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeUInt64Size(1, timestampSeconds_); - } - if (hostPlatform_ != com.acme.glup.MetadataProto.Platform.UNSUPPORTED_PLATFORM.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(2, hostPlatform_); - } - if (eventType_ != com.acme.glup.MetadataProto.EventType.UNSUPPORTED_EVENT_TYPE.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, eventType_); - } - if (depth_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(4, depth_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.HDFSPartition)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.HDFSPartition other = (com.acme.glup.MetadataProto.HDFSPartition) obj; - - if (getTimestampSeconds() - != other.getTimestampSeconds()) return false; - if (hostPlatform_ != other.hostPlatform_) return false; - if (eventType_ != other.eventType_) return false; - if (getDepth() - != other.getDepth()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TIMESTAMP_SECONDS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTimestampSeconds()); - hash = (37 * hash) + HOST_PLATFORM_FIELD_NUMBER; - hash = (53 * hash) + hostPlatform_; - hash = (37 * hash) + EVENT_TYPE_FIELD_NUMBER; - hash = (53 * hash) + eventType_; - hash = (37 * hash) + DEPTH_FIELD_NUMBER; - hash = (53 * hash) + getDepth(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.HDFSPartition parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.HDFSPartition prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Internaly used by datadiscovery framework to handlde
-     * datadiscovery path and datadisco filesystem
-     * 
- * - * Protobuf type {@code Acme.Glup.HDFSPartition} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.HDFSPartition) - com.acme.glup.MetadataProto.HDFSPartitionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSPartition_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSPartition_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.HDFSPartition.class, com.acme.glup.MetadataProto.HDFSPartition.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.HDFSPartition.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - timestampSeconds_ = 0L; - - hostPlatform_ = 0; - - eventType_ = 0; - - depth_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_HDFSPartition_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartition getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartition build() { - com.acme.glup.MetadataProto.HDFSPartition result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartition buildPartial() { - com.acme.glup.MetadataProto.HDFSPartition result = new com.acme.glup.MetadataProto.HDFSPartition(this); - result.timestampSeconds_ = timestampSeconds_; - result.hostPlatform_ = hostPlatform_; - result.eventType_ = eventType_; - result.depth_ = depth_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.HDFSPartition) { - return mergeFrom((com.acme.glup.MetadataProto.HDFSPartition)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.HDFSPartition other) { - if (other == com.acme.glup.MetadataProto.HDFSPartition.getDefaultInstance()) return this; - if (other.getTimestampSeconds() != 0L) { - setTimestampSeconds(other.getTimestampSeconds()); - } - if (other.hostPlatform_ != 0) { - setHostPlatformValue(other.getHostPlatformValue()); - } - if (other.eventType_ != 0) { - setEventTypeValue(other.getEventTypeValue()); - } - if (other.getDepth() != 0) { - setDepth(other.getDepth()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.HDFSPartition parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.HDFSPartition) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private long timestampSeconds_ ; - /** - *
-       * Unix timestamp in seconds
-       * 
- * - * uint64 timestamp_seconds = 1; - * @return The timestampSeconds. - */ - @java.lang.Override - public long getTimestampSeconds() { - return timestampSeconds_; - } - /** - *
-       * Unix timestamp in seconds
-       * 
- * - * uint64 timestamp_seconds = 1; - * @param value The timestampSeconds to set. - * @return This builder for chaining. - */ - public Builder setTimestampSeconds(long value) { - - timestampSeconds_ = value; - onChanged(); - return this; - } - /** - *
-       * Unix timestamp in seconds
-       * 
- * - * uint64 timestamp_seconds = 1; - * @return This builder for chaining. - */ - public Builder clearTimestampSeconds() { - - timestampSeconds_ = 0L; - onChanged(); - return this; - } - - private int hostPlatform_ = 0; - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The enum numeric value on the wire for hostPlatform. - */ - @java.lang.Override public int getHostPlatformValue() { - return hostPlatform_; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @param value The enum numeric value on the wire for hostPlatform to set. - * @return This builder for chaining. - */ - public Builder setHostPlatformValue(int value) { - - hostPlatform_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @return The hostPlatform. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.Platform getHostPlatform() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.Platform result = com.acme.glup.MetadataProto.Platform.valueOf(hostPlatform_); - return result == null ? com.acme.glup.MetadataProto.Platform.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @param value The hostPlatform to set. - * @return This builder for chaining. - */ - public Builder setHostPlatform(com.acme.glup.MetadataProto.Platform value) { - if (value == null) { - throw new NullPointerException(); - } - - hostPlatform_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.Platform host_platform = 2; - * @return This builder for chaining. - */ - public Builder clearHostPlatform() { - - hostPlatform_ = 0; - onChanged(); - return this; - } - - private int eventType_ = 0; - /** - * .Acme.Glup.EventType event_type = 3; - * @return The enum numeric value on the wire for eventType. - */ - @java.lang.Override public int getEventTypeValue() { - return eventType_; - } - /** - * .Acme.Glup.EventType event_type = 3; - * @param value The enum numeric value on the wire for eventType to set. - * @return This builder for chaining. - */ - public Builder setEventTypeValue(int value) { - - eventType_ = value; - onChanged(); - return this; - } - /** - * .Acme.Glup.EventType event_type = 3; - * @return The eventType. - */ - @java.lang.Override - public com.acme.glup.MetadataProto.EventType getEventType() { - @SuppressWarnings("deprecation") - com.acme.glup.MetadataProto.EventType result = com.acme.glup.MetadataProto.EventType.valueOf(eventType_); - return result == null ? com.acme.glup.MetadataProto.EventType.UNRECOGNIZED : result; - } - /** - * .Acme.Glup.EventType event_type = 3; - * @param value The eventType to set. - * @return This builder for chaining. - */ - public Builder setEventType(com.acme.glup.MetadataProto.EventType value) { - if (value == null) { - throw new NullPointerException(); - } - - eventType_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .Acme.Glup.EventType event_type = 3; - * @return This builder for chaining. - */ - public Builder clearEventType() { - - eventType_ = 0; - onChanged(); - return this; - } - - private int depth_ ; - /** - *
-       * Define the depth of a partition. This is used in order to distinguished partition
-       * membership within a parent partition:
-       * 2017-02-01/12/EU with depth 3 is a parent partition of 2017-02-01/12 with depth 2
-       * 
- * - * int32 depth = 4; - * @return The depth. - */ - @java.lang.Override - public int getDepth() { - return depth_; - } - /** - *
-       * Define the depth of a partition. This is used in order to distinguished partition
-       * membership within a parent partition:
-       * 2017-02-01/12/EU with depth 3 is a parent partition of 2017-02-01/12 with depth 2
-       * 
- * - * int32 depth = 4; - * @param value The depth to set. - * @return This builder for chaining. - */ - public Builder setDepth(int value) { - - depth_ = value; - onChanged(); - return this; - } - /** - *
-       * Define the depth of a partition. This is used in order to distinguished partition
-       * membership within a parent partition:
-       * 2017-02-01/12/EU with depth 3 is a parent partition of 2017-02-01/12 with depth 2
-       * 
- * - * int32 depth = 4; - * @return This builder for chaining. - */ - public Builder clearDepth() { - - depth_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.HDFSPartition) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.HDFSPartition) - private static final com.acme.glup.MetadataProto.HDFSPartition DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.HDFSPartition(); - } - - public static com.acme.glup.MetadataProto.HDFSPartition getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public HDFSPartition parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new HDFSPartition(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.HDFSPartition getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface Hash128OrBuilder extends - // @@protoc_insertion_point(interface_extends:Acme.Glup.Hash128) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * most significant bits
-     * 
- * - * fixed64 most_sig_bits = 1; - * @return The mostSigBits. - */ - long getMostSigBits(); - - /** - *
-     * least significant bits
-     * 
- * - * fixed64 least_sig_bits = 2; - * @return The leastSigBits. - */ - long getLeastSigBits(); - - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - int getSetFieldsCount(); - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - boolean containsSetFields( - int key); - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getSetFields(); - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - java.util.Map - getSetFieldsMap(); - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrDefault( - int key, - boolean defaultValue); - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - boolean getSetFieldsOrThrow( - int key); - } - /** - *
-   * 128bit hash to pass publisher information through the request URL  
-   * 
- * - * Protobuf type {@code Acme.Glup.Hash128} - */ - public static final class Hash128 extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Acme.Glup.Hash128) - Hash128OrBuilder { - private static final long serialVersionUID = 0L; - // Use Hash128.newBuilder() to construct. - private Hash128(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Hash128() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Hash128(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Hash128( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 9: { - - mostSigBits_ = input.readFixed64(); - break; - } - case 17: { - - leastSigBits_ = input.readFixed64(); - break; - } - case 400082: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000001; - } - com.google.protobuf.MapEntry - setFields__ = input.readMessage( - SetFieldsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - setFields_.getMutableMap().put( - setFields__.getKey(), setFields__.getValue()); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Hash128_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Hash128_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Hash128.class, com.acme.glup.MetadataProto.Hash128.Builder.class); - } - - public static final int MOST_SIG_BITS_FIELD_NUMBER = 1; - private long mostSigBits_; - /** - *
-     * most significant bits
-     * 
- * - * fixed64 most_sig_bits = 1; - * @return The mostSigBits. - */ - @java.lang.Override - public long getMostSigBits() { - return mostSigBits_; - } - - public static final int LEAST_SIG_BITS_FIELD_NUMBER = 2; - private long leastSigBits_; - /** - *
-     * least significant bits
-     * 
- * - * fixed64 least_sig_bits = 2; - * @return The leastSigBits. - */ - @java.lang.Override - public long getLeastSigBits() { - return leastSigBits_; - } - - public static final int SET_FIELDS_FIELD_NUMBER = 50010; - private static final class SetFieldsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.Integer, java.lang.Boolean> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - com.acme.glup.MetadataProto.internal_static_Acme_Glup_Hash128_SetFieldsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.INT32, - 0, - com.google.protobuf.WireFormat.FieldType.BOOL, - false); - } - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-     * nullable map to track set fields
-     * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (mostSigBits_ != 0L) { - output.writeFixed64(1, mostSigBits_); - } - if (leastSigBits_ != 0L) { - output.writeFixed64(2, leastSigBits_); - } - com.google.protobuf.GeneratedMessageV3 - .serializeIntegerMapTo( - output, - internalGetSetFields(), - SetFieldsDefaultEntryHolder.defaultEntry, - 50010); - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (mostSigBits_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeFixed64Size(1, mostSigBits_); - } - if (leastSigBits_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeFixed64Size(2, leastSigBits_); - } - for (java.util.Map.Entry entry - : internalGetSetFields().getMap().entrySet()) { - com.google.protobuf.MapEntry - setFields__ = SetFieldsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(50010, setFields__); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof com.acme.glup.MetadataProto.Hash128)) { - return super.equals(obj); - } - com.acme.glup.MetadataProto.Hash128 other = (com.acme.glup.MetadataProto.Hash128) obj; - - if (getMostSigBits() - != other.getMostSigBits()) return false; - if (getLeastSigBits() - != other.getLeastSigBits()) return false; - if (!internalGetSetFields().equals( - other.internalGetSetFields())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + MOST_SIG_BITS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getMostSigBits()); - hash = (37 * hash) + LEAST_SIG_BITS_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getLeastSigBits()); - if (!internalGetSetFields().getMap().isEmpty()) { - hash = (37 * hash) + SET_FIELDS_FIELD_NUMBER; - hash = (53 * hash) + internalGetSetFields().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Hash128 parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Hash128 parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static com.acme.glup.MetadataProto.Hash128 parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(com.acme.glup.MetadataProto.Hash128 prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * 128bit hash to pass publisher information through the request URL  
-     * 
- * - * Protobuf type {@code Acme.Glup.Hash128} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Acme.Glup.Hash128) - com.acme.glup.MetadataProto.Hash128OrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Hash128_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 50010: - return internalGetSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 50010: - return internalGetMutableSetFields(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Hash128_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.acme.glup.MetadataProto.Hash128.class, com.acme.glup.MetadataProto.Hash128.Builder.class); - } - - // Construct using com.acme.glup.MetadataProto.Hash128.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - mostSigBits_ = 0L; - - leastSigBits_ = 0L; - - internalGetMutableSetFields().clear(); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return com.acme.glup.MetadataProto.internal_static_Acme_Glup_Hash128_descriptor; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Hash128 getDefaultInstanceForType() { - return com.acme.glup.MetadataProto.Hash128.getDefaultInstance(); - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Hash128 build() { - com.acme.glup.MetadataProto.Hash128 result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Hash128 buildPartial() { - com.acme.glup.MetadataProto.Hash128 result = new com.acme.glup.MetadataProto.Hash128(this); - int from_bitField0_ = bitField0_; - result.mostSigBits_ = mostSigBits_; - result.leastSigBits_ = leastSigBits_; - result.setFields_ = internalGetSetFields(); - result.setFields_.makeImmutable(); - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.acme.glup.MetadataProto.Hash128) { - return mergeFrom((com.acme.glup.MetadataProto.Hash128)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.acme.glup.MetadataProto.Hash128 other) { - if (other == com.acme.glup.MetadataProto.Hash128.getDefaultInstance()) return this; - if (other.getMostSigBits() != 0L) { - setMostSigBits(other.getMostSigBits()); - } - if (other.getLeastSigBits() != 0L) { - setLeastSigBits(other.getLeastSigBits()); - } - internalGetMutableSetFields().mergeFrom( - other.internalGetSetFields()); - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - com.acme.glup.MetadataProto.Hash128 parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.acme.glup.MetadataProto.Hash128) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private long mostSigBits_ ; - /** - *
-       * most significant bits
-       * 
- * - * fixed64 most_sig_bits = 1; - * @return The mostSigBits. - */ - @java.lang.Override - public long getMostSigBits() { - return mostSigBits_; - } - /** - *
-       * most significant bits
-       * 
- * - * fixed64 most_sig_bits = 1; - * @param value The mostSigBits to set. - * @return This builder for chaining. - */ - public Builder setMostSigBits(long value) { - - mostSigBits_ = value; - onChanged(); - return this; - } - /** - *
-       * most significant bits
-       * 
- * - * fixed64 most_sig_bits = 1; - * @return This builder for chaining. - */ - public Builder clearMostSigBits() { - - mostSigBits_ = 0L; - onChanged(); - return this; - } - - private long leastSigBits_ ; - /** - *
-       * least significant bits
-       * 
- * - * fixed64 least_sig_bits = 2; - * @return The leastSigBits. - */ - @java.lang.Override - public long getLeastSigBits() { - return leastSigBits_; - } - /** - *
-       * least significant bits
-       * 
- * - * fixed64 least_sig_bits = 2; - * @param value The leastSigBits to set. - * @return This builder for chaining. - */ - public Builder setLeastSigBits(long value) { - - leastSigBits_ = value; - onChanged(); - return this; - } - /** - *
-       * least significant bits
-       * 
- * - * fixed64 least_sig_bits = 2; - * @return This builder for chaining. - */ - public Builder clearLeastSigBits() { - - leastSigBits_ = 0L; - onChanged(); - return this; - } - - private com.google.protobuf.MapField< - java.lang.Integer, java.lang.Boolean> setFields_; - private com.google.protobuf.MapField - internalGetSetFields() { - if (setFields_ == null) { - return com.google.protobuf.MapField.emptyMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - return setFields_; - } - private com.google.protobuf.MapField - internalGetMutableSetFields() { - onChanged();; - if (setFields_ == null) { - setFields_ = com.google.protobuf.MapField.newMapField( - SetFieldsDefaultEntryHolder.defaultEntry); - } - if (!setFields_.isMutable()) { - setFields_ = setFields_.copy(); - } - return setFields_; - } - - public int getSetFieldsCount() { - return internalGetSetFields().getMap().size(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - @java.lang.Override - public boolean containsSetFields( - int key) { - - return internalGetSetFields().getMap().containsKey(key); - } - /** - * Use {@link #getSetFieldsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getSetFields() { - return getSetFieldsMap(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public java.util.Map getSetFieldsMap() { - return internalGetSetFields().getMap(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrDefault( - int key, - boolean defaultValue) { - - java.util.Map map = - internalGetSetFields().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - @java.lang.Override - - public boolean getSetFieldsOrThrow( - int key) { - - java.util.Map map = - internalGetSetFields().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearSetFields() { - internalGetMutableSetFields().getMutableMap() - .clear(); - return this; - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder removeSetFields( - int key) { - - internalGetMutableSetFields().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableSetFields() { - return internalGetMutableSetFields().getMutableMap(); - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - public Builder putSetFields( - int key, - boolean value) { - - - internalGetMutableSetFields().getMutableMap() - .put(key, value); - return this; - } - /** - *
-       * nullable map to track set fields
-       * 
- * - * map<int32, bool> set_fields = 50010; - */ - - public Builder putAllSetFields( - java.util.Map values) { - internalGetMutableSetFields().getMutableMap() - .putAll(values); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Acme.Glup.Hash128) - } - - // @@protoc_insertion_point(class_scope:Acme.Glup.Hash128) - private static final com.acme.glup.MetadataProto.Hash128 DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new com.acme.glup.MetadataProto.Hash128(); - } - - public static com.acme.glup.MetadataProto.Hash128 getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Hash128 parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Hash128(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public com.acme.glup.MetadataProto.Hash128 getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int GLUP_FIELD_NUMBER = 50000; - /** - * extend .google.protobuf.MessageOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.MessageOptions, - com.acme.glup.MetadataProto.GlupOptions> glup = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - com.acme.glup.MetadataProto.GlupOptions.class, - com.acme.glup.MetadataProto.GlupOptions.getDefaultInstance()); - public static final int CONTAINS_NULLABLE_FIELDS_FIELD_NUMBER = 50001; - /** - *
-   * Does message contains nullable field. This will be subject to special generation that will allow
-   * to know if a specific field in the corresponding message or sub-message has been set or not.
-   * 
- * - * extend .google.protobuf.MessageOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.MessageOptions, - java.lang.Boolean> containsNullableFields = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.Boolean.class, - null); - public static final int GLUPFIELD_FIELD_NUMBER = 50000; - /** - * extend .google.protobuf.FieldOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FieldOptions, - com.acme.glup.MetadataProto.GlupFieldOptions> glupfield = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - com.acme.glup.MetadataProto.GlupFieldOptions.class, - com.acme.glup.MetadataProto.GlupFieldOptions.getDefaultInstance()); - public static final int JSON_MAPPING_FIELD_NUMBER = 50001; - /** - *
-   * add JsonProxy extension
-   * 
- * - * extend .google.protobuf.FieldOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FieldOptions, - com.acme.glup.MetadataProto.JsonMapping> jsonMapping = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - com.acme.glup.MetadataProto.JsonMapping.class, - com.acme.glup.MetadataProto.JsonMapping.getDefaultInstance()); - public static final int JSON_FIELD_NUMBER = 50002; - /** - *
-   * add JsonAlias extension
-   * 
- * - * extend .google.protobuf.FieldOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FieldOptions, - com.acme.glup.MetadataProto.JsonAlias> json = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - com.acme.glup.MetadataProto.JsonAlias.class, - com.acme.glup.MetadataProto.JsonAlias.getDefaultInstance()); - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_KafkaMessageOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_KafkaMessageOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_DataSet_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_DataSet_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_DataSetChunk_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_DataSetChunk_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_DataSetFormat_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_DataSetFormat_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ProducerTransportOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ProducerTransportOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_PropertyOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_PropertyOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_GlupOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_GlupOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_GlupFieldOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_GlupFieldOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_JsonMapping_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_JsonMapping_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_JsonAlias_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_JsonAlias_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_BaseGlupMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_BaseGlupMessage_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_BaseGlupMessage_SetFieldsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_BaseGlupMessage_SetFieldsEntry_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ForwardedWatermarkMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ForwardedWatermarkMessage_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Location_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Location_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Origin_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Origin_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ControlMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ControlMessage_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ControlMessage_Watermark_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ControlMessage_Watermark_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_ControlMessage_Watermark_SetFieldsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_ControlMessage_Watermark_SetFieldsEntry_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Partition_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Partition_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_HDFSPartition_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_HDFSPartition_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Hash128_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Hash128_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Acme_Glup_Hash128_SetFieldsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Acme_Glup_Hash128_SetFieldsEntry_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\024metadata_proto.proto\022\tAcme.Glup\032 googl" + - "e/protobuf/descriptor.proto\"$\n\023KafkaMess" + - "ageOptions\022\r\n\005topic\030\001 \003(\t\"\372\001\n\007DataSet\022\n\n" + - "\002id\030\001 \001(\t\022(\n\006format\030\002 \003(\0132\030.Acme.Glup.Da" + - "taSetFormat\0224\n\020partition_scheme\030\003 \001(\0162\032." + - "Acme.Glup.PartitionScheme\022\022\n\njava_class\030" + - "\004 \001(\t\022\021\n\tfor_tests\030\005 \001(\010\022\r\n\005owner\030\006 \001(\t\022" + - "\017\n\007private\030\007 \001(\010\022$\n\004kind\030\010 \001(\0162\026.Acme.Gl" + - "up.DataSetKind\022\026\n\016retention_days\030\t \001(\005\"t" + - "\n\014DataSetChunk\022\'\n\tpartition\030\001 \003(\0132\024.Acme" + - ".Glup.Partition\022(\n\006format\030\002 \001(\0132\030.Acme.G" + - "lup.DataSetFormat\022\021\n\tdatasetId\030\003 \001(\t\"\334\002\n" + - "\rDataSetFormat\022\014\n\004path\030\001 \001(\t\022.\n\013file_for" + - "mat\030\002 \001(\0162\031.Acme.Glup.HDFSDataFormat\0224\n\020" + - "partition_scheme\030\003 \001(\0162\032.Acme.Glup.Parti" + - "tionScheme\0221\n\017start_partition\030\004 \001(\0132\030.Ac" + - "me.Glup.HDFSPartition\022/\n\rend_partition\030\005" + - " \001(\0132\030.Acme.Glup.HDFSPartition\022\026\n\016retent" + - "ion_days\030\007 \001(\005\022\020\n\010priority\030\010 \001(\005\022\r\n\005labe" + - "l\030\t \001(\t\0224\n\020monitoring_level\030\n \001(\0162\032.Acme" + - ".Glup.MonitoringLevelJ\004\010\006\020\007\"\224\031\n\013HDFSOpti" + - "ons\0224\n\006import\030\003 \003(\0132$.Acme.Glup.HDFSOpti" + - "ons.ImportOptions\032\316\030\n\rImportOptions\022\r\n\005o" + - "wner\030\001 \001(\t\022\014\n\004name\030\002 \001(\t\0220\n\014partitioning" + - "\030\004 \001(\0162\032.Acme.Glup.PartitionScheme\022)\n\006fo" + - "rmat\030\005 \001(\0162\031.Acme.Glup.HDFSDataFormat\022\017\n" + - "\007private\030\006 \001(\010\022A\n\tgenerator\030\013 \003(\0132..Acme" + - ".Glup.HDFSOptions.ImportOptions.Generato" + - "r\0227\n\004view\030\014 \003(\0132).Acme.Glup.HDFSOptions." + - "ImportOptions.View\032\214\001\n\004View\022C\n\004hive\030\n \001(" + - "\01325.Acme.Glup.HDFSOptions.ImportOptions." + - "View.HiveOptions\032?\n\013HiveOptions\0220\n\014parti" + - "tioning\030\003 \001(\0162\032.Acme.Glup.PartitionSchem" + - "e\032\246\025\n\tGenerator\022T\n\ndataloader\030\001 \001(\0132@.Ac" + - "me.Glup.HDFSOptions.ImportOptions.Genera" + - "tor.DataloaderOptions\022T\n\nkafka2hdfs\030\002 \001(" + - "\0132@.Acme.Glup.HDFSOptions.ImportOptions." + - "Generator.Kafka2HdfsOptions\022H\n\004sync\030\003 \001(" + - "\0132:.Acme.Glup.HDFSOptions.ImportOptions." + - "Generator.SyncOptions\022P\n\010external\030\004 \001(\0132" + - ">.Acme.Glup.HDFSOptions.ImportOptions.Ge" + - "nerator.ExternalOptions\022L\n\006backup\030\005 \001(\0132" + - "<.Acme.Glup.HDFSOptions.ImportOptions.Ge" + - "nerator.BackupOptions\022V\n\013transcoding\030\006 \001" + - "(\0132A.Acme.Glup.HDFSOptions.ImportOptions" + - ".Generator.TranscodingOptions\022L\n\006kacoha\030" + - "\007 \001(\0132<.Acme.Glup.HDFSOptions.ImportOpti" + - "ons.Generator.KaCoHaOptions\022P\n\013deduplica" + - "te\030\010 \001(\0132;.Acme.Glup.HDFSOptions.ImportO" + - "ptions.Generator.DedupOptions\022N\n\007sampler" + - "\030\t \001(\0132=.Acme.Glup.HDFSOptions.ImportOpt" + - "ions.Generator.SamplerOptions\022T\n\ncompara" + - "tor\030\n \001(\0132@.Acme.Glup.HDFSOptions.Import" + - "Options.Generator.ComparatorOptions\022 \n\002t" + - "o\030\372\001 \003(\0132\023.Acme.Glup.Location\022\022\n\tnamespa" + - "ce\030\373\001 \001(\t\022\023\n\nstart_date\030\375\001 \001(\t\022\022\n\tstop_d" + - "ate\030\376\001 \001(\t\022\022\n\tignore_cn\030\377\001 \001(\010\032\232\001\n\014Dedup" + - "Options\022\030\n\020input_dataset_id\030\001 \001(\t\022\032\n\022inp" + - "ut_format_label\030\002 \001(\t\022\031\n\021output_dataset_" + - "id\030\003 \001(\t\022\033\n\023output_format_label\030\004 \001(\t\022\034\n" + - "\024use_hippo_cuttle_job\030\005 \001(\010\032u\n\021Kafka2Hdf" + - "sOptions\022\r\n\005topic\030\001 \001(\t\022\023\n\013deduplicate\030\003" + - " \001(\010\022\031\n\021output_dataset_id\030\004 \001(\t\022\033\n\023outpu" + - "t_format_label\030\005 \001(\tJ\004\010\002\020\003\032K\n\014KacohaConf" + - "ig\022\033\n\023partitions_per_task\030\001 \001(\005\022\036\n\026poll_" + - "buffer_size_bytes\030\002 \001(\005\032\203\001\n\021KacohaConfig" + - "PerDc\022!\n\002dc\030\001 \001(\0162\025.Acme.Glup.DataCenter" + - "\022K\n\006config\030\002 \001(\0132;.Acme.Glup.HDFSOptions" + - ".ImportOptions.Generator.KacohaConfig\032\221\002" + - "\n\rKaCoHaOptions\022\r\n\005topic\030\001 \001(\t\022\031\n\021output" + - "_dataset_id\030\002 \001(\t\022\023\n\013deduplicate\030\003 \001(\010\022K" + - "\n\006config\030\004 \001(\0132;.Acme.Glup.HDFSOptions.I" + - "mportOptions.Generator.KacohaConfig\022\033\n\023o" + - "utput_format_label\030\005 \001(\t\022W\n\rconfig_per_d" + - "c\030\006 \003(\0132@.Acme.Glup.HDFSOptions.ImportOp" + - "tions.Generator.KacohaConfigPerDc\032:\n\021Dat" + - "aloaderOptions\022%\n\010platform\030\001 \003(\0162\023.Acme." + - "Glup.Platform\032\355\001\n\013SyncOptions\022!\n\004from\030\001 " + - "\001(\0132\023.Acme.Glup.Location\022\030\n\020source_names" + - "pace\030\003 \001(\t\022&\n\tplatforms\030\006 \003(\0162\023.Acme.Glu" + - "p.Platform\022\026\n\016is_backfilling\030\010 \001(\010\022\020\n\010to" + - "_label\030\t \001(\t\022\025\n\rto_dataset_id\030\n \001(\t\022\030\n\020w" + - "ith_backfilling\030\013 \001(\010\022\036\n\026is_scheduled_on" + - "_source\030\014 \001(\010\032t\n\rBackupOptions\022!\n\004from\030\001" + - " \001(\0132\023.Acme.Glup.Location\022\030\n\020source_name" + - "space\030\002 \001(\t\022&\n\tplatforms\030\003 \003(\0162\023.Acme.Gl" + - "up.Platform\032\377\001\n\022TranscodingOptions\022\030\n\020in" + - "put_dataset_id\030\001 \001(\t\022\031\n\021output_dataset_i" + - "d\030\002 \001(\t\022/\n\014input_format\030\003 \001(\0162\031.Acme.Glu" + - "p.HDFSDataFormat\0220\n\routput_format\030\004 \001(\0162" + - "\031.Acme.Glup.HDFSDataFormat\022\033\n\023input_data" + - "set_label\030\005 \001(\t\022\034\n\024output_dataset_label\030" + - "\006 \001(\t\022\026\n\016is_by_platform\030\007 \001(\010\032\225\001\n\016Sample" + - "rOptions\022\030\n\020input_dataset_id\030\001 \001(\t\022\032\n\022in" + - "put_format_label\030\002 \001(\t\022\031\n\021output_dataset" + - "_id\030\003 \001(\t\022\033\n\023output_format_label\030\004 \001(\t\022\025" + - "\n\rsampling_rate\030\005 \001(\002\032\247\001\n\021ComparatorOpti" + - "ons\022\027\n\017left_dataset_id\030\001 \001(\t\022\031\n\021left_for" + - "mat_label\030\002 \001(\t\022\030\n\020right_dataset_id\030\003 \001(" + - "\t\022\032\n\022right_format_label\030\004 \001(\t\022\020\n\010hostnam" + - "e\030\005 \001(\t\022\026\n\016ignored_fields\030\006 \001(\t\032\021\n\017Exter" + - "nalOptions\"9\n\030ProducerTransportOptions\022\016" + - "\n\006syslog\030\001 \001(\010\022\r\n\005kafka\030\002 \001(\010\"8\n\017Propert" + - "yOptions\022\020\n\010valuable\030\001 \001(\010\022\023\n\013high_volum" + - "e\030\002 \001(\010\"\301\002\n\013GlupOptions\022-\n\005kafka\030\001 \001(\0132\036" + - ".Acme.Glup.KafkaMessageOptions\022$\n\004hdfs\030\002" + - " \001(\0132\026.Acme.Glup.HDFSOptions\022\024\n\014sampling" + - "_pct\030\003 \001(\r\022\034\n\024preprod_sampling_pct\030\004 \001(\r" + - "\022#\n\007dataset\030\005 \003(\0132\022.Acme.Glup.DataSet\022\034\n" + - "\024message_sampling_pct\030\006 \001(\r\0226\n\tproducers" + - "\030\007 \001(\0132#.Acme.Glup.ProducerTransportOpti" + - "ons\022.\n\nproperties\030\010 \001(\0132\032.Acme.Glup.Prop" + - "ertyOptions\"\257\001\n\020GlupFieldOptions\022\017\n\007samp" + - "led\030\001 \001(\010\022\024\n\014sampling_key\030\002 \001(\010\022.\n\021disab" + - "led_platform\030\003 \003(\0162\023.Acme.Glup.Platform\022" + - "\030\n\020should_clean_pii\030\004 \001(\010\022\030\n\020pending_del" + - "etion\030\005 \001(\010\022\020\n\010added_at\030\006 \001(\t\")\n\013JsonMap" + - "ping\022\014\n\004name\030\001 \001(\t\022\014\n\004skip\030\002 \001(\010\"4\n\tJson" + - "Alias\022\014\n\004name\030\001 \001(\t\022\031\n\021use_enum_field_id" + - "\030\003 \001(\010\"\255\002\n\017BaseGlupMessage\022&\n\013glup_origi" + - "n\030\001 \001(\0132\021.Acme.Glup.Origin\022\'\n\tpartition\030" + - "\002 \001(\0132\024.Acme.Glup.Partition\022?\n\nset_field" + - "s\030\332\206\003 \003(\0132).Acme.Glup.BaseGlupMessage.Se" + - "tFieldsEntry\022P\n\017control_message\030\377\377\177 \003(\0132" + - "#.Acme.Glup.ControlMessage.WatermarkB\020\222\265" + - "\030\014\n\n__metadata\0320\n\016SetFieldsEntry\022\013\n\003key\030" + - "\001 \001(\005\022\r\n\005value\030\002 \001(\010:\0028\001:\004\210\265\030\001\"\360\001\n\031Forwa" + - "rdedWatermarkMessage\022\035\n\025original_kafka_o" + - "ffset\030\005 \001(\003\022\021\n\ttimestamp\030\006 \001(\003\022\035\n\025consol" + - "idation_enabled\030\007 \001(\010\022\022\n\ndataset_id\030\n \001(" + - "\t\022\034\n\024dataset_format_label\030\013 \001(\t\022P\n\017contr" + - "ol_message\030\377\377\177 \003(\0132#.Acme.Glup.ControlMe" + - "ssage.WatermarkB\020\222\265\030\014\n\n__metadata\"u\n\010Loc" + - "ation\022#\n\003env\030\001 \001(\0162\026.Acme.Glup.Environme" + - "nt\022!\n\002dc\030\002 \001(\0162\025.Acme.Glup.DataCenter\022\r\n" + - "\005label\030\003 \001(\t\022\022\n\ndataset_id\030\004 \001(\t\"\240\001\n\006Ori" + - "gin\022)\n\ndatacenter\030\001 \001(\0162\025.Acme.Glup.Data" + - "Center\022\032\n\003ip4\030\002 \001(\007B\r\212\265\030\t\n\007host_ip\022\020\n\010ho" + - "stname\030\003 \001(\t\022\036\n\016container_task\030\004 \001(\tB\006\212\265" + - "\030\002\020\001\022\035\n\rcontainer_app\030\005 \001(\tB\006\212\265\030\002\020\001\"\201\005\n\016" + - "ControlMessage\0226\n\twatermark\030\001 \001(\0132#.Acme" + - ".Glup.ControlMessage.Watermark\032\205\001\n\017Water" + - "markOrigin\022\023\n\013kafka_topic\030\001 \001(\t\022)\n\ndatac" + - "enter\030\002 \001(\0162\025.Acme.Glup.DataCenter\0222\n\007cl" + - "uster\030\003 \001(\0162!.Acme.Glup.ControlMessage.C" + - "luster\032\346\002\n\tWatermark\022\014\n\004type\030\001 \001(\t\022\020\n\010ho" + - "stname\030\002 \001(\t\022\023\n\013kafka_topic\030\003 \001(\t\022\021\n\tpar" + - "tition\030\004 \001(\005\022\027\n\017partition_count\030\005 \001(\005\022\024\n" + - "\014process_uuid\030\006 \001(\014\022\016\n\006region\030\007 \001(\t\022*\n\021t" + - "imestamp_seconds\030\010 \001(\005B\017\222\265\030\013\n\ttimestamp\022" + - "\017\n\007cluster\030\t \001(\t\022\023\n\013environment\030\n \001(\t\022H\n" + - "\nset_fields\030\332\206\003 \003(\01322.Acme.Glup.ControlM" + - "essage.Watermark.SetFieldsEntry\0320\n\016SetFi" + - "eldsEntry\022\013\n\003key\030\001 \001(\005\022\r\n\005value\030\002 \001(\010:\0028" + - "\001:\004\210\265\030\001\"F\n\007Cluster\022\027\n\023UNSUPPORTED_CLUSTE" + - "R\020\000\022\t\n\005LOCAL\020\002\022\013\n\007CENTRAL\020\003\022\n\n\006STREAM\020\004\"" + - "\225\001\n\tPartition\022*\n\021timestamp_seconds\030\001 \001(\004" + - "B\017\212\265\030\013\n\ttimestamp\022*\n\rhost_platform\030\002 \001(\016" + - "2\023.Acme.Glup.Platform\0220\n\nevent_type\030\003 \001(" + - "\0162\024.Acme.Glup.EventTypeB\006\212\265\030\002\020\001\"\217\001\n\rHDFS" + - "Partition\022\031\n\021timestamp_seconds\030\001 \001(\004\022*\n\r" + - "host_platform\030\002 \001(\0162\023.Acme.Glup.Platform" + - "\022(\n\nevent_type\030\003 \001(\0162\024.Acme.Glup.EventTy" + - "pe\022\r\n\005depth\030\004 \001(\005\"\243\001\n\007Hash128\022\025\n\rmost_si" + - "g_bits\030\001 \001(\006\022\026\n\016least_sig_bits\030\002 \001(\006\0227\n\n" + - "set_fields\030\332\206\003 \003(\0132!.Acme.Glup.Hash128.S" + - "etFieldsEntry\0320\n\016SetFieldsEntry\022\013\n\003key\030\001" + - " \001(\005\022\r\n\005value\030\002 \001(\010:\0028\001*~\n\017PartitionSche" + - "me\022 \n\034UNSUPPORTED_PARTITION_SCHEME\020\000\022\t\n\005" + - "DAILY\020\002\022\n\n\006HOURLY\020\003\022\023\n\017PLATFORM_HOURLY\020\004" + - "\022\035\n\031EVENTTYPE_PLATFORM_HOURLY\020\005*?\n\rMessa" + - "geFormat\022\026\n\022UNSUPPORTED_FORMAT\020\000\022\010\n\004JSON" + - "\020\001\022\014\n\010PROTOBUF\020\002*d\n\016HDFSDataFormat\022\033\n\027UN" + - "SUPPORTED_DATA_FORMAT\020\000\022\r\n\tJSON_PAIL\020\002\022\020" + - "\n\014PROTOBUF_SEQ\020\003\022\024\n\020PROTOBUF_PARQUET\020\004*3" + - "\n\013DataSetKind\022\024\n\020UNSUPPORTED_KIND\020\000\022\016\n\nT" + - "IMESERIES\020\001*\232\001\n\017MonitoringLevel\022\013\n\007DEFAU" + - "LT\020\000\022\025\n\021REMOVE_MONITORING\020\001\022\032\n\026INFORMATI" + - "VE_MONITORING\020\002\022\025\n\021CONSENSUS_IGNORED\020\003\0220" + - "\n,CONSENSUS_IGNORED_AND_INFORMATIVE_MONI" + - "TORING\020\004*\213\001\n\nDataCenter\022\032\n\026UNSUPPORTED_D" + - "ATACENTER\020\000\022\007\n\003AM5\020\002\022\007\n\003HK5\020\003\022\007\n\003NY8\020\004\022\007" + - "\n\003PAR\020\005\022\007\n\003PA4\020\006\022\007\n\003SH5\020\007\022\007\n\003SV6\020\010\022\007\n\003TY" + - "5\020\t\022\007\n\003VA1\020\n\022\007\n\003AM6\020\013\022\007\n\003DA1\020\014*A\n\013Enviro" + - "nment\022\033\n\027UNSUPPORTED_ENVIRONMENT\020\000\022\013\n\007PR" + - "EPROD\020\001\022\010\n\004PROD\020\002*D\n\010Platform\022\030\n\024UNSUPPO" + - "RTED_PLATFORM\020\000\022\006\n\002EU\020\002\022\006\n\002US\020\003\022\006\n\002AS\020\004\022" + - "\006\n\002CN\020\005*[\n\tEventType\022\032\n\026UNSUPPORTED_EVEN" + - "T_TYPE\020\000\022\020\n\014ItemPageView\020\002\022\t\n\005Sales\020\003\022\n\n" + - "\006Basket\020\004\022\t\n\005Other\020\005*%\n\005YesNo\022\013\n\007UNKNOWN" + - "\020\000\022\006\n\002NO\020\001\022\007\n\003YES\020\002:G\n\004glup\022\037.google.pro" + - "tobuf.MessageOptions\030\320\206\003 \001(\0132\026.Acme.Glup" + - ".GlupOptions:C\n\030contains_nullable_fields" + - "\022\037.google.protobuf.MessageOptions\030\321\206\003 \001(" + - "\010:O\n\tglupfield\022\035.google.protobuf.FieldOp" + - "tions\030\320\206\003 \001(\0132\033.Acme.Glup.GlupFieldOptio" + - "ns:M\n\014json_mapping\022\035.google.protobuf.Fie" + - "ldOptions\030\321\206\003 \001(\0132\026.Acme.Glup.JsonMappin" + - "g:C\n\004json\022\035.google.protobuf.FieldOptions" + - "\030\322\206\003 \001(\0132\024.Acme.Glup.JsonAliasB\017\n\rcom.ac" + - "me.glupb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.DescriptorProtos.getDescriptor(), - }); - internal_static_Acme_Glup_KafkaMessageOptions_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_Acme_Glup_KafkaMessageOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_KafkaMessageOptions_descriptor, - new java.lang.String[] { "Topic", }); - internal_static_Acme_Glup_DataSet_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_Acme_Glup_DataSet_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_DataSet_descriptor, - new java.lang.String[] { "Id", "Format", "PartitionScheme", "JavaClass", "ForTests", "Owner", "Private", "Kind", "RetentionDays", }); - internal_static_Acme_Glup_DataSetChunk_descriptor = - getDescriptor().getMessageTypes().get(2); - internal_static_Acme_Glup_DataSetChunk_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_DataSetChunk_descriptor, - new java.lang.String[] { "Partition", "Format", "DatasetId", }); - internal_static_Acme_Glup_DataSetFormat_descriptor = - getDescriptor().getMessageTypes().get(3); - internal_static_Acme_Glup_DataSetFormat_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_DataSetFormat_descriptor, - new java.lang.String[] { "Path", "FileFormat", "PartitionScheme", "StartPartition", "EndPartition", "RetentionDays", "Priority", "Label", "MonitoringLevel", }); - internal_static_Acme_Glup_HDFSOptions_descriptor = - getDescriptor().getMessageTypes().get(4); - internal_static_Acme_Glup_HDFSOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_descriptor, - new java.lang.String[] { "Import", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor, - new java.lang.String[] { "Owner", "Name", "Partitioning", "Format", "Private", "Generator", "View", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor, - new java.lang.String[] { "Hive", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_View_HiveOptions_descriptor, - new java.lang.String[] { "Partitioning", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_descriptor.getNestedTypes().get(1); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor, - new java.lang.String[] { "Dataloader", "Kafka2Hdfs", "Sync", "External", "Backup", "Transcoding", "Kacoha", "Deduplicate", "Sampler", "Comparator", "To", "Namespace", "StartDate", "StopDate", "IgnoreCn", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DedupOptions_descriptor, - new java.lang.String[] { "InputDatasetId", "InputFormatLabel", "OutputDatasetId", "OutputFormatLabel", "UseHippoCuttleJob", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(1); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_Kafka2HdfsOptions_descriptor, - new java.lang.String[] { "Topic", "Deduplicate", "OutputDatasetId", "OutputFormatLabel", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(2); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfig_descriptor, - new java.lang.String[] { "PartitionsPerTask", "PollBufferSizeBytes", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(3); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KacohaConfigPerDc_descriptor, - new java.lang.String[] { "Dc", "Config", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(4); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_KaCoHaOptions_descriptor, - new java.lang.String[] { "Topic", "OutputDatasetId", "Deduplicate", "Config", "OutputFormatLabel", "ConfigPerDc", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(5); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_DataloaderOptions_descriptor, - new java.lang.String[] { "Platform", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(6); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SyncOptions_descriptor, - new java.lang.String[] { "From", "SourceNamespace", "Platforms", "IsBackfilling", "ToLabel", "ToDatasetId", "WithBackfilling", "IsScheduledOnSource", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(7); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_BackupOptions_descriptor, - new java.lang.String[] { "From", "SourceNamespace", "Platforms", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(8); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_TranscodingOptions_descriptor, - new java.lang.String[] { "InputDatasetId", "OutputDatasetId", "InputFormat", "OutputFormat", "InputDatasetLabel", "OutputDatasetLabel", "IsByPlatform", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(9); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_SamplerOptions_descriptor, - new java.lang.String[] { "InputDatasetId", "InputFormatLabel", "OutputDatasetId", "OutputFormatLabel", "SamplingRate", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(10); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ComparatorOptions_descriptor, - new java.lang.String[] { "LeftDatasetId", "LeftFormatLabel", "RightDatasetId", "RightFormatLabel", "Hostname", "IgnoredFields", }); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_descriptor = - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_descriptor.getNestedTypes().get(11); - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSOptions_ImportOptions_Generator_ExternalOptions_descriptor, - new java.lang.String[] { }); - internal_static_Acme_Glup_ProducerTransportOptions_descriptor = - getDescriptor().getMessageTypes().get(5); - internal_static_Acme_Glup_ProducerTransportOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ProducerTransportOptions_descriptor, - new java.lang.String[] { "Syslog", "Kafka", }); - internal_static_Acme_Glup_PropertyOptions_descriptor = - getDescriptor().getMessageTypes().get(6); - internal_static_Acme_Glup_PropertyOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_PropertyOptions_descriptor, - new java.lang.String[] { "Valuable", "HighVolume", }); - internal_static_Acme_Glup_GlupOptions_descriptor = - getDescriptor().getMessageTypes().get(7); - internal_static_Acme_Glup_GlupOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_GlupOptions_descriptor, - new java.lang.String[] { "Kafka", "Hdfs", "SamplingPct", "PreprodSamplingPct", "Dataset", "MessageSamplingPct", "Producers", "Properties", }); - internal_static_Acme_Glup_GlupFieldOptions_descriptor = - getDescriptor().getMessageTypes().get(8); - internal_static_Acme_Glup_GlupFieldOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_GlupFieldOptions_descriptor, - new java.lang.String[] { "Sampled", "SamplingKey", "DisabledPlatform", "ShouldCleanPii", "PendingDeletion", "AddedAt", }); - internal_static_Acme_Glup_JsonMapping_descriptor = - getDescriptor().getMessageTypes().get(9); - internal_static_Acme_Glup_JsonMapping_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_JsonMapping_descriptor, - new java.lang.String[] { "Name", "Skip", }); - internal_static_Acme_Glup_JsonAlias_descriptor = - getDescriptor().getMessageTypes().get(10); - internal_static_Acme_Glup_JsonAlias_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_JsonAlias_descriptor, - new java.lang.String[] { "Name", "UseEnumFieldId", }); - internal_static_Acme_Glup_BaseGlupMessage_descriptor = - getDescriptor().getMessageTypes().get(11); - internal_static_Acme_Glup_BaseGlupMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_BaseGlupMessage_descriptor, - new java.lang.String[] { "GlupOrigin", "Partition", "SetFields", "ControlMessage", }); - internal_static_Acme_Glup_BaseGlupMessage_SetFieldsEntry_descriptor = - internal_static_Acme_Glup_BaseGlupMessage_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_BaseGlupMessage_SetFieldsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_BaseGlupMessage_SetFieldsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - internal_static_Acme_Glup_ForwardedWatermarkMessage_descriptor = - getDescriptor().getMessageTypes().get(12); - internal_static_Acme_Glup_ForwardedWatermarkMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ForwardedWatermarkMessage_descriptor, - new java.lang.String[] { "OriginalKafkaOffset", "Timestamp", "ConsolidationEnabled", "DatasetId", "DatasetFormatLabel", "ControlMessage", }); - internal_static_Acme_Glup_Location_descriptor = - getDescriptor().getMessageTypes().get(13); - internal_static_Acme_Glup_Location_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Location_descriptor, - new java.lang.String[] { "Env", "Dc", "Label", "DatasetId", }); - internal_static_Acme_Glup_Origin_descriptor = - getDescriptor().getMessageTypes().get(14); - internal_static_Acme_Glup_Origin_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Origin_descriptor, - new java.lang.String[] { "Datacenter", "Ip4", "Hostname", "ContainerTask", "ContainerApp", }); - internal_static_Acme_Glup_ControlMessage_descriptor = - getDescriptor().getMessageTypes().get(15); - internal_static_Acme_Glup_ControlMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ControlMessage_descriptor, - new java.lang.String[] { "Watermark", }); - internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_descriptor = - internal_static_Acme_Glup_ControlMessage_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ControlMessage_WatermarkOrigin_descriptor, - new java.lang.String[] { "KafkaTopic", "Datacenter", "Cluster", }); - internal_static_Acme_Glup_ControlMessage_Watermark_descriptor = - internal_static_Acme_Glup_ControlMessage_descriptor.getNestedTypes().get(1); - internal_static_Acme_Glup_ControlMessage_Watermark_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ControlMessage_Watermark_descriptor, - new java.lang.String[] { "Type", "Hostname", "KafkaTopic", "Partition", "PartitionCount", "ProcessUuid", "Region", "TimestampSeconds", "Cluster", "Environment", "SetFields", }); - internal_static_Acme_Glup_ControlMessage_Watermark_SetFieldsEntry_descriptor = - internal_static_Acme_Glup_ControlMessage_Watermark_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_ControlMessage_Watermark_SetFieldsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_ControlMessage_Watermark_SetFieldsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - internal_static_Acme_Glup_Partition_descriptor = - getDescriptor().getMessageTypes().get(16); - internal_static_Acme_Glup_Partition_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Partition_descriptor, - new java.lang.String[] { "TimestampSeconds", "HostPlatform", "EventType", }); - internal_static_Acme_Glup_HDFSPartition_descriptor = - getDescriptor().getMessageTypes().get(17); - internal_static_Acme_Glup_HDFSPartition_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_HDFSPartition_descriptor, - new java.lang.String[] { "TimestampSeconds", "HostPlatform", "EventType", "Depth", }); - internal_static_Acme_Glup_Hash128_descriptor = - getDescriptor().getMessageTypes().get(18); - internal_static_Acme_Glup_Hash128_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Hash128_descriptor, - new java.lang.String[] { "MostSigBits", "LeastSigBits", "SetFields", }); - internal_static_Acme_Glup_Hash128_SetFieldsEntry_descriptor = - internal_static_Acme_Glup_Hash128_descriptor.getNestedTypes().get(0); - internal_static_Acme_Glup_Hash128_SetFieldsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Acme_Glup_Hash128_SetFieldsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - glup.internalInit(descriptor.getExtensions().get(0)); - containsNullableFields.internalInit(descriptor.getExtensions().get(1)); - glupfield.internalInit(descriptor.getExtensions().get(2)); - jsonMapping.internalInit(descriptor.getExtensions().get(3)); - json.internalInit(descriptor.getExtensions().get(4)); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(com.acme.glup.MetadataProto.containsNullableFields); - registry.add(com.acme.glup.MetadataProto.json); - registry.add(com.acme.glup.MetadataProto.jsonMapping); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - com.google.protobuf.DescriptorProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/CustomOptions.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/CustomOptions.java deleted file mode 100644 index fa9ee128861..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/CustomOptions.java +++ /dev/null @@ -1,2429 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CustomOptions.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class CustomOptions { - private CustomOptions() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fileCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fileCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.messageCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.messageCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fieldCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fieldCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumValueCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumValueCustom2); - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.CustomEnumOptions} - */ - public enum CustomEnumOptions - implements com.google.protobuf.ProtocolMessageEnum { - /** - * CUSTOM0 = 0 [(.io.confluent.kafka.serializers.protobuf.test.enum_value_custom) = ENUM1]; - */ - CUSTOM0(0), - /** - * CUSTOM1 = 1 [(.io.confluent.kafka.serializers.protobuf.test.enum_value_custom2) = ENUM1, (.io.confluent.kafka.serializers.protobuf.test.enum_value_custom2) = ENUM2]; - */ - CUSTOM1(1), - /** - * CUSTOM2 = 2 [(.confluent.enum_value_meta) = { ... } - */ - CUSTOM2(2), - UNRECOGNIZED(-1), - ; - - /** - * CUSTOM0 = 0 [(.io.confluent.kafka.serializers.protobuf.test.enum_value_custom) = ENUM1]; - */ - public static final int CUSTOM0_VALUE = 0; - /** - * CUSTOM1 = 1 [(.io.confluent.kafka.serializers.protobuf.test.enum_value_custom2) = ENUM1, (.io.confluent.kafka.serializers.protobuf.test.enum_value_custom2) = ENUM2]; - */ - public static final int CUSTOM1_VALUE = 1; - /** - * CUSTOM2 = 2 [(.confluent.enum_value_meta) = { ... } - */ - public static final int CUSTOM2_VALUE = 2; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static CustomEnumOptions valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static CustomEnumOptions forNumber(int value) { - switch (value) { - case 0: return CUSTOM0; - case 1: return CUSTOM1; - case 2: return CUSTOM2; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - CustomEnumOptions> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public CustomEnumOptions findValueByNumber(int number) { - return CustomEnumOptions.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.getDescriptor().getEnumTypes().get(0); - } - - private static final CustomEnumOptions[] VALUES = values(); - - public static CustomEnumOptions valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private CustomEnumOptions(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.CustomEnumOptions) - } - - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.MyEnum} - */ - public enum MyEnum - implements com.google.protobuf.ProtocolMessageEnum { - /** - * ENUM0 = 0; - */ - ENUM0(0), - /** - * ENUM1 = 1; - */ - ENUM1(1), - /** - * ENUM2 = 2; - */ - ENUM2(2), - UNRECOGNIZED(-1), - ; - - /** - * ENUM0 = 0; - */ - public static final int ENUM0_VALUE = 0; - /** - * ENUM1 = 1; - */ - public static final int ENUM1_VALUE = 1; - /** - * ENUM2 = 2; - */ - public static final int ENUM2_VALUE = 2; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static MyEnum valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static MyEnum forNumber(int value) { - switch (value) { - case 0: return ENUM0; - case 1: return ENUM1; - case 2: return ENUM2; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - MyEnum> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public MyEnum findValueByNumber(int number) { - return MyEnum.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.getDescriptor().getEnumTypes().get(1); - } - - private static final MyEnum[] VALUES = values(); - - public static MyEnum valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private MyEnum(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.MyEnum) - } - - public interface CustomMessageOptionsOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions) - com.google.protobuf.MessageOrBuilder { - - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return The testString. - */ - java.lang.String getTestString(); - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return The bytes for testString. - */ - com.google.protobuf.ByteString - getTestStringBytes(); - - /** - * int32 test_int = 2 [(.confluent.field_meta) = { ... } - * @return The testInt. - */ - int getTestInt(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions} - */ - public static final class CustomMessageOptions extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions) - CustomMessageOptionsOrBuilder { - private static final long serialVersionUID = 0L; - // Use CustomMessageOptions.newBuilder() to construct. - private CustomMessageOptions(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private CustomMessageOptions() { - testString_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new CustomMessageOptions(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private CustomMessageOptions( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - testString_ = s; - break; - } - case 16: { - - testInt_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.Builder.class); - } - - public static final int TEST_STRING_FIELD_NUMBER = 1; - private volatile java.lang.Object testString_; - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return The testString. - */ - @java.lang.Override - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } - } - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return The bytes for testString. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int TEST_INT_FIELD_NUMBER = 2; - private int testInt_; - /** - * int32 test_int = 2 [(.confluent.field_meta) = { ... } - * @return The testInt. - */ - @java.lang.Override - public int getTestInt() { - return testInt_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, testString_); - } - if (testInt_ != 0) { - output.writeInt32(2, testInt_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, testString_); - } - if (testInt_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(2, testInt_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions other = (io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions) obj; - - if (!getTestString() - .equals(other.getTestString())) return false; - if (getTestInt() - != other.getTestInt()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TEST_STRING_FIELD_NUMBER; - hash = (53 * hash) + getTestString().hashCode(); - hash = (37 * hash) + TEST_INT_FIELD_NUMBER; - hash = (53 * hash) + getTestInt(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions) - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptionsOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - testString_ = ""; - - testInt_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions build() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions buildPartial() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions result = new io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions(this); - result.testString_ = testString_; - result.testInt_ = testInt_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions other) { - if (other == io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions.getDefaultInstance()) return this; - if (!other.getTestString().isEmpty()) { - testString_ = other.testString_; - onChanged(); - } - if (other.getTestInt() != 0) { - setTestInt(other.getTestInt()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object testString_ = ""; - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return The testString. - */ - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return The bytes for testString. - */ - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @param value The testString to set. - * @return This builder for chaining. - */ - public Builder setTestString( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - testString_ = value; - onChanged(); - return this; - } - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @return This builder for chaining. - */ - public Builder clearTestString() { - - testString_ = getDefaultInstance().getTestString(); - onChanged(); - return this; - } - /** - * string test_string = 1 [(.io.confluent.kafka.serializers.protobuf.test.field_custom) = 123, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 456, (.io.confluent.kafka.serializers.protobuf.test.field_custom2) = 789]; - * @param value The bytes for testString to set. - * @return This builder for chaining. - */ - public Builder setTestStringBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - testString_ = value; - onChanged(); - return this; - } - - private int testInt_ ; - /** - * int32 test_int = 2 [(.confluent.field_meta) = { ... } - * @return The testInt. - */ - @java.lang.Override - public int getTestInt() { - return testInt_; - } - /** - * int32 test_int = 2 [(.confluent.field_meta) = { ... } - * @param value The testInt to set. - * @return This builder for chaining. - */ - public Builder setTestInt(int value) { - - testInt_ = value; - onChanged(); - return this; - } - /** - * int32 test_int = 2 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearTestInt() { - - testInt_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.CustomMessageOptions) - private static final io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions(); - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public CustomMessageOptions parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new CustomMessageOptions(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.CustomMessageOptions getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface MyMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.MyMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * int32 id = 1; - * @return The id. - */ - int getId(); - - /** - * float f = 2; - * @return The f. - */ - float getF(); - - /** - * double d = 3; - * @return The d. - */ - double getD(); - - /** - * string doc = 4; - * @return The doc. - */ - java.lang.String getDoc(); - /** - * string doc = 4; - * @return The bytes for doc. - */ - com.google.protobuf.ByteString - getDocBytes(); - - /** - * map<string, string> params = 5; - */ - int getParamsCount(); - /** - * map<string, string> params = 5; - */ - boolean containsParams( - java.lang.String key); - /** - * Use {@link #getParamsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getParams(); - /** - * map<string, string> params = 5; - */ - java.util.Map - getParamsMap(); - /** - * map<string, string> params = 5; - */ - - java.lang.String getParamsOrDefault( - java.lang.String key, - java.lang.String defaultValue); - /** - * map<string, string> params = 5; - */ - - java.lang.String getParamsOrThrow( - java.lang.String key); - - /** - * repeated int32 list = 6; - * @return A list containing the list. - */ - java.util.List getListList(); - /** - * repeated int32 list = 6; - * @return The count of list. - */ - int getListCount(); - /** - * repeated int32 list = 6; - * @param index The index of the element to return. - * @return The list at the given index. - */ - int getList(int index); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.MyMessage} - */ - public static final class MyMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.MyMessage) - MyMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use MyMessage.newBuilder() to construct. - private MyMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private MyMessage() { - doc_ = ""; - list_ = emptyIntList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new MyMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private MyMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - id_ = input.readInt32(); - break; - } - case 21: { - - f_ = input.readFloat(); - break; - } - case 25: { - - d_ = input.readDouble(); - break; - } - case 34: { - java.lang.String s = input.readStringRequireUtf8(); - - doc_ = s; - break; - } - case 42: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - params_ = com.google.protobuf.MapField.newMapField( - ParamsDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000001; - } - com.google.protobuf.MapEntry - params__ = input.readMessage( - ParamsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - params_.getMutableMap().put( - params__.getKey(), params__.getValue()); - break; - } - case 48: { - if (!((mutable_bitField0_ & 0x00000002) != 0)) { - list_ = newIntList(); - mutable_bitField0_ |= 0x00000002; - } - list_.addInt(input.readInt32()); - break; - } - case 50: { - int length = input.readRawVarint32(); - int limit = input.pushLimit(length); - if (!((mutable_bitField0_ & 0x00000002) != 0) && input.getBytesUntilLimit() > 0) { - list_ = newIntList(); - mutable_bitField0_ |= 0x00000002; - } - while (input.getBytesUntilLimit() > 0) { - list_.addInt(input.readInt32()); - } - input.popLimit(limit); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000002) != 0)) { - list_.makeImmutable(); // C - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 5: - return internalGetParams(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.Builder.class); - } - - public static final int ID_FIELD_NUMBER = 1; - private int id_; - /** - * int32 id = 1; - * @return The id. - */ - @java.lang.Override - public int getId() { - return id_; - } - - public static final int F_FIELD_NUMBER = 2; - private float f_; - /** - * float f = 2; - * @return The f. - */ - @java.lang.Override - public float getF() { - return f_; - } - - public static final int D_FIELD_NUMBER = 3; - private double d_; - /** - * double d = 3; - * @return The d. - */ - @java.lang.Override - public double getD() { - return d_; - } - - public static final int DOC_FIELD_NUMBER = 4; - private volatile java.lang.Object doc_; - /** - * string doc = 4; - * @return The doc. - */ - @java.lang.Override - public java.lang.String getDoc() { - java.lang.Object ref = doc_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - doc_ = s; - return s; - } - } - /** - * string doc = 4; - * @return The bytes for doc. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDocBytes() { - java.lang.Object ref = doc_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - doc_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PARAMS_FIELD_NUMBER = 5; - private static final class ParamsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.String, java.lang.String> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_ParamsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.STRING, - ""); - } - private com.google.protobuf.MapField< - java.lang.String, java.lang.String> params_; - private com.google.protobuf.MapField - internalGetParams() { - if (params_ == null) { - return com.google.protobuf.MapField.emptyMapField( - ParamsDefaultEntryHolder.defaultEntry); - } - return params_; - } - - public int getParamsCount() { - return internalGetParams().getMap().size(); - } - /** - * map<string, string> params = 5; - */ - - @java.lang.Override - public boolean containsParams( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetParams().getMap().containsKey(key); - } - /** - * Use {@link #getParamsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getParams() { - return getParamsMap(); - } - /** - * map<string, string> params = 5; - */ - @java.lang.Override - - public java.util.Map getParamsMap() { - return internalGetParams().getMap(); - } - /** - * map<string, string> params = 5; - */ - @java.lang.Override - - public java.lang.String getParamsOrDefault( - java.lang.String key, - java.lang.String defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, string> params = 5; - */ - @java.lang.Override - - public java.lang.String getParamsOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int LIST_FIELD_NUMBER = 6; - private com.google.protobuf.Internal.IntList list_; - /** - * repeated int32 list = 6; - * @return A list containing the list. - */ - @java.lang.Override - public java.util.List - getListList() { - return list_; - } - /** - * repeated int32 list = 6; - * @return The count of list. - */ - public int getListCount() { - return list_.size(); - } - /** - * repeated int32 list = 6; - * @param index The index of the element to return. - * @return The list at the given index. - */ - public int getList(int index) { - return list_.getInt(index); - } - private int listMemoizedSerializedSize = -1; - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - getSerializedSize(); - if (id_ != 0) { - output.writeInt32(1, id_); - } - if (java.lang.Float.floatToRawIntBits(f_) != 0) { - output.writeFloat(2, f_); - } - if (java.lang.Double.doubleToRawLongBits(d_) != 0) { - output.writeDouble(3, d_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(doc_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, doc_); - } - com.google.protobuf.GeneratedMessageV3 - .serializeStringMapTo( - output, - internalGetParams(), - ParamsDefaultEntryHolder.defaultEntry, - 5); - if (getListList().size() > 0) { - output.writeUInt32NoTag(50); - output.writeUInt32NoTag(listMemoizedSerializedSize); - } - for (int i = 0; i < list_.size(); i++) { - output.writeInt32NoTag(list_.getInt(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (id_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, id_); - } - if (java.lang.Float.floatToRawIntBits(f_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFloatSize(2, f_); - } - if (java.lang.Double.doubleToRawLongBits(d_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeDoubleSize(3, d_); - } - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(doc_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, doc_); - } - for (java.util.Map.Entry entry - : internalGetParams().getMap().entrySet()) { - com.google.protobuf.MapEntry - params__ = ParamsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(5, params__); - } - { - int dataSize = 0; - for (int i = 0; i < list_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeInt32SizeNoTag(list_.getInt(i)); - } - size += dataSize; - if (!getListList().isEmpty()) { - size += 1; - size += com.google.protobuf.CodedOutputStream - .computeInt32SizeNoTag(dataSize); - } - listMemoizedSerializedSize = dataSize; - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage other = (io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage) obj; - - if (getId() - != other.getId()) return false; - if (java.lang.Float.floatToIntBits(getF()) - != java.lang.Float.floatToIntBits( - other.getF())) return false; - if (java.lang.Double.doubleToLongBits(getD()) - != java.lang.Double.doubleToLongBits( - other.getD())) return false; - if (!getDoc() - .equals(other.getDoc())) return false; - if (!internalGetParams().equals( - other.internalGetParams())) return false; - if (!getListList() - .equals(other.getListList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ID_FIELD_NUMBER; - hash = (53 * hash) + getId(); - hash = (37 * hash) + F_FIELD_NUMBER; - hash = (53 * hash) + java.lang.Float.floatToIntBits( - getF()); - hash = (37 * hash) + D_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - java.lang.Double.doubleToLongBits(getD())); - hash = (37 * hash) + DOC_FIELD_NUMBER; - hash = (53 * hash) + getDoc().hashCode(); - if (!internalGetParams().getMap().isEmpty()) { - hash = (37 * hash) + PARAMS_FIELD_NUMBER; - hash = (53 * hash) + internalGetParams().hashCode(); - } - if (getListCount() > 0) { - hash = (37 * hash) + LIST_FIELD_NUMBER; - hash = (53 * hash) + getListList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.MyMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.MyMessage) - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 5: - return internalGetParams(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 5: - return internalGetMutableParams(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - id_ = 0; - - f_ = 0F; - - d_ = 0D; - - doc_ = ""; - - internalGetMutableParams().clear(); - list_ = emptyIntList(); - bitField0_ = (bitField0_ & ~0x00000002); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage build() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage buildPartial() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage result = new io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage(this); - int from_bitField0_ = bitField0_; - result.id_ = id_; - result.f_ = f_; - result.d_ = d_; - result.doc_ = doc_; - result.params_ = internalGetParams(); - result.params_.makeImmutable(); - if (((bitField0_ & 0x00000002) != 0)) { - list_.makeImmutable(); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.list_ = list_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage other) { - if (other == io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.getDefaultInstance()) return this; - if (other.getId() != 0) { - setId(other.getId()); - } - if (other.getF() != 0F) { - setF(other.getF()); - } - if (other.getD() != 0D) { - setD(other.getD()); - } - if (!other.getDoc().isEmpty()) { - doc_ = other.doc_; - onChanged(); - } - internalGetMutableParams().mergeFrom( - other.internalGetParams()); - if (!other.list_.isEmpty()) { - if (list_.isEmpty()) { - list_ = other.list_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensureListIsMutable(); - list_.addAll(other.list_); - } - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private int id_ ; - /** - * int32 id = 1; - * @return The id. - */ - @java.lang.Override - public int getId() { - return id_; - } - /** - * int32 id = 1; - * @param value The id to set. - * @return This builder for chaining. - */ - public Builder setId(int value) { - - id_ = value; - onChanged(); - return this; - } - /** - * int32 id = 1; - * @return This builder for chaining. - */ - public Builder clearId() { - - id_ = 0; - onChanged(); - return this; - } - - private float f_ ; - /** - * float f = 2; - * @return The f. - */ - @java.lang.Override - public float getF() { - return f_; - } - /** - * float f = 2; - * @param value The f to set. - * @return This builder for chaining. - */ - public Builder setF(float value) { - - f_ = value; - onChanged(); - return this; - } - /** - * float f = 2; - * @return This builder for chaining. - */ - public Builder clearF() { - - f_ = 0F; - onChanged(); - return this; - } - - private double d_ ; - /** - * double d = 3; - * @return The d. - */ - @java.lang.Override - public double getD() { - return d_; - } - /** - * double d = 3; - * @param value The d to set. - * @return This builder for chaining. - */ - public Builder setD(double value) { - - d_ = value; - onChanged(); - return this; - } - /** - * double d = 3; - * @return This builder for chaining. - */ - public Builder clearD() { - - d_ = 0D; - onChanged(); - return this; - } - - private java.lang.Object doc_ = ""; - /** - * string doc = 4; - * @return The doc. - */ - public java.lang.String getDoc() { - java.lang.Object ref = doc_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - doc_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string doc = 4; - * @return The bytes for doc. - */ - public com.google.protobuf.ByteString - getDocBytes() { - java.lang.Object ref = doc_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - doc_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string doc = 4; - * @param value The doc to set. - * @return This builder for chaining. - */ - public Builder setDoc( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - doc_ = value; - onChanged(); - return this; - } - /** - * string doc = 4; - * @return This builder for chaining. - */ - public Builder clearDoc() { - - doc_ = getDefaultInstance().getDoc(); - onChanged(); - return this; - } - /** - * string doc = 4; - * @param value The bytes for doc to set. - * @return This builder for chaining. - */ - public Builder setDocBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - doc_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.MapField< - java.lang.String, java.lang.String> params_; - private com.google.protobuf.MapField - internalGetParams() { - if (params_ == null) { - return com.google.protobuf.MapField.emptyMapField( - ParamsDefaultEntryHolder.defaultEntry); - } - return params_; - } - private com.google.protobuf.MapField - internalGetMutableParams() { - onChanged();; - if (params_ == null) { - params_ = com.google.protobuf.MapField.newMapField( - ParamsDefaultEntryHolder.defaultEntry); - } - if (!params_.isMutable()) { - params_ = params_.copy(); - } - return params_; - } - - public int getParamsCount() { - return internalGetParams().getMap().size(); - } - /** - * map<string, string> params = 5; - */ - - @java.lang.Override - public boolean containsParams( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetParams().getMap().containsKey(key); - } - /** - * Use {@link #getParamsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getParams() { - return getParamsMap(); - } - /** - * map<string, string> params = 5; - */ - @java.lang.Override - - public java.util.Map getParamsMap() { - return internalGetParams().getMap(); - } - /** - * map<string, string> params = 5; - */ - @java.lang.Override - - public java.lang.String getParamsOrDefault( - java.lang.String key, - java.lang.String defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, string> params = 5; - */ - @java.lang.Override - - public java.lang.String getParamsOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearParams() { - internalGetMutableParams().getMutableMap() - .clear(); - return this; - } - /** - * map<string, string> params = 5; - */ - - public Builder removeParams( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - internalGetMutableParams().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableParams() { - return internalGetMutableParams().getMutableMap(); - } - /** - * map<string, string> params = 5; - */ - public Builder putParams( - java.lang.String key, - java.lang.String value) { - if (key == null) { throw new NullPointerException("map key"); } - if (value == null) { - throw new NullPointerException("map value"); -} - - internalGetMutableParams().getMutableMap() - .put(key, value); - return this; - } - /** - * map<string, string> params = 5; - */ - - public Builder putAllParams( - java.util.Map values) { - internalGetMutableParams().getMutableMap() - .putAll(values); - return this; - } - - private com.google.protobuf.Internal.IntList list_ = emptyIntList(); - private void ensureListIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - list_ = mutableCopy(list_); - bitField0_ |= 0x00000002; - } - } - /** - * repeated int32 list = 6; - * @return A list containing the list. - */ - public java.util.List - getListList() { - return ((bitField0_ & 0x00000002) != 0) ? - java.util.Collections.unmodifiableList(list_) : list_; - } - /** - * repeated int32 list = 6; - * @return The count of list. - */ - public int getListCount() { - return list_.size(); - } - /** - * repeated int32 list = 6; - * @param index The index of the element to return. - * @return The list at the given index. - */ - public int getList(int index) { - return list_.getInt(index); - } - /** - * repeated int32 list = 6; - * @param index The index to set the value at. - * @param value The list to set. - * @return This builder for chaining. - */ - public Builder setList( - int index, int value) { - ensureListIsMutable(); - list_.setInt(index, value); - onChanged(); - return this; - } - /** - * repeated int32 list = 6; - * @param value The list to add. - * @return This builder for chaining. - */ - public Builder addList(int value) { - ensureListIsMutable(); - list_.addInt(value); - onChanged(); - return this; - } - /** - * repeated int32 list = 6; - * @param values The list to add. - * @return This builder for chaining. - */ - public Builder addAllList( - java.lang.Iterable values) { - ensureListIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, list_); - onChanged(); - return this; - } - /** - * repeated int32 list = 6; - * @return This builder for chaining. - */ - public Builder clearList() { - list_ = emptyIntList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.MyMessage) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.MyMessage) - private static final io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage(); - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public MyMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new MyMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int FILE_CUSTOM_FIELD_NUMBER = 1111; - /** - * extend .google.protobuf.FileOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FileOptions, - java.lang.String> fileCustom = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.String.class, - null); - public static final int FILE_CUSTOM2_FIELD_NUMBER = 1112; - /** - * extend .google.protobuf.FileOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FileOptions, - java.util.List> fileCustom2 = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.String.class, - null); - public static final int MESSAGE_CUSTOM_FIELD_NUMBER = 1111; - /** - * extend .google.protobuf.MessageOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.MessageOptions, - java.lang.Boolean> messageCustom = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.Boolean.class, - null); - public static final int MESSAGE_CUSTOM2_FIELD_NUMBER = 1112; - /** - * extend .google.protobuf.MessageOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.MessageOptions, - java.util.List> messageCustom2 = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.Boolean.class, - null); - public static final int FIELD_CUSTOM_FIELD_NUMBER = 1111; - /** - * extend .google.protobuf.FieldOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FieldOptions, - java.lang.Integer> fieldCustom = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.Integer.class, - null); - public static final int FIELD_CUSTOM2_FIELD_NUMBER = 1112; - /** - * extend .google.protobuf.FieldOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FieldOptions, - java.util.List> fieldCustom2 = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - java.lang.Integer.class, - null); - public static final int ENUM_CUSTOM_FIELD_NUMBER = 1111; - /** - * extend .google.protobuf.EnumOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumOptions, - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage> enumCustom = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.class, - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.getDefaultInstance()); - public static final int ENUM_CUSTOM2_FIELD_NUMBER = 1112; - /** - * extend .google.protobuf.EnumOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumOptions, - java.util.List> enumCustom2 = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.class, - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyMessage.getDefaultInstance()); - public static final int ENUM_VALUE_CUSTOM_FIELD_NUMBER = 1111; - /** - * extend .google.protobuf.EnumValueOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumValueOptions, - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyEnum> enumValueCustom = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyEnum.class, - null); - public static final int ENUM_VALUE_CUSTOM2_FIELD_NUMBER = 1112; - /** - * extend .google.protobuf.EnumValueOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumValueOptions, - java.util.List> enumValueCustom2 = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions.MyEnum.class, - null); - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_ParamsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_ParamsEntry_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\023CustomOptions.proto\022,io.confluent.kafk" + - "a.serializers.protobuf.test\032\024confluent/m" + - "eta.proto\032 google/protobuf/descriptor.pr" + - "oto\"m\n\024CustomMessageOptions\022 \n\013test_stri" + - "ng\030\001 \001(\tB\013\270E{\300E\310\003\300E\225\006\022\034\n\010test_int\030\002 \001(\005B" + - "\n\202D\007\n\005field:\025\202D\t\n\007message\270E\001\300E\001\300E\000\"\314\001\n\tM" + - "yMessage\022\n\n\002id\030\001 \001(\005\022\t\n\001f\030\002 \001(\002\022\t\n\001d\030\003 \001" + - "(\001\022\013\n\003doc\030\004 \001(\t\022S\n\006params\030\005 \003(\0132C.io.con" + - "fluent.kafka.serializers.protobuf.test.M" + - "yMessage.ParamsEntry\022\014\n\004list\030\006 \003(\005\032-\n\013Pa" + - "ramsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028" + - "\001*\302\001\n\021CustomEnumOptions\022\020\n\007CUSTOM0\020\000\032\003\270E" + - "\001\022\023\n\007CUSTOM1\020\001\032\006\300E\001\300E\002\022\034\n\007CUSTOM2\020\002\032\017\202D\014" + - "\n\nenum_value\032h\202D\006\n\004enum\272E\004\"\002hi\272E\002\010\001\272E\005\025\000" + - "\000\366B\272E\t\031\000\000\000\000\000\200|@\302E\033\010\002\"\002hi*\016\n\005hello\022\005world" + - "2\003\004\005\006\302E\036\010\003\"\003bye*\020\n\007goodbye\022\005world2\003\007\010\t*)" + - "\n\006MyEnum\022\t\n\005ENUM0\020\000\022\t\n\005ENUM1\020\001\022\t\n\005ENUM2\020" + - "\002:2\n\013file_custom\022\034.google.protobuf.FileO" + - "ptions\030\327\010 \001(\t:3\n\014file_custom2\022\034.google.p" + - "rotobuf.FileOptions\030\330\010 \003(\t:8\n\016message_cu" + - "stom\022\037.google.protobuf.MessageOptions\030\327\010" + - " \001(\010:9\n\017message_custom2\022\037.google.protobu" + - "f.MessageOptions\030\330\010 \003(\010:4\n\014field_custom\022" + - "\035.google.protobuf.FieldOptions\030\327\010 \001(\005:5\n" + - "\rfield_custom2\022\035.google.protobuf.FieldOp" + - "tions\030\330\010 \003(\005:k\n\013enum_custom\022\034.google.pro" + - "tobuf.EnumOptions\030\327\010 \001(\01327.io.confluent." + - "kafka.serializers.protobuf.test.MyMessag" + - "e:l\n\014enum_custom2\022\034.google.protobuf.Enum" + - "Options\030\330\010 \003(\01327.io.confluent.kafka.seri" + - "alizers.protobuf.test.MyMessage:s\n\021enum_" + - "value_custom\022!.google.protobuf.EnumValue" + - "Options\030\327\010 \001(\01624.io.confluent.kafka.seri" + - "alizers.protobuf.test.MyEnum:t\n\022enum_val" + - "ue_custom2\022!.google.protobuf.EnumValueOp" + - "tions\030\330\010 \003(\01624.io.confluent.kafka.serial" + - "izers.protobuf.test.MyEnumBE\n,io.conflue" + - "nt.kafka.serializers.protobuf.test\272E\004tes" + - "t\302E\005hello\302E\005worldb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - com.google.protobuf.DescriptorProtos.getDescriptor(), - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_CustomMessageOptions_descriptor, - new java.lang.String[] { "TestString", "TestInt", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor, - new java.lang.String[] { "Id", "F", "D", "Doc", "Params", "List", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_ParamsEntry_descriptor = - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_descriptor.getNestedTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_ParamsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_MyMessage_ParamsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - fileCustom.internalInit(descriptor.getExtensions().get(0)); - fileCustom2.internalInit(descriptor.getExtensions().get(1)); - messageCustom.internalInit(descriptor.getExtensions().get(2)); - messageCustom2.internalInit(descriptor.getExtensions().get(3)); - fieldCustom.internalInit(descriptor.getExtensions().get(4)); - fieldCustom2.internalInit(descriptor.getExtensions().get(5)); - enumCustom.internalInit(descriptor.getExtensions().get(6)); - enumCustom2.internalInit(descriptor.getExtensions().get(7)); - enumValueCustom.internalInit(descriptor.getExtensions().get(8)); - enumValueCustom2.internalInit(descriptor.getExtensions().get(9)); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.enumMeta); - registry.add(io.confluent.protobuf.MetaProto.enumValueMeta); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - registry.add(io.confluent.protobuf.MetaProto.messageMeta); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumValueCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.enumValueCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fieldCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fieldCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fileCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.fileCustom2); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.messageCustom); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions.messageCustom2); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - com.google.protobuf.DescriptorProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/CustomOptions2.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/CustomOptions2.java deleted file mode 100644 index 04e9b258996..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/CustomOptions2.java +++ /dev/null @@ -1,1997 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: CustomOptions2.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class CustomOptions2 { - private CustomOptions2() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.myMessageOption); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.ext); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.rep); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.foobarString); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.moreString); - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface FooBarOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.FooBar) - com.google.protobuf.GeneratedMessageV3. - ExtendableMessageOrBuilder { - - /** - * optional int32 foo = 1; - * @return Whether the foo field is set. - */ - boolean hasFoo(); - /** - * optional int32 foo = 1; - * @return The foo. - */ - int getFoo(); - - /** - * optional string bar = 2; - * @return Whether the bar field is set. - */ - boolean hasBar(); - /** - * optional string bar = 2; - * @return The bar. - */ - java.lang.String getBar(); - /** - * optional string bar = 2; - * @return The bytes for bar. - */ - com.google.protobuf.ByteString - getBarBytes(); - - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - java.util.List - getNestedList(); - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar getNested(int index); - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - int getNestedCount(); - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - java.util.List - getNestedOrBuilderList(); - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder getNestedOrBuilder( - int index); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.FooBar} - */ - public static final class FooBar extends - com.google.protobuf.GeneratedMessageV3.ExtendableMessage< - FooBar> implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.FooBar) - FooBarOrBuilder { - private static final long serialVersionUID = 0L; - // Use FooBar.newBuilder() to construct. - private FooBar(com.google.protobuf.GeneratedMessageV3.ExtendableBuilder builder) { - super(builder); - } - private FooBar() { - bar_ = ""; - nested_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new FooBar(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private FooBar( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - bitField0_ |= 0x00000001; - foo_ = input.readInt32(); - break; - } - case 18: { - com.google.protobuf.ByteString bs = input.readBytes(); - bitField0_ |= 0x00000002; - bar_ = bs; - break; - } - case 26: { - if (!((mutable_bitField0_ & 0x00000004) != 0)) { - nested_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000004; - } - nested_.add( - input.readMessage(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.PARSER, extensionRegistry)); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000004) != 0)) { - nested_ = java.util.Collections.unmodifiableList(nested_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder.class); - } - - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.FooBar.FooBarBazEnum} - */ - public enum FooBarBazEnum - implements com.google.protobuf.ProtocolMessageEnum { - /** - * FOO = 1; - */ - FOO(1), - /** - * BAR = 2; - */ - BAR(2), - /** - * BAZ = 3; - */ - BAZ(3), - ; - - /** - * FOO = 1; - */ - public static final int FOO_VALUE = 1; - /** - * BAR = 2; - */ - public static final int BAR_VALUE = 2; - /** - * BAZ = 3; - */ - public static final int BAZ_VALUE = 3; - - - public final int getNumber() { - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static FooBarBazEnum valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static FooBarBazEnum forNumber(int value) { - switch (value) { - case 1: return FOO; - case 2: return BAR; - case 3: return BAZ; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - FooBarBazEnum> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public FooBarBazEnum findValueByNumber(int number) { - return FooBarBazEnum.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDescriptor().getEnumTypes().get(0); - } - - private static final FooBarBazEnum[] VALUES = values(); - - public static FooBarBazEnum valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private FooBarBazEnum(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.FooBar.FooBarBazEnum) - } - - public interface MoreOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.FooBar.More) - com.google.protobuf.MessageOrBuilder { - - /** - * repeated int32 serial = 1; - * @return A list containing the serial. - */ - java.util.List getSerialList(); - /** - * repeated int32 serial = 1; - * @return The count of serial. - */ - int getSerialCount(); - /** - * repeated int32 serial = 1; - * @param index The index of the element to return. - * @return The serial at the given index. - */ - int getSerial(int index); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.FooBar.More} - */ - public static final class More extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.FooBar.More) - MoreOrBuilder { - private static final long serialVersionUID = 0L; - // Use More.newBuilder() to construct. - private More(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private More() { - serial_ = emptyIntList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new More(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private More( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - serial_ = newIntList(); - mutable_bitField0_ |= 0x00000001; - } - serial_.addInt(input.readInt32()); - break; - } - case 10: { - int length = input.readRawVarint32(); - int limit = input.pushLimit(length); - if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) { - serial_ = newIntList(); - mutable_bitField0_ |= 0x00000001; - } - while (input.getBytesUntilLimit() > 0) { - serial_.addInt(input.readInt32()); - } - input.popLimit(limit); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - serial_.makeImmutable(); // C - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.Builder.class); - } - - public static final int SERIAL_FIELD_NUMBER = 1; - private com.google.protobuf.Internal.IntList serial_; - /** - * repeated int32 serial = 1; - * @return A list containing the serial. - */ - @java.lang.Override - public java.util.List - getSerialList() { - return serial_; - } - /** - * repeated int32 serial = 1; - * @return The count of serial. - */ - public int getSerialCount() { - return serial_.size(); - } - /** - * repeated int32 serial = 1; - * @param index The index of the element to return. - * @return The serial at the given index. - */ - public int getSerial(int index) { - return serial_.getInt(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - for (int i = 0; i < serial_.size(); i++) { - output.writeInt32(1, serial_.getInt(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - { - int dataSize = 0; - for (int i = 0; i < serial_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeInt32SizeNoTag(serial_.getInt(i)); - } - size += dataSize; - size += 1 * getSerialList().size(); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More other = (io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More) obj; - - if (!getSerialList() - .equals(other.getSerialList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (getSerialCount() > 0) { - hash = (37 * hash) + SERIAL_FIELD_NUMBER; - hash = (53 * hash) + getSerialList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.FooBar.More} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.FooBar.More) - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.MoreOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - serial_ = emptyIntList(); - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More build() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More buildPartial() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More result = new io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More(this); - int from_bitField0_ = bitField0_; - if (((bitField0_ & 0x00000001) != 0)) { - serial_.makeImmutable(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.serial_ = serial_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More other) { - if (other == io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.getDefaultInstance()) return this; - if (!other.serial_.isEmpty()) { - if (serial_.isEmpty()) { - serial_ = other.serial_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureSerialIsMutable(); - serial_.addAll(other.serial_); - } - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private com.google.protobuf.Internal.IntList serial_ = emptyIntList(); - private void ensureSerialIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - serial_ = mutableCopy(serial_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated int32 serial = 1; - * @return A list containing the serial. - */ - public java.util.List - getSerialList() { - return ((bitField0_ & 0x00000001) != 0) ? - java.util.Collections.unmodifiableList(serial_) : serial_; - } - /** - * repeated int32 serial = 1; - * @return The count of serial. - */ - public int getSerialCount() { - return serial_.size(); - } - /** - * repeated int32 serial = 1; - * @param index The index of the element to return. - * @return The serial at the given index. - */ - public int getSerial(int index) { - return serial_.getInt(index); - } - /** - * repeated int32 serial = 1; - * @param index The index to set the value at. - * @param value The serial to set. - * @return This builder for chaining. - */ - public Builder setSerial( - int index, int value) { - ensureSerialIsMutable(); - serial_.setInt(index, value); - onChanged(); - return this; - } - /** - * repeated int32 serial = 1; - * @param value The serial to add. - * @return This builder for chaining. - */ - public Builder addSerial(int value) { - ensureSerialIsMutable(); - serial_.addInt(value); - onChanged(); - return this; - } - /** - * repeated int32 serial = 1; - * @param values The serial to add. - * @return This builder for chaining. - */ - public Builder addAllSerial( - java.lang.Iterable values) { - ensureSerialIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, serial_); - onChanged(); - return this; - } - /** - * repeated int32 serial = 1; - * @return This builder for chaining. - */ - public Builder clearSerial() { - serial_ = emptyIntList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.FooBar.More) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.FooBar.More) - private static final io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More(); - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - @java.lang.Deprecated public static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public More parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new More(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - public static final int MORE_STRING_FIELD_NUMBER = 150; - /** - * extend .io.confluent.kafka.serializers.protobuf.test.FooBar { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, - java.lang.String> moreString = com.google.protobuf.GeneratedMessage - .newMessageScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.getDefaultInstance(), - 0, - java.lang.String.class, - null); - } - - private int bitField0_; - public static final int FOO_FIELD_NUMBER = 1; - private int foo_; - /** - * optional int32 foo = 1; - * @return Whether the foo field is set. - */ - @java.lang.Override - public boolean hasFoo() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - * optional int32 foo = 1; - * @return The foo. - */ - @java.lang.Override - public int getFoo() { - return foo_; - } - - public static final int BAR_FIELD_NUMBER = 2; - private volatile java.lang.Object bar_; - /** - * optional string bar = 2; - * @return Whether the bar field is set. - */ - @java.lang.Override - public boolean hasBar() { - return ((bitField0_ & 0x00000002) != 0); - } - /** - * optional string bar = 2; - * @return The bar. - */ - @java.lang.Override - public java.lang.String getBar() { - java.lang.Object ref = bar_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - bar_ = s; - } - return s; - } - } - /** - * optional string bar = 2; - * @return The bytes for bar. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getBarBytes() { - java.lang.Object ref = bar_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - bar_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int NESTED_FIELD_NUMBER = 3; - private java.util.List nested_; - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - @java.lang.Override - public java.util.List getNestedList() { - return nested_; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - @java.lang.Override - public java.util.List - getNestedOrBuilderList() { - return nested_; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - @java.lang.Override - public int getNestedCount() { - return nested_.size(); - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar getNested(int index) { - return nested_.get(index); - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder getNestedOrBuilder( - int index) { - return nested_.get(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - for (int i = 0; i < getNestedCount(); i++) { - if (!getNested(i).isInitialized()) { - memoizedIsInitialized = 0; - return false; - } - } - if (!extensionsAreInitialized()) { - memoizedIsInitialized = 0; - return false; - } - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - com.google.protobuf.GeneratedMessageV3 - .ExtendableMessage.ExtensionWriter - extensionWriter = newExtensionWriter(); - if (((bitField0_ & 0x00000001) != 0)) { - output.writeInt32(1, foo_); - } - if (((bitField0_ & 0x00000002) != 0)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, bar_); - } - for (int i = 0; i < nested_.size(); i++) { - output.writeMessage(3, nested_.get(i)); - } - extensionWriter.writeUntil(201, output); - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, foo_); - } - if (((bitField0_ & 0x00000002) != 0)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, bar_); - } - for (int i = 0; i < nested_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, nested_.get(i)); - } - size += extensionsSerializedSize(); - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar other = (io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar) obj; - - if (hasFoo() != other.hasFoo()) return false; - if (hasFoo()) { - if (getFoo() - != other.getFoo()) return false; - } - if (hasBar() != other.hasBar()) return false; - if (hasBar()) { - if (!getBar() - .equals(other.getBar())) return false; - } - if (!getNestedList() - .equals(other.getNestedList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - if (!getExtensionFields().equals(other.getExtensionFields())) - return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasFoo()) { - hash = (37 * hash) + FOO_FIELD_NUMBER; - hash = (53 * hash) + getFoo(); - } - if (hasBar()) { - hash = (37 * hash) + BAR_FIELD_NUMBER; - hash = (53 * hash) + getBar().hashCode(); - } - if (getNestedCount() > 0) { - hash = (37 * hash) + NESTED_FIELD_NUMBER; - hash = (53 * hash) + getNestedList().hashCode(); - } - hash = hashFields(hash, getExtensionFields()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.FooBar} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.ExtendableBuilder< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, Builder> implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.FooBar) - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.class, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getNestedFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - foo_ = 0; - bitField0_ = (bitField0_ & ~0x00000001); - bar_ = ""; - bitField0_ = (bitField0_ & ~0x00000002); - if (nestedBuilder_ == null) { - nested_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000004); - } else { - nestedBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar build() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar buildPartial() { - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar result = new io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar(this); - int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000001) != 0)) { - result.foo_ = foo_; - to_bitField0_ |= 0x00000001; - } - if (((from_bitField0_ & 0x00000002) != 0)) { - to_bitField0_ |= 0x00000002; - } - result.bar_ = bar_; - if (nestedBuilder_ == null) { - if (((bitField0_ & 0x00000004) != 0)) { - nested_ = java.util.Collections.unmodifiableList(nested_); - bitField0_ = (bitField0_ & ~0x00000004); - } - result.nested_ = nested_; - } else { - result.nested_ = nestedBuilder_.build(); - } - result.bitField0_ = to_bitField0_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder setExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, Type> extension, - Type value) { - return super.setExtension(extension, value); - } - @java.lang.Override - public Builder setExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, java.util.List> extension, - int index, Type value) { - return super.setExtension(extension, index, value); - } - @java.lang.Override - public Builder addExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, java.util.List> extension, - Type value) { - return super.addExtension(extension, value); - } - @java.lang.Override - public Builder clearExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, ?> extension) { - return super.clearExtension(extension); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar other) { - if (other == io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDefaultInstance()) return this; - if (other.hasFoo()) { - setFoo(other.getFoo()); - } - if (other.hasBar()) { - bitField0_ |= 0x00000002; - bar_ = other.bar_; - onChanged(); - } - if (nestedBuilder_ == null) { - if (!other.nested_.isEmpty()) { - if (nested_.isEmpty()) { - nested_ = other.nested_; - bitField0_ = (bitField0_ & ~0x00000004); - } else { - ensureNestedIsMutable(); - nested_.addAll(other.nested_); - } - onChanged(); - } - } else { - if (!other.nested_.isEmpty()) { - if (nestedBuilder_.isEmpty()) { - nestedBuilder_.dispose(); - nestedBuilder_ = null; - nested_ = other.nested_; - bitField0_ = (bitField0_ & ~0x00000004); - nestedBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getNestedFieldBuilder() : null; - } else { - nestedBuilder_.addAllMessages(other.nested_); - } - } - } - this.mergeExtensionFields(other); - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - for (int i = 0; i < getNestedCount(); i++) { - if (!getNested(i).isInitialized()) { - return false; - } - } - if (!extensionsAreInitialized()) { - return false; - } - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private int foo_ ; - /** - * optional int32 foo = 1; - * @return Whether the foo field is set. - */ - @java.lang.Override - public boolean hasFoo() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - * optional int32 foo = 1; - * @return The foo. - */ - @java.lang.Override - public int getFoo() { - return foo_; - } - /** - * optional int32 foo = 1; - * @param value The foo to set. - * @return This builder for chaining. - */ - public Builder setFoo(int value) { - bitField0_ |= 0x00000001; - foo_ = value; - onChanged(); - return this; - } - /** - * optional int32 foo = 1; - * @return This builder for chaining. - */ - public Builder clearFoo() { - bitField0_ = (bitField0_ & ~0x00000001); - foo_ = 0; - onChanged(); - return this; - } - - private java.lang.Object bar_ = ""; - /** - * optional string bar = 2; - * @return Whether the bar field is set. - */ - public boolean hasBar() { - return ((bitField0_ & 0x00000002) != 0); - } - /** - * optional string bar = 2; - * @return The bar. - */ - public java.lang.String getBar() { - java.lang.Object ref = bar_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - bar_ = s; - } - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * optional string bar = 2; - * @return The bytes for bar. - */ - public com.google.protobuf.ByteString - getBarBytes() { - java.lang.Object ref = bar_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - bar_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * optional string bar = 2; - * @param value The bar to set. - * @return This builder for chaining. - */ - public Builder setBar( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - bar_ = value; - onChanged(); - return this; - } - /** - * optional string bar = 2; - * @return This builder for chaining. - */ - public Builder clearBar() { - bitField0_ = (bitField0_ & ~0x00000002); - bar_ = getDefaultInstance().getBar(); - onChanged(); - return this; - } - /** - * optional string bar = 2; - * @param value The bytes for bar to set. - * @return This builder for chaining. - */ - public Builder setBarBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - bar_ = value; - onChanged(); - return this; - } - - private java.util.List nested_ = - java.util.Collections.emptyList(); - private void ensureNestedIsMutable() { - if (!((bitField0_ & 0x00000004) != 0)) { - nested_ = new java.util.ArrayList(nested_); - bitField0_ |= 0x00000004; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder> nestedBuilder_; - - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public java.util.List getNestedList() { - if (nestedBuilder_ == null) { - return java.util.Collections.unmodifiableList(nested_); - } else { - return nestedBuilder_.getMessageList(); - } - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public int getNestedCount() { - if (nestedBuilder_ == null) { - return nested_.size(); - } else { - return nestedBuilder_.getCount(); - } - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar getNested(int index) { - if (nestedBuilder_ == null) { - return nested_.get(index); - } else { - return nestedBuilder_.getMessage(index); - } - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder setNested( - int index, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar value) { - if (nestedBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureNestedIsMutable(); - nested_.set(index, value); - onChanged(); - } else { - nestedBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder setNested( - int index, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder builderForValue) { - if (nestedBuilder_ == null) { - ensureNestedIsMutable(); - nested_.set(index, builderForValue.build()); - onChanged(); - } else { - nestedBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder addNested(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar value) { - if (nestedBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureNestedIsMutable(); - nested_.add(value); - onChanged(); - } else { - nestedBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder addNested( - int index, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar value) { - if (nestedBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureNestedIsMutable(); - nested_.add(index, value); - onChanged(); - } else { - nestedBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder addNested( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder builderForValue) { - if (nestedBuilder_ == null) { - ensureNestedIsMutable(); - nested_.add(builderForValue.build()); - onChanged(); - } else { - nestedBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder addNested( - int index, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder builderForValue) { - if (nestedBuilder_ == null) { - ensureNestedIsMutable(); - nested_.add(index, builderForValue.build()); - onChanged(); - } else { - nestedBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder addAllNested( - java.lang.Iterable values) { - if (nestedBuilder_ == null) { - ensureNestedIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, nested_); - onChanged(); - } else { - nestedBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder clearNested() { - if (nestedBuilder_ == null) { - nested_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000004); - onChanged(); - } else { - nestedBuilder_.clear(); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public Builder removeNested(int index) { - if (nestedBuilder_ == null) { - ensureNestedIsMutable(); - nested_.remove(index); - onChanged(); - } else { - nestedBuilder_.remove(index); - } - return this; - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder getNestedBuilder( - int index) { - return getNestedFieldBuilder().getBuilder(index); - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder getNestedOrBuilder( - int index) { - if (nestedBuilder_ == null) { - return nested_.get(index); } else { - return nestedBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public java.util.List - getNestedOrBuilderList() { - if (nestedBuilder_ != null) { - return nestedBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(nested_); - } - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder addNestedBuilder() { - return getNestedFieldBuilder().addBuilder( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder addNestedBuilder( - int index) { - return getNestedFieldBuilder().addBuilder( - index, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.serializers.protobuf.test.FooBar nested = 3; - */ - public java.util.List - getNestedBuilderList() { - return getNestedFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder> - getNestedFieldBuilder() { - if (nestedBuilder_ == null) { - nestedBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.Builder, io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBarOrBuilder>( - nested_, - ((bitField0_ & 0x00000004) != 0), - getParentForChildren(), - isClean()); - nested_ = null; - } - return nestedBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.FooBar) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.FooBar) - private static final io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar(); - } - - public static io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - @java.lang.Deprecated public static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public FooBar parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new FooBar(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - public static final int FOOBAR_STRING_FIELD_NUMBER = 71001; - /** - * extend .google.protobuf.EnumOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumOptions, - java.lang.String> foobarString = com.google.protobuf.GeneratedMessage - .newMessageScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDefaultInstance(), - 0, - java.lang.String.class, - null); - } - - public static final int MY_MESSAGE_OPTION_FIELD_NUMBER = 50001; - /** - * extend .google.protobuf.MessageOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.MessageOptions, - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar> myMessageOption = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.class, - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.getDefaultInstance()); - public static final int EXT_FIELD_NUMBER = 101; - /** - * extend .io.confluent.kafka.serializers.protobuf.test.FooBar { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.FooBarBazEnum> ext = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.FooBarBazEnum.class, - null); - public static final int REP_FIELD_NUMBER = 102; - /** - * extend .io.confluent.kafka.serializers.protobuf.test.FooBar { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar, - java.util.List> rep = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.FooBarBazEnum.class, - null); - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\024CustomOptions2.proto\022,io.confluent.kaf" + - "ka.serializers.protobuf.test\032 google/pro" + - "tobuf/descriptor.proto\"\321\002\n\006FooBar\022\013\n\003foo" + - "\030\001 \001(\005\022\013\n\003bar\030\002 \001(\t\022D\n\006nested\030\003 \003(\01324.io" + - ".confluent.kafka.serializers.protobuf.te" + - "st.FooBar\032q\n\004More\022\016\n\006serial\030\001 \003(\0052J\n\013mor" + - "e_string\0224.io.confluent.kafka.serializer" + - "s.protobuf.test.FooBar\030\226\001 \001(\t:\r\212\265\030\t\262\t\006fo" + - "obar\"6\n\rFooBarBazEnum\022\007\n\003FOO\020\001\022\007\n\003BAR\020\002\022" + - "\007\n\003BAZ\020\003\032\n\312\325\"\006foobar*\005\010d\020\311\00125\n\rfoobar_st" + - "ring\022\034.google.protobuf.EnumOptions\030\331\252\004 \001" + - "(\t:r\n\021my_message_option\022\037.google.protobu" + - "f.MessageOptions\030\321\206\003 \001(\01324.io.confluent." + - "kafka.serializers.protobuf.test.FooBar:\205" + - "\001\n\003ext\0224.io.confluent.kafka.serializers." + - "protobuf.test.FooBar\030e \001(\0162B.io.confluen" + - "t.kafka.serializers.protobuf.test.FooBar" + - ".FooBarBazEnum:\205\001\n\003rep\0224.io.confluent.ka" + - "fka.serializers.protobuf.test.FooBar\030f \003" + - "(\0162B.io.confluent.kafka.serializers.prot" + - "obuf.test.FooBar.FooBarBazEnumB.\n,io.con" + - "fluent.kafka.serializers.protobuf.test" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.DescriptorProtos.getDescriptor(), - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor, - new java.lang.String[] { "Foo", "Bar", "Nested", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_descriptor = - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor.getNestedTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_More_descriptor, - new java.lang.String[] { "Serial", }); - myMessageOption.internalInit(descriptor.getExtensions().get(0)); - ext.internalInit(descriptor.getExtensions().get(1)); - rep.internalInit(descriptor.getExtensions().get(2)); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.More.moreString); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.FooBar.foobarString); - registry.add(io.confluent.kafka.serializers.protobuf.test.CustomOptions2.myMessageOption); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - com.google.protobuf.DescriptorProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DateValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DateValueOuterClass.java deleted file mode 100644 index 9f61b84fbd7..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DateValueOuterClass.java +++ /dev/null @@ -1,740 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DateValue.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class DateValueOuterClass { - private DateValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface DateValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:DateValue) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.Date value = 1; - * @return Whether the value field is set. - */ - boolean hasValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.Date value = 1; - * @return The value. - */ - com.google.type.Date getValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.Date value = 1; - */ - com.google.type.DateOrBuilder getValueOrBuilder(); - } - /** - *
-   * Wrapper message for `Date`.
-   * 
- * - * Protobuf type {@code DateValue} - */ - public static final class DateValue extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:DateValue) - DateValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use DateValue.newBuilder() to construct. - private DateValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DateValue() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DateValue(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DateValue( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.google.type.Date.Builder subBuilder = null; - if (value_ != null) { - subBuilder = value_.toBuilder(); - } - value_ = input.readMessage(com.google.type.Date.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value_); - value_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.internal_static_DateValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.internal_static_DateValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.class, io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private com.google.type.Date value_; - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.Date value = 1; - * @return Whether the value field is set. - */ - @java.lang.Override - public boolean hasValue() { - return value_ != null; - } - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.Date value = 1; - * @return The value. - */ - @java.lang.Override - public com.google.type.Date getValue() { - return value_ == null ? com.google.type.Date.getDefaultInstance() : value_; - } - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.Date value = 1; - */ - @java.lang.Override - public com.google.type.DateOrBuilder getValueOrBuilder() { - return getValue(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != null) { - output.writeMessage(1, getValue()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getValue()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue other = (io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue) obj; - - if (hasValue() != other.hasValue()) return false; - if (hasValue()) { - if (!getValue() - .equals(other.getValue())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasValue()) { - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Date`.
-     * 
- * - * Protobuf type {@code DateValue} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:DateValue) - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.internal_static_DateValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.internal_static_DateValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.class, io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (valueBuilder_ == null) { - value_ = null; - } else { - value_ = null; - valueBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.internal_static_DateValue_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue build() { - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue buildPartial() { - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue result = new io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue(this); - if (valueBuilder_ == null) { - result.value_ = value_; - } else { - result.value_ = valueBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue other) { - if (other == io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue.getDefaultInstance()) return this; - if (other.hasValue()) { - mergeValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private com.google.type.Date value_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.type.Date, com.google.type.Date.Builder, com.google.type.DateOrBuilder> valueBuilder_; - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - * @return Whether the value field is set. - */ - public boolean hasValue() { - return valueBuilder_ != null || value_ != null; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - * @return The value. - */ - public com.google.type.Date getValue() { - if (valueBuilder_ == null) { - return value_ == null ? com.google.type.Date.getDefaultInstance() : value_; - } else { - return valueBuilder_.getMessage(); - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - public Builder setValue(com.google.type.Date value) { - if (valueBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value_ = value; - onChanged(); - } else { - valueBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - public Builder setValue( - com.google.type.Date.Builder builderForValue) { - if (valueBuilder_ == null) { - value_ = builderForValue.build(); - onChanged(); - } else { - valueBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - public Builder mergeValue(com.google.type.Date value) { - if (valueBuilder_ == null) { - if (value_ != null) { - value_ = - com.google.type.Date.newBuilder(value_).mergeFrom(value).buildPartial(); - } else { - value_ = value; - } - onChanged(); - } else { - valueBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - public Builder clearValue() { - if (valueBuilder_ == null) { - value_ = null; - onChanged(); - } else { - value_ = null; - valueBuilder_ = null; - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - public com.google.type.Date.Builder getValueBuilder() { - - onChanged(); - return getValueFieldBuilder().getBuilder(); - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - public com.google.type.DateOrBuilder getValueOrBuilder() { - if (valueBuilder_ != null) { - return valueBuilder_.getMessageOrBuilder(); - } else { - return value_ == null ? - com.google.type.Date.getDefaultInstance() : value_; - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.Date value = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.type.Date, com.google.type.Date.Builder, com.google.type.DateOrBuilder> - getValueFieldBuilder() { - if (valueBuilder_ == null) { - valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.type.Date, com.google.type.Date.Builder, com.google.type.DateOrBuilder>( - getValue(), - getParentForChildren(), - isClean()); - value_ = null; - } - return valueBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:DateValue) - } - - // @@protoc_insertion_point(class_scope:DateValue) - private static final io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue(); - } - - public static io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DateValue parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DateValue(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DateValueOuterClass.DateValue getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_DateValue_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_DateValue_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\017DateValue.proto\032\026google/type/date.prot" + - "o\"-\n\tDateValue\022 \n\005value\030\001 \001(\0132\021.google.t" + - "ype.DateB.\n,io.confluent.kafka.serialize" + - "rs.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.type.DateProto.getDescriptor(), - }); - internal_static_DateValue_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_DateValue_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_DateValue_descriptor, - new java.lang.String[] { "Value", }); - com.google.type.DateProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DecimalValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DecimalValueOuterClass.java deleted file mode 100644 index 6ca4212f962..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DecimalValueOuterClass.java +++ /dev/null @@ -1,750 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DecimalValue.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class DecimalValueOuterClass { - private DecimalValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface DecimalValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:DecimalValue) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * The bytes value.
-     * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return Whether the value field is set. - */ - boolean hasValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - io.confluent.protobuf.type.Decimal getValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - io.confluent.protobuf.type.DecimalOrBuilder getValueOrBuilder(); - } - /** - *
-   * Wrapper message for `Decimal`.
-   * 
- * - * Protobuf type {@code DecimalValue} - */ - public static final class DecimalValue extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:DecimalValue) - DecimalValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use DecimalValue.newBuilder() to construct. - private DecimalValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DecimalValue() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DecimalValue(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DecimalValue( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - io.confluent.protobuf.type.Decimal.Builder subBuilder = null; - if (value_ != null) { - subBuilder = value_.toBuilder(); - } - value_ = input.readMessage(io.confluent.protobuf.type.Decimal.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value_); - value_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.internal_static_DecimalValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.internal_static_DecimalValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.class, io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private io.confluent.protobuf.type.Decimal value_; - /** - *
-     * The bytes value.
-     * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return Whether the value field is set. - */ - @java.lang.Override - public boolean hasValue() { - return value_ != null; - } - /** - *
-     * The bytes value.
-     * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - @java.lang.Override - public io.confluent.protobuf.type.Decimal getValue() { - return value_ == null ? io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } - /** - *
-     * The bytes value.
-     * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - @java.lang.Override - public io.confluent.protobuf.type.DecimalOrBuilder getValueOrBuilder() { - return getValue(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != null) { - output.writeMessage(1, getValue()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getValue()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue other = (io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue) obj; - - if (hasValue() != other.hasValue()) return false; - if (hasValue()) { - if (!getValue() - .equals(other.getValue())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasValue()) { - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Decimal`.
-     * 
- * - * Protobuf type {@code DecimalValue} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:DecimalValue) - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.internal_static_DecimalValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.internal_static_DecimalValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.class, io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (valueBuilder_ == null) { - value_ = null; - } else { - value_ = null; - valueBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.internal_static_DecimalValue_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue build() { - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue buildPartial() { - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue result = new io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue(this); - if (valueBuilder_ == null) { - result.value_ = value_; - } else { - result.value_ = valueBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue other) { - if (other == io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue.getDefaultInstance()) return this; - if (other.hasValue()) { - mergeValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private io.confluent.protobuf.type.Decimal value_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.protobuf.type.Decimal, io.confluent.protobuf.type.Decimal.Builder, io.confluent.protobuf.type.DecimalOrBuilder> valueBuilder_; - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return Whether the value field is set. - */ - public boolean hasValue() { - return valueBuilder_ != null || value_ != null; - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - public io.confluent.protobuf.type.Decimal getValue() { - if (valueBuilder_ == null) { - return value_ == null ? io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } else { - return valueBuilder_.getMessage(); - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder setValue(io.confluent.protobuf.type.Decimal value) { - if (valueBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value_ = value; - onChanged(); - } else { - valueBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder setValue( - io.confluent.protobuf.type.Decimal.Builder builderForValue) { - if (valueBuilder_ == null) { - value_ = builderForValue.build(); - onChanged(); - } else { - valueBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder mergeValue(io.confluent.protobuf.type.Decimal value) { - if (valueBuilder_ == null) { - if (value_ != null) { - value_ = - io.confluent.protobuf.type.Decimal.newBuilder(value_).mergeFrom(value).buildPartial(); - } else { - value_ = value; - } - onChanged(); - } else { - valueBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder clearValue() { - if (valueBuilder_ == null) { - value_ = null; - onChanged(); - } else { - value_ = null; - valueBuilder_ = null; - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public io.confluent.protobuf.type.Decimal.Builder getValueBuilder() { - - onChanged(); - return getValueFieldBuilder().getBuilder(); - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public io.confluent.protobuf.type.DecimalOrBuilder getValueOrBuilder() { - if (valueBuilder_ != null) { - return valueBuilder_.getMessageOrBuilder(); - } else { - return value_ == null ? - io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.protobuf.type.Decimal, io.confluent.protobuf.type.Decimal.Builder, io.confluent.protobuf.type.DecimalOrBuilder> - getValueFieldBuilder() { - if (valueBuilder_ == null) { - valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.protobuf.type.Decimal, io.confluent.protobuf.type.Decimal.Builder, io.confluent.protobuf.type.DecimalOrBuilder>( - getValue(), - getParentForChildren(), - isClean()); - value_ = null; - } - return valueBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:DecimalValue) - } - - // @@protoc_insertion_point(class_scope:DecimalValue) - private static final io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue(); - } - - public static io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DecimalValue parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DecimalValue(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValueOuterClass.DecimalValue getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_DecimalValue_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_DecimalValue_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\022DecimalValue.proto\032\024confluent/meta.pro" + - "to\032\034confluent/type/decimal.proto\"e\n\014Deci" + - "malValue\022G\n\005value\030\001 \001(\0132\027.confluent.type" + - ".DecimalB\037\202D\034\022\016\n\tprecision\022\0018\022\n\n\005scale\022\001" + - "3:\014\202D\t\n\007messageB.\n,io.confluent.kafka.se" + - "rializers.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - io.confluent.protobuf.type.DecimalProto.getDescriptor(), - }); - internal_static_DecimalValue_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_DecimalValue_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_DecimalValue_descriptor, - new java.lang.String[] { "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - registry.add(io.confluent.protobuf.MetaProto.messageMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - io.confluent.protobuf.type.DecimalProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DecimalValuePb2OuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DecimalValuePb2OuterClass.java deleted file mode 100644 index 3e61db2d74f..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DecimalValuePb2OuterClass.java +++ /dev/null @@ -1,761 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DecimalValuePb2.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class DecimalValuePb2OuterClass { - private DecimalValuePb2OuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface DecimalValuePb2OrBuilder extends - // @@protoc_insertion_point(interface_extends:DecimalValuePb2) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * The bytes value.
-     * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return Whether the value field is set. - */ - boolean hasValue(); - /** - *
-     * The bytes value.
-     * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - io.confluent.protobuf.type.Decimal getValue(); - /** - *
-     * The bytes value.
-     * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - io.confluent.protobuf.type.DecimalOrBuilder getValueOrBuilder(); - } - /** - *
-   * Wrapper message for `Decimal`.
-   * 
- * - * Protobuf type {@code DecimalValuePb2} - */ - public static final class DecimalValuePb2 extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:DecimalValuePb2) - DecimalValuePb2OrBuilder { - private static final long serialVersionUID = 0L; - // Use DecimalValuePb2.newBuilder() to construct. - private DecimalValuePb2(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DecimalValuePb2() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DecimalValuePb2(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DecimalValuePb2( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - io.confluent.protobuf.type.Decimal.Builder subBuilder = null; - if (((bitField0_ & 0x00000001) != 0)) { - subBuilder = value_.toBuilder(); - } - value_ = input.readMessage(io.confluent.protobuf.type.Decimal.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value_); - value_ = subBuilder.buildPartial(); - } - bitField0_ |= 0x00000001; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.internal_static_DecimalValuePb2_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.internal_static_DecimalValuePb2_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.class, io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.Builder.class); - } - - private int bitField0_; - public static final int VALUE_FIELD_NUMBER = 1; - private io.confluent.protobuf.type.Decimal value_; - /** - *
-     * The bytes value.
-     * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return Whether the value field is set. - */ - @java.lang.Override - public boolean hasValue() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - *
-     * The bytes value.
-     * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - @java.lang.Override - public io.confluent.protobuf.type.Decimal getValue() { - return value_ == null ? io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } - /** - *
-     * The bytes value.
-     * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - @java.lang.Override - public io.confluent.protobuf.type.DecimalOrBuilder getValueOrBuilder() { - return value_ == null ? io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (((bitField0_ & 0x00000001) != 0)) { - output.writeMessage(1, getValue()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getValue()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 other = (io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2) obj; - - if (hasValue() != other.hasValue()) return false; - if (hasValue()) { - if (!getValue() - .equals(other.getValue())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasValue()) { - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Decimal`.
-     * 
- * - * Protobuf type {@code DecimalValuePb2} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:DecimalValuePb2) - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2OrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.internal_static_DecimalValuePb2_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.internal_static_DecimalValuePb2_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.class, io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - getValueFieldBuilder(); - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (valueBuilder_ == null) { - value_ = null; - } else { - valueBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.internal_static_DecimalValuePb2_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 build() { - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 buildPartial() { - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 result = new io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2(this); - int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000001) != 0)) { - if (valueBuilder_ == null) { - result.value_ = value_; - } else { - result.value_ = valueBuilder_.build(); - } - to_bitField0_ |= 0x00000001; - } - result.bitField0_ = to_bitField0_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 other) { - if (other == io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2.getDefaultInstance()) return this; - if (other.hasValue()) { - mergeValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private io.confluent.protobuf.type.Decimal value_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.protobuf.type.Decimal, io.confluent.protobuf.type.Decimal.Builder, io.confluent.protobuf.type.DecimalOrBuilder> valueBuilder_; - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return Whether the value field is set. - */ - public boolean hasValue() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - public io.confluent.protobuf.type.Decimal getValue() { - if (valueBuilder_ == null) { - return value_ == null ? io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } else { - return valueBuilder_.getMessage(); - } - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder setValue(io.confluent.protobuf.type.Decimal value) { - if (valueBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value_ = value; - onChanged(); - } else { - valueBuilder_.setMessage(value); - } - bitField0_ |= 0x00000001; - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder setValue( - io.confluent.protobuf.type.Decimal.Builder builderForValue) { - if (valueBuilder_ == null) { - value_ = builderForValue.build(); - onChanged(); - } else { - valueBuilder_.setMessage(builderForValue.build()); - } - bitField0_ |= 0x00000001; - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder mergeValue(io.confluent.protobuf.type.Decimal value) { - if (valueBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0) && - value_ != null && - value_ != io.confluent.protobuf.type.Decimal.getDefaultInstance()) { - value_ = - io.confluent.protobuf.type.Decimal.newBuilder(value_).mergeFrom(value).buildPartial(); - } else { - value_ = value; - } - onChanged(); - } else { - valueBuilder_.mergeFrom(value); - } - bitField0_ |= 0x00000001; - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public Builder clearValue() { - if (valueBuilder_ == null) { - value_ = null; - onChanged(); - } else { - valueBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public io.confluent.protobuf.type.Decimal.Builder getValueBuilder() { - bitField0_ |= 0x00000001; - onChanged(); - return getValueFieldBuilder().getBuilder(); - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - public io.confluent.protobuf.type.DecimalOrBuilder getValueOrBuilder() { - if (valueBuilder_ != null) { - return valueBuilder_.getMessageOrBuilder(); - } else { - return value_ == null ? - io.confluent.protobuf.type.Decimal.getDefaultInstance() : value_; - } - } - /** - *
-       * The bytes value.
-       * 
- * - * optional .confluent.type.Decimal value = 1 [(.confluent.field_meta) = { ... } - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.protobuf.type.Decimal, io.confluent.protobuf.type.Decimal.Builder, io.confluent.protobuf.type.DecimalOrBuilder> - getValueFieldBuilder() { - if (valueBuilder_ == null) { - valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.protobuf.type.Decimal, io.confluent.protobuf.type.Decimal.Builder, io.confluent.protobuf.type.DecimalOrBuilder>( - getValue(), - getParentForChildren(), - isClean()); - value_ = null; - } - return valueBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:DecimalValuePb2) - } - - // @@protoc_insertion_point(class_scope:DecimalValuePb2) - private static final io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2(); - } - - public static io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - @java.lang.Deprecated public static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DecimalValuePb2 parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DecimalValuePb2(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DecimalValuePb2OuterClass.DecimalValuePb2 getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_DecimalValuePb2_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_DecimalValuePb2_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\025DecimalValuePb2.proto\032\024confluent/meta." + - "proto\032\034confluent/type/decimal.proto\"h\n\017D" + - "ecimalValuePb2\022G\n\005value\030\001 \001(\0132\027.confluen" + - "t.type.DecimalB\037\202D\034\022\016\n\tprecision\022\0018\022\n\n\005s" + - "cale\022\0013:\014\202D\t\n\007messageB.\n,io.confluent.ka" + - "fka.serializers.protobuf.test" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - io.confluent.protobuf.type.DecimalProto.getDescriptor(), - }); - internal_static_DecimalValuePb2_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_DecimalValuePb2_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_DecimalValuePb2_descriptor, - new java.lang.String[] { "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - registry.add(io.confluent.protobuf.MetaProto.messageMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - io.confluent.protobuf.type.DecimalProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DependencyTestProto.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DependencyTestProto.java deleted file mode 100644 index 15cf714ef27..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/DependencyTestProto.java +++ /dev/null @@ -1,954 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: DependencyTestProto.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class DependencyTestProto { - private DependencyTestProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface DependencyMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.DependencyMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - * @return Whether the nestedMessage field is set. - */ - boolean hasNestedMessage(); - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - * @return The nestedMessage. - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage getNestedMessage(); - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder getNestedMessageOrBuilder(); - - /** - * bool is_active = 2; - * @return The isActive. - */ - boolean getIsActive(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - * @return Whether the testMesssage field is set. - */ - boolean hasTestMesssage(); - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - * @return The testMesssage. - */ - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getTestMesssage(); - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder getTestMesssageOrBuilder(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.DependencyMessage} - */ - public static final class DependencyMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.DependencyMessage) - DependencyMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use DependencyMessage.newBuilder() to construct. - private DependencyMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private DependencyMessage() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new DependencyMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private DependencyMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder subBuilder = null; - if (nestedMessage_ != null) { - subBuilder = nestedMessage_.toBuilder(); - } - nestedMessage_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(nestedMessage_); - nestedMessage_ = subBuilder.buildPartial(); - } - - break; - } - case 16: { - - isActive_ = input.readBool(); - break; - } - case 26: { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder subBuilder = null; - if (testMesssage_ != null) { - subBuilder = testMesssage_.toBuilder(); - } - testMesssage_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(testMesssage_); - testMesssage_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.class, io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.Builder.class); - } - - public static final int NESTED_MESSAGE_FIELD_NUMBER = 1; - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage nestedMessage_; - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - * @return Whether the nestedMessage field is set. - */ - @java.lang.Override - public boolean hasNestedMessage() { - return nestedMessage_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - * @return The nestedMessage. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage getNestedMessage() { - return nestedMessage_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.getDefaultInstance() : nestedMessage_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder getNestedMessageOrBuilder() { - return getNestedMessage(); - } - - public static final int IS_ACTIVE_FIELD_NUMBER = 2; - private boolean isActive_; - /** - * bool is_active = 2; - * @return The isActive. - */ - @java.lang.Override - public boolean getIsActive() { - return isActive_; - } - - public static final int TEST_MESSSAGE_FIELD_NUMBER = 3; - private io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage testMesssage_; - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - * @return Whether the testMesssage field is set. - */ - @java.lang.Override - public boolean hasTestMesssage() { - return testMesssage_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - * @return The testMesssage. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getTestMesssage() { - return testMesssage_ == null ? io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance() : testMesssage_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder getTestMesssageOrBuilder() { - return getTestMesssage(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (nestedMessage_ != null) { - output.writeMessage(1, getNestedMessage()); - } - if (isActive_ != false) { - output.writeBool(2, isActive_); - } - if (testMesssage_ != null) { - output.writeMessage(3, getTestMesssage()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (nestedMessage_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getNestedMessage()); - } - if (isActive_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, isActive_); - } - if (testMesssage_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, getTestMesssage()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage other = (io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage) obj; - - if (hasNestedMessage() != other.hasNestedMessage()) return false; - if (hasNestedMessage()) { - if (!getNestedMessage() - .equals(other.getNestedMessage())) return false; - } - if (getIsActive() - != other.getIsActive()) return false; - if (hasTestMesssage() != other.hasTestMesssage()) return false; - if (hasTestMesssage()) { - if (!getTestMesssage() - .equals(other.getTestMesssage())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasNestedMessage()) { - hash = (37 * hash) + NESTED_MESSAGE_FIELD_NUMBER; - hash = (53 * hash) + getNestedMessage().hashCode(); - } - hash = (37 * hash) + IS_ACTIVE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIsActive()); - if (hasTestMesssage()) { - hash = (37 * hash) + TEST_MESSSAGE_FIELD_NUMBER; - hash = (53 * hash) + getTestMesssage().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.DependencyMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.DependencyMessage) - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.class, io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (nestedMessageBuilder_ == null) { - nestedMessage_ = null; - } else { - nestedMessage_ = null; - nestedMessageBuilder_ = null; - } - isActive_ = false; - - if (testMesssageBuilder_ == null) { - testMesssage_ = null; - } else { - testMesssage_ = null; - testMesssageBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage build() { - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage buildPartial() { - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage result = new io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage(this); - if (nestedMessageBuilder_ == null) { - result.nestedMessage_ = nestedMessage_; - } else { - result.nestedMessage_ = nestedMessageBuilder_.build(); - } - result.isActive_ = isActive_; - if (testMesssageBuilder_ == null) { - result.testMesssage_ = testMesssage_; - } else { - result.testMesssage_ = testMesssageBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage other) { - if (other == io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage.getDefaultInstance()) return this; - if (other.hasNestedMessage()) { - mergeNestedMessage(other.getNestedMessage()); - } - if (other.getIsActive() != false) { - setIsActive(other.getIsActive()); - } - if (other.hasTestMesssage()) { - mergeTestMesssage(other.getTestMesssage()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage nestedMessage_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder> nestedMessageBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - * @return Whether the nestedMessage field is set. - */ - public boolean hasNestedMessage() { - return nestedMessageBuilder_ != null || nestedMessage_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - * @return The nestedMessage. - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage getNestedMessage() { - if (nestedMessageBuilder_ == null) { - return nestedMessage_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.getDefaultInstance() : nestedMessage_; - } else { - return nestedMessageBuilder_.getMessage(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - public Builder setNestedMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage value) { - if (nestedMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - nestedMessage_ = value; - onChanged(); - } else { - nestedMessageBuilder_.setMessage(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - public Builder setNestedMessage( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder builderForValue) { - if (nestedMessageBuilder_ == null) { - nestedMessage_ = builderForValue.build(); - onChanged(); - } else { - nestedMessageBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - public Builder mergeNestedMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage value) { - if (nestedMessageBuilder_ == null) { - if (nestedMessage_ != null) { - nestedMessage_ = - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.newBuilder(nestedMessage_).mergeFrom(value).buildPartial(); - } else { - nestedMessage_ = value; - } - onChanged(); - } else { - nestedMessageBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - public Builder clearNestedMessage() { - if (nestedMessageBuilder_ == null) { - nestedMessage_ = null; - onChanged(); - } else { - nestedMessage_ = null; - nestedMessageBuilder_ = null; - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder getNestedMessageBuilder() { - - onChanged(); - return getNestedMessageFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder getNestedMessageOrBuilder() { - if (nestedMessageBuilder_ != null) { - return nestedMessageBuilder_.getMessageOrBuilder(); - } else { - return nestedMessage_ == null ? - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.getDefaultInstance() : nestedMessage_; - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage nested_message = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder> - getNestedMessageFieldBuilder() { - if (nestedMessageBuilder_ == null) { - nestedMessageBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder>( - getNestedMessage(), - getParentForChildren(), - isClean()); - nestedMessage_ = null; - } - return nestedMessageBuilder_; - } - - private boolean isActive_ ; - /** - * bool is_active = 2; - * @return The isActive. - */ - @java.lang.Override - public boolean getIsActive() { - return isActive_; - } - /** - * bool is_active = 2; - * @param value The isActive to set. - * @return This builder for chaining. - */ - public Builder setIsActive(boolean value) { - - isActive_ = value; - onChanged(); - return this; - } - /** - * bool is_active = 2; - * @return This builder for chaining. - */ - public Builder clearIsActive() { - - isActive_ = false; - onChanged(); - return this; - } - - private io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage testMesssage_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder> testMesssageBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - * @return Whether the testMesssage field is set. - */ - public boolean hasTestMesssage() { - return testMesssageBuilder_ != null || testMesssage_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - * @return The testMesssage. - */ - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getTestMesssage() { - if (testMesssageBuilder_ == null) { - return testMesssage_ == null ? io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance() : testMesssage_; - } else { - return testMesssageBuilder_.getMessage(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - public Builder setTestMesssage(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage value) { - if (testMesssageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - testMesssage_ = value; - onChanged(); - } else { - testMesssageBuilder_.setMessage(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - public Builder setTestMesssage( - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder builderForValue) { - if (testMesssageBuilder_ == null) { - testMesssage_ = builderForValue.build(); - onChanged(); - } else { - testMesssageBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - public Builder mergeTestMesssage(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage value) { - if (testMesssageBuilder_ == null) { - if (testMesssage_ != null) { - testMesssage_ = - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.newBuilder(testMesssage_).mergeFrom(value).buildPartial(); - } else { - testMesssage_ = value; - } - onChanged(); - } else { - testMesssageBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - public Builder clearTestMesssage() { - if (testMesssageBuilder_ == null) { - testMesssage_ = null; - onChanged(); - } else { - testMesssage_ = null; - testMesssageBuilder_ = null; - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder getTestMesssageBuilder() { - - onChanged(); - return getTestMesssageFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder getTestMesssageOrBuilder() { - if (testMesssageBuilder_ != null) { - return testMesssageBuilder_.getMessageOrBuilder(); - } else { - return testMesssage_ == null ? - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance() : testMesssage_; - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_messsage = 3; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder> - getTestMesssageFieldBuilder() { - if (testMesssageBuilder_ == null) { - testMesssageBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder>( - getTestMesssage(), - getParentForChildren(), - isClean()); - testMesssage_ = null; - } - return testMesssageBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.DependencyMessage) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.DependencyMessage) - private static final io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage(); - } - - public static io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public DependencyMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new DependencyMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.DependencyTestProto.DependencyMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\031DependencyTestProto.proto\022,io.confluen" + - "t.kafka.serializers.protobuf.test\032\025Neste" + - "dTestProto.proto\032\025PublicTestProto.proto\"" + - "\315\001\n\021DependencyMessage\022S\n\016nested_message\030" + - "\001 \001(\0132;.io.confluent.kafka.serializers.p" + - "rotobuf.test.NestedMessage\022\021\n\tis_active\030" + - "\002 \001(\010\022P\n\rtest_messsage\030\003 \001(\01329.io.conflu" + - "ent.kafka.serializers.protobuf.test.Test" + - "MessageB.\n,io.confluent.kafka.serializer" + - "s.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.getDescriptor(), - io.confluent.kafka.serializers.protobuf.test.PublicTestProto.getDescriptor(), - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_DependencyMessage_descriptor, - new java.lang.String[] { "NestedMessage", "IsActive", "TestMesssage", }); - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.getDescriptor(); - io.confluent.kafka.serializers.protobuf.test.PublicTestProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumReferenceOuter.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumReferenceOuter.java deleted file mode 100644 index 0178dba38bb..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumReferenceOuter.java +++ /dev/null @@ -1,576 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: EnumReference.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class EnumReferenceOuter { - private EnumReferenceOuter() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface EnumReferenceOrBuilder extends - // @@protoc_insertion_point(interface_extends:EnumReference) - com.google.protobuf.MessageOrBuilder { - - /** - * .EnumRoot enum_root = 1; - * @return The enum numeric value on the wire for enumRoot. - */ - int getEnumRootValue(); - /** - * .EnumRoot enum_root = 1; - * @return The enumRoot. - */ - io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot getEnumRoot(); - } - /** - * Protobuf type {@code EnumReference} - */ - public static final class EnumReference extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:EnumReference) - EnumReferenceOrBuilder { - private static final long serialVersionUID = 0L; - // Use EnumReference.newBuilder() to construct. - private EnumReference(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private EnumReference() { - enumRoot_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new EnumReference(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private EnumReference( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - int rawValue = input.readEnum(); - - enumRoot_ = rawValue; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.internal_static_EnumReference_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.internal_static_EnumReference_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.class, io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.Builder.class); - } - - public static final int ENUM_ROOT_FIELD_NUMBER = 1; - private int enumRoot_; - /** - * .EnumRoot enum_root = 1; - * @return The enum numeric value on the wire for enumRoot. - */ - @java.lang.Override public int getEnumRootValue() { - return enumRoot_; - } - /** - * .EnumRoot enum_root = 1; - * @return The enumRoot. - */ - @java.lang.Override public io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot getEnumRoot() { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot result = io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot.valueOf(enumRoot_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (enumRoot_ != io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot.HELLO.getNumber()) { - output.writeEnum(1, enumRoot_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (enumRoot_ != io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot.HELLO.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(1, enumRoot_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference other = (io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference) obj; - - if (enumRoot_ != other.enumRoot_) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ENUM_ROOT_FIELD_NUMBER; - hash = (53 * hash) + enumRoot_; - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code EnumReference} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:EnumReference) - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReferenceOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.internal_static_EnumReference_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.internal_static_EnumReference_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.class, io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - enumRoot_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.internal_static_EnumReference_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference build() { - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference buildPartial() { - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference result = new io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference(this); - result.enumRoot_ = enumRoot_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference other) { - if (other == io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference.getDefaultInstance()) return this; - if (other.enumRoot_ != 0) { - setEnumRootValue(other.getEnumRootValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int enumRoot_ = 0; - /** - * .EnumRoot enum_root = 1; - * @return The enum numeric value on the wire for enumRoot. - */ - @java.lang.Override public int getEnumRootValue() { - return enumRoot_; - } - /** - * .EnumRoot enum_root = 1; - * @param value The enum numeric value on the wire for enumRoot to set. - * @return This builder for chaining. - */ - public Builder setEnumRootValue(int value) { - - enumRoot_ = value; - onChanged(); - return this; - } - /** - * .EnumRoot enum_root = 1; - * @return The enumRoot. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot getEnumRoot() { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot result = io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot.valueOf(enumRoot_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot.UNRECOGNIZED : result; - } - /** - * .EnumRoot enum_root = 1; - * @param value The enumRoot to set. - * @return This builder for chaining. - */ - public Builder setEnumRoot(io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.EnumRoot value) { - if (value == null) { - throw new NullPointerException(); - } - - enumRoot_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .EnumRoot enum_root = 1; - * @return This builder for chaining. - */ - public Builder clearEnumRoot() { - - enumRoot_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:EnumReference) - } - - // @@protoc_insertion_point(class_scope:EnumReference) - private static final io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference(); - } - - public static io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public EnumReference parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new EnumReference(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumReferenceOuter.EnumReference getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_EnumReference_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_EnumReference_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\023EnumReference.proto\032\016EnumRoot.proto\"-\n" + - "\rEnumReference\022\034\n\tenum_root\030\001 \001(\0162\t.Enum" + - "RootBB\n,io.confluent.kafka.serializers.p" + - "rotobuf.testB\022EnumReferenceOuterb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.getDescriptor(), - }); - internal_static_EnumReference_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_EnumReference_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_EnumReference_descriptor, - new java.lang.String[] { "EnumRoot", }); - io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumRootOuter.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumRootOuter.java deleted file mode 100644 index a245da16989..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumRootOuter.java +++ /dev/null @@ -1,146 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: EnumRoot.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class EnumRootOuter { - private EnumRootOuter() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - /** - * Protobuf enum {@code EnumRoot} - */ - public enum EnumRoot - implements com.google.protobuf.ProtocolMessageEnum { - /** - * HELLO = 0; - */ - HELLO(0), - /** - * GOODBYE = 1; - */ - GOODBYE(1), - UNRECOGNIZED(-1), - ; - - /** - * HELLO = 0; - */ - public static final int HELLO_VALUE = 0; - /** - * GOODBYE = 1; - */ - public static final int GOODBYE_VALUE = 1; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static EnumRoot valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static EnumRoot forNumber(int value) { - switch (value) { - case 0: return HELLO; - case 1: return GOODBYE; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - EnumRoot> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public EnumRoot findValueByNumber(int number) { - return EnumRoot.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.EnumRootOuter.getDescriptor().getEnumTypes().get(0); - } - - private static final EnumRoot[] VALUES = values(); - - public static EnumRoot valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private EnumRoot(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:EnumRoot) - } - - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\016EnumRoot.proto*\"\n\010EnumRoot\022\t\n\005HELLO\020\000\022" + - "\013\n\007GOODBYE\020\001B=\n,io.confluent.kafka.seria" + - "lizers.protobuf.testB\rEnumRootOuterb\006pro" + - "to3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumUnionOuter.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumUnionOuter.java deleted file mode 100644 index d712b61efa1..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/EnumUnionOuter.java +++ /dev/null @@ -1,1209 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: EnumUnion.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class EnumUnionOuter { - private EnumUnionOuter() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.Status} - */ - public enum Status - implements com.google.protobuf.ProtocolMessageEnum { - /** - * ACTIVE = 0; - */ - ACTIVE(0), - /** - * INACTIVE = 1; - */ - INACTIVE(1), - UNRECOGNIZED(-1), - ; - - /** - * ACTIVE = 0; - */ - public static final int ACTIVE_VALUE = 0; - /** - * INACTIVE = 1; - */ - public static final int INACTIVE_VALUE = 1; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static Status valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static Status forNumber(int value) { - switch (value) { - case 0: return ACTIVE; - case 1: return INACTIVE; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - Status> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public Status findValueByNumber(int number) { - return Status.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.getDescriptor().getEnumTypes().get(0); - } - - private static final Status[] VALUES = values(); - - public static Status valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private Status(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.Status) - } - - public interface EnumUnionOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.EnumUnion) - com.google.protobuf.MessageOrBuilder { - - /** - * string one_id = 1; - * @return Whether the oneId field is set. - */ - boolean hasOneId(); - /** - * string one_id = 1; - * @return The oneId. - */ - java.lang.String getOneId(); - /** - * string one_id = 1; - * @return The bytes for oneId. - */ - com.google.protobuf.ByteString - getOneIdBytes(); - - /** - * int32 other_id = 2; - * @return Whether the otherId field is set. - */ - boolean hasOtherId(); - /** - * int32 other_id = 2; - * @return The otherId. - */ - int getOtherId(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return Whether the someStatus field is set. - */ - boolean hasSomeStatus(); - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return The enum numeric value on the wire for someStatus. - */ - int getSomeStatusValue(); - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return The someStatus. - */ - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status getSomeStatus(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return The enum numeric value on the wire for status. - */ - int getStatusValue(); - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return The status. - */ - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status getStatus(); - - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.SomeValCase getSomeValCase(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.EnumUnion} - */ - public static final class EnumUnion extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.EnumUnion) - EnumUnionOrBuilder { - private static final long serialVersionUID = 0L; - // Use EnumUnion.newBuilder() to construct. - private EnumUnion(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private EnumUnion() { - status_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new EnumUnion(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private EnumUnion( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - someValCase_ = 1; - someVal_ = s; - break; - } - case 16: { - someVal_ = input.readInt32(); - someValCase_ = 2; - break; - } - case 24: { - int rawValue = input.readEnum(); - someValCase_ = 3; - someVal_ = rawValue; - break; - } - case 32: { - int rawValue = input.readEnum(); - - status_ = rawValue; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.class, io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.Builder.class); - } - - private int someValCase_ = 0; - private java.lang.Object someVal_; - public enum SomeValCase - implements com.google.protobuf.Internal.EnumLite, - com.google.protobuf.AbstractMessage.InternalOneOfEnum { - ONE_ID(1), - OTHER_ID(2), - SOME_STATUS(3), - SOMEVAL_NOT_SET(0); - private final int value; - private SomeValCase(int value) { - this.value = value; - } - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static SomeValCase valueOf(int value) { - return forNumber(value); - } - - public static SomeValCase forNumber(int value) { - switch (value) { - case 1: return ONE_ID; - case 2: return OTHER_ID; - case 3: return SOME_STATUS; - case 0: return SOMEVAL_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public SomeValCase - getSomeValCase() { - return SomeValCase.forNumber( - someValCase_); - } - - public static final int ONE_ID_FIELD_NUMBER = 1; - /** - * string one_id = 1; - * @return Whether the oneId field is set. - */ - public boolean hasOneId() { - return someValCase_ == 1; - } - /** - * string one_id = 1; - * @return The oneId. - */ - public java.lang.String getOneId() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (someValCase_ == 1) { - someVal_ = s; - } - return s; - } - } - /** - * string one_id = 1; - * @return The bytes for oneId. - */ - public com.google.protobuf.ByteString - getOneIdBytes() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (someValCase_ == 1) { - someVal_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OTHER_ID_FIELD_NUMBER = 2; - /** - * int32 other_id = 2; - * @return Whether the otherId field is set. - */ - @java.lang.Override - public boolean hasOtherId() { - return someValCase_ == 2; - } - /** - * int32 other_id = 2; - * @return The otherId. - */ - @java.lang.Override - public int getOtherId() { - if (someValCase_ == 2) { - return (java.lang.Integer) someVal_; - } - return 0; - } - - public static final int SOME_STATUS_FIELD_NUMBER = 3; - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return Whether the someStatus field is set. - */ - public boolean hasSomeStatus() { - return someValCase_ == 3; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return The enum numeric value on the wire for someStatus. - */ - public int getSomeStatusValue() { - if (someValCase_ == 3) { - return (java.lang.Integer) someVal_; - } - return 0; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return The someStatus. - */ - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status getSomeStatus() { - if (someValCase_ == 3) { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status result = io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.valueOf( - (java.lang.Integer) someVal_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.UNRECOGNIZED : result; - } - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.ACTIVE; - } - - public static final int STATUS_FIELD_NUMBER = 4; - private int status_; - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return The enum numeric value on the wire for status. - */ - @java.lang.Override public int getStatusValue() { - return status_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return The status. - */ - @java.lang.Override public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status getStatus() { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status result = io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.valueOf(status_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.UNRECOGNIZED : result; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (someValCase_ == 1) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, someVal_); - } - if (someValCase_ == 2) { - output.writeInt32( - 2, (int)((java.lang.Integer) someVal_)); - } - if (someValCase_ == 3) { - output.writeEnum(3, ((java.lang.Integer) someVal_)); - } - if (status_ != io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.ACTIVE.getNumber()) { - output.writeEnum(4, status_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (someValCase_ == 1) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, someVal_); - } - if (someValCase_ == 2) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size( - 2, (int)((java.lang.Integer) someVal_)); - } - if (someValCase_ == 3) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(3, ((java.lang.Integer) someVal_)); - } - if (status_ != io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.ACTIVE.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(4, status_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion other = (io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion) obj; - - if (status_ != other.status_) return false; - if (!getSomeValCase().equals(other.getSomeValCase())) return false; - switch (someValCase_) { - case 1: - if (!getOneId() - .equals(other.getOneId())) return false; - break; - case 2: - if (getOtherId() - != other.getOtherId()) return false; - break; - case 3: - if (getSomeStatusValue() - != other.getSomeStatusValue()) return false; - break; - case 0: - default: - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + STATUS_FIELD_NUMBER; - hash = (53 * hash) + status_; - switch (someValCase_) { - case 1: - hash = (37 * hash) + ONE_ID_FIELD_NUMBER; - hash = (53 * hash) + getOneId().hashCode(); - break; - case 2: - hash = (37 * hash) + OTHER_ID_FIELD_NUMBER; - hash = (53 * hash) + getOtherId(); - break; - case 3: - hash = (37 * hash) + SOME_STATUS_FIELD_NUMBER; - hash = (53 * hash) + getSomeStatusValue(); - break; - case 0: - default: - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.EnumUnion} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.EnumUnion) - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnionOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.class, io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - status_ = 0; - - someValCase_ = 0; - someVal_ = null; - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion build() { - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion buildPartial() { - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion result = new io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion(this); - if (someValCase_ == 1) { - result.someVal_ = someVal_; - } - if (someValCase_ == 2) { - result.someVal_ = someVal_; - } - if (someValCase_ == 3) { - result.someVal_ = someVal_; - } - result.status_ = status_; - result.someValCase_ = someValCase_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion other) { - if (other == io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion.getDefaultInstance()) return this; - if (other.status_ != 0) { - setStatusValue(other.getStatusValue()); - } - switch (other.getSomeValCase()) { - case ONE_ID: { - someValCase_ = 1; - someVal_ = other.someVal_; - onChanged(); - break; - } - case OTHER_ID: { - setOtherId(other.getOtherId()); - break; - } - case SOME_STATUS: { - setSomeStatusValue(other.getSomeStatusValue()); - break; - } - case SOMEVAL_NOT_SET: { - break; - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int someValCase_ = 0; - private java.lang.Object someVal_; - public SomeValCase - getSomeValCase() { - return SomeValCase.forNumber( - someValCase_); - } - - public Builder clearSomeVal() { - someValCase_ = 0; - someVal_ = null; - onChanged(); - return this; - } - - - /** - * string one_id = 1; - * @return Whether the oneId field is set. - */ - @java.lang.Override - public boolean hasOneId() { - return someValCase_ == 1; - } - /** - * string one_id = 1; - * @return The oneId. - */ - @java.lang.Override - public java.lang.String getOneId() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (someValCase_ == 1) { - someVal_ = s; - } - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string one_id = 1; - * @return The bytes for oneId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOneIdBytes() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (someValCase_ == 1) { - someVal_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string one_id = 1; - * @param value The oneId to set. - * @return This builder for chaining. - */ - public Builder setOneId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - someValCase_ = 1; - someVal_ = value; - onChanged(); - return this; - } - /** - * string one_id = 1; - * @return This builder for chaining. - */ - public Builder clearOneId() { - if (someValCase_ == 1) { - someValCase_ = 0; - someVal_ = null; - onChanged(); - } - return this; - } - /** - * string one_id = 1; - * @param value The bytes for oneId to set. - * @return This builder for chaining. - */ - public Builder setOneIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - someValCase_ = 1; - someVal_ = value; - onChanged(); - return this; - } - - /** - * int32 other_id = 2; - * @return Whether the otherId field is set. - */ - public boolean hasOtherId() { - return someValCase_ == 2; - } - /** - * int32 other_id = 2; - * @return The otherId. - */ - public int getOtherId() { - if (someValCase_ == 2) { - return (java.lang.Integer) someVal_; - } - return 0; - } - /** - * int32 other_id = 2; - * @param value The otherId to set. - * @return This builder for chaining. - */ - public Builder setOtherId(int value) { - someValCase_ = 2; - someVal_ = value; - onChanged(); - return this; - } - /** - * int32 other_id = 2; - * @return This builder for chaining. - */ - public Builder clearOtherId() { - if (someValCase_ == 2) { - someValCase_ = 0; - someVal_ = null; - onChanged(); - } - return this; - } - - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return Whether the someStatus field is set. - */ - @java.lang.Override - public boolean hasSomeStatus() { - return someValCase_ == 3; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return The enum numeric value on the wire for someStatus. - */ - @java.lang.Override - public int getSomeStatusValue() { - if (someValCase_ == 3) { - return ((java.lang.Integer) someVal_).intValue(); - } - return 0; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @param value The enum numeric value on the wire for someStatus to set. - * @return This builder for chaining. - */ - public Builder setSomeStatusValue(int value) { - someValCase_ = 3; - someVal_ = value; - onChanged(); - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return The someStatus. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status getSomeStatus() { - if (someValCase_ == 3) { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status result = io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.valueOf( - (java.lang.Integer) someVal_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.UNRECOGNIZED : result; - } - return io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.ACTIVE; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @param value The someStatus to set. - * @return This builder for chaining. - */ - public Builder setSomeStatus(io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status value) { - if (value == null) { - throw new NullPointerException(); - } - someValCase_ = 3; - someVal_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status some_status = 3; - * @return This builder for chaining. - */ - public Builder clearSomeStatus() { - if (someValCase_ == 3) { - someValCase_ = 0; - someVal_ = null; - onChanged(); - } - return this; - } - - private int status_ = 0; - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return The enum numeric value on the wire for status. - */ - @java.lang.Override public int getStatusValue() { - return status_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @param value The enum numeric value on the wire for status to set. - * @return This builder for chaining. - */ - public Builder setStatusValue(int value) { - - status_ = value; - onChanged(); - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return The status. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status getStatus() { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status result = io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.valueOf(status_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status.UNRECOGNIZED : result; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @param value The status to set. - * @return This builder for chaining. - */ - public Builder setStatus(io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.Status value) { - if (value == null) { - throw new NullPointerException(); - } - - status_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 4; - * @return This builder for chaining. - */ - public Builder clearStatus() { - - status_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.EnumUnion) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.EnumUnion) - private static final io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion(); - } - - public static io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public EnumUnion parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new EnumUnion(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.EnumUnionOuter.EnumUnion getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\017EnumUnion.proto\022,io.confluent.kafka.se" + - "rializers.protobuf.test\"\320\001\n\tEnumUnion\022\020\n" + - "\006one_id\030\001 \001(\tH\000\022\022\n\010other_id\030\002 \001(\005H\000\022K\n\013s" + - "ome_status\030\003 \001(\01624.io.confluent.kafka.se" + - "rializers.protobuf.test.StatusH\000\022D\n\006stat" + - "us\030\004 \001(\01624.io.confluent.kafka.serializer" + - "s.protobuf.test.StatusB\n\n\010some_val*\"\n\006St" + - "atus\022\n\n\006ACTIVE\020\000\022\014\n\010INACTIVE\020\001B@\n,io.con" + - "fluent.kafka.serializers.protobuf.testB\016" + - "EnumUnionOuterP\000b\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_EnumUnion_descriptor, - new java.lang.String[] { "OneId", "OtherId", "SomeStatus", "Status", "SomeVal", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Int16ValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Int16ValueOuterClass.java deleted file mode 100644 index 5b1bd48a5e9..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Int16ValueOuterClass.java +++ /dev/null @@ -1,552 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: Int16Value.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class Int16ValueOuterClass { - private Int16ValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface Int16ValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:Int16Value) - com.google.protobuf.MessageOrBuilder { - - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - int getValue(); - } - /** - *
-   * Wrapper message for `Int16`.
-   * 
- * - * Protobuf type {@code Int16Value} - */ - public static final class Int16Value extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Int16Value) - Int16ValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use Int16Value.newBuilder() to construct. - private Int16Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Int16Value() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Int16Value(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Int16Value( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - value_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.internal_static_Int16Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.internal_static_Int16Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.class, io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private int value_; - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != 0) { - output.writeInt32(1, value_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, value_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value other = (io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value) obj; - - if (getValue() - != other.getValue()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Int16`.
-     * 
- * - * Protobuf type {@code Int16Value} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Int16Value) - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16ValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.internal_static_Int16Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.internal_static_Int16Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.class, io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - value_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.internal_static_Int16Value_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value build() { - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value buildPartial() { - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value result = new io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value(this); - result.value_ = value_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value other) { - if (other == io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value.getDefaultInstance()) return this; - if (other.getValue() != 0) { - setValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int value_ ; - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(int value) { - - value_ = value; - onChanged(); - return this; - } - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearValue() { - - value_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Int16Value) - } - - // @@protoc_insertion_point(class_scope:Int16Value) - private static final io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value(); - } - - public static io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Int16Value parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Int16Value(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int16ValueOuterClass.Int16Value getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Int16Value_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Int16Value_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\020Int16Value.proto\032\024confluent/meta.proto" + - "\"7\n\nInt16Value\022)\n\005value\030\001 \001(\005B\032\202D\027\022\025\n\014co" + - "nnect.type\022\005int16B.\n,io.confluent.kafka." + - "serializers.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - }); - internal_static_Int16Value_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_Int16Value_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Int16Value_descriptor, - new java.lang.String[] { "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Int8ValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Int8ValueOuterClass.java deleted file mode 100644 index 12746f45098..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Int8ValueOuterClass.java +++ /dev/null @@ -1,552 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: Int8Value.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class Int8ValueOuterClass { - private Int8ValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface Int8ValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:Int8Value) - com.google.protobuf.MessageOrBuilder { - - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - int getValue(); - } - /** - *
-   * Wrapper message for `Int8`.
-   * 
- * - * Protobuf type {@code Int8Value} - */ - public static final class Int8Value extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:Int8Value) - Int8ValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use Int8Value.newBuilder() to construct. - private Int8Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Int8Value() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Int8Value(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Int8Value( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - value_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.internal_static_Int8Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.internal_static_Int8Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.class, io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private int value_; - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != 0) { - output.writeInt32(1, value_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, value_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value other = (io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value) obj; - - if (getValue() - != other.getValue()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Int8`.
-     * 
- * - * Protobuf type {@code Int8Value} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:Int8Value) - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8ValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.internal_static_Int8Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.internal_static_Int8Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.class, io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - value_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.internal_static_Int8Value_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value build() { - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value buildPartial() { - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value result = new io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value(this); - result.value_ = value_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value other) { - if (other == io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value.getDefaultInstance()) return this; - if (other.getValue() != 0) { - setValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int value_ ; - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(int value) { - - value_ = value; - onChanged(); - return this; - } - /** - * int32 value = 1 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearValue() { - - value_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:Int8Value) - } - - // @@protoc_insertion_point(class_scope:Int8Value) - private static final io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value(); - } - - public static io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Int8Value parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Int8Value(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Int8ValueOuterClass.Int8Value getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_Int8Value_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_Int8Value_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\017Int8Value.proto\032\024confluent/meta.proto\"" + - "5\n\tInt8Value\022(\n\005value\030\001 \001(\005B\031\202D\026\022\024\n\014conn" + - "ect.type\022\004int8B.\n,io.confluent.kafka.ser" + - "ializers.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - }); - internal_static_Int8Value_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_Int8Value_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_Int8Value_descriptor, - new java.lang.String[] { "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/KeyTimestampValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/KeyTimestampValueOuterClass.java deleted file mode 100644 index 4f1f8bb96ff..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/KeyTimestampValueOuterClass.java +++ /dev/null @@ -1,958 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: KeyTimestampValue.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class KeyTimestampValueOuterClass { - private KeyTimestampValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface KeyTimestampValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:KeyTimestampValue) - com.google.protobuf.MessageOrBuilder { - - /** - * int32 key = 1; - * @return The key. - */ - int getKey(); - - /** - * .TimestampValue value = 2; - * @return Whether the value field is set. - */ - boolean hasValue(); - /** - * .TimestampValue value = 2; - * @return The value. - */ - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue getValue(); - /** - * .TimestampValue value = 2; - */ - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder getValueOrBuilder(); - - /** - * .google.protobuf.Timestamp value2 = 3; - * @return Whether the value2 field is set. - */ - boolean hasValue2(); - /** - * .google.protobuf.Timestamp value2 = 3; - * @return The value2. - */ - com.google.protobuf.Timestamp getValue2(); - /** - * .google.protobuf.Timestamp value2 = 3; - */ - com.google.protobuf.TimestampOrBuilder getValue2OrBuilder(); - } - /** - *
-   * Wrapper message for `Timestamp`.
-   * 
- * - * Protobuf type {@code KeyTimestampValue} - */ - public static final class KeyTimestampValue extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:KeyTimestampValue) - KeyTimestampValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use KeyTimestampValue.newBuilder() to construct. - private KeyTimestampValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private KeyTimestampValue() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new KeyTimestampValue(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private KeyTimestampValue( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - key_ = input.readInt32(); - break; - } - case 18: { - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder subBuilder = null; - if (value_ != null) { - subBuilder = value_.toBuilder(); - } - value_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value_); - value_ = subBuilder.buildPartial(); - } - - break; - } - case 26: { - com.google.protobuf.Timestamp.Builder subBuilder = null; - if (value2_ != null) { - subBuilder = value2_.toBuilder(); - } - value2_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value2_); - value2_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.internal_static_KeyTimestampValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.internal_static_KeyTimestampValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.class, io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.Builder.class); - } - - public static final int KEY_FIELD_NUMBER = 1; - private int key_; - /** - * int32 key = 1; - * @return The key. - */ - @java.lang.Override - public int getKey() { - return key_; - } - - public static final int VALUE_FIELD_NUMBER = 2; - private io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue value_; - /** - * .TimestampValue value = 2; - * @return Whether the value field is set. - */ - @java.lang.Override - public boolean hasValue() { - return value_ != null; - } - /** - * .TimestampValue value = 2; - * @return The value. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue getValue() { - return value_ == null ? io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.getDefaultInstance() : value_; - } - /** - * .TimestampValue value = 2; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder getValueOrBuilder() { - return getValue(); - } - - public static final int VALUE2_FIELD_NUMBER = 3; - private com.google.protobuf.Timestamp value2_; - /** - * .google.protobuf.Timestamp value2 = 3; - * @return Whether the value2 field is set. - */ - @java.lang.Override - public boolean hasValue2() { - return value2_ != null; - } - /** - * .google.protobuf.Timestamp value2 = 3; - * @return The value2. - */ - @java.lang.Override - public com.google.protobuf.Timestamp getValue2() { - return value2_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : value2_; - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - @java.lang.Override - public com.google.protobuf.TimestampOrBuilder getValue2OrBuilder() { - return getValue2(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (key_ != 0) { - output.writeInt32(1, key_); - } - if (value_ != null) { - output.writeMessage(2, getValue()); - } - if (value2_ != null) { - output.writeMessage(3, getValue2()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (key_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, key_); - } - if (value_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, getValue()); - } - if (value2_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, getValue2()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue other = (io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue) obj; - - if (getKey() - != other.getKey()) return false; - if (hasValue() != other.hasValue()) return false; - if (hasValue()) { - if (!getValue() - .equals(other.getValue())) return false; - } - if (hasValue2() != other.hasValue2()) return false; - if (hasValue2()) { - if (!getValue2() - .equals(other.getValue2())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + KEY_FIELD_NUMBER; - hash = (53 * hash) + getKey(); - if (hasValue()) { - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - } - if (hasValue2()) { - hash = (37 * hash) + VALUE2_FIELD_NUMBER; - hash = (53 * hash) + getValue2().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Timestamp`.
-     * 
- * - * Protobuf type {@code KeyTimestampValue} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:KeyTimestampValue) - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.internal_static_KeyTimestampValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.internal_static_KeyTimestampValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.class, io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - key_ = 0; - - if (valueBuilder_ == null) { - value_ = null; - } else { - value_ = null; - valueBuilder_ = null; - } - if (value2Builder_ == null) { - value2_ = null; - } else { - value2_ = null; - value2Builder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.internal_static_KeyTimestampValue_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue build() { - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue buildPartial() { - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue result = new io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue(this); - result.key_ = key_; - if (valueBuilder_ == null) { - result.value_ = value_; - } else { - result.value_ = valueBuilder_.build(); - } - if (value2Builder_ == null) { - result.value2_ = value2_; - } else { - result.value2_ = value2Builder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue other) { - if (other == io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue.getDefaultInstance()) return this; - if (other.getKey() != 0) { - setKey(other.getKey()); - } - if (other.hasValue()) { - mergeValue(other.getValue()); - } - if (other.hasValue2()) { - mergeValue2(other.getValue2()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int key_ ; - /** - * int32 key = 1; - * @return The key. - */ - @java.lang.Override - public int getKey() { - return key_; - } - /** - * int32 key = 1; - * @param value The key to set. - * @return This builder for chaining. - */ - public Builder setKey(int value) { - - key_ = value; - onChanged(); - return this; - } - /** - * int32 key = 1; - * @return This builder for chaining. - */ - public Builder clearKey() { - - key_ = 0; - onChanged(); - return this; - } - - private io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue value_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder> valueBuilder_; - /** - * .TimestampValue value = 2; - * @return Whether the value field is set. - */ - public boolean hasValue() { - return valueBuilder_ != null || value_ != null; - } - /** - * .TimestampValue value = 2; - * @return The value. - */ - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue getValue() { - if (valueBuilder_ == null) { - return value_ == null ? io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.getDefaultInstance() : value_; - } else { - return valueBuilder_.getMessage(); - } - } - /** - * .TimestampValue value = 2; - */ - public Builder setValue(io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue value) { - if (valueBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value_ = value; - onChanged(); - } else { - valueBuilder_.setMessage(value); - } - - return this; - } - /** - * .TimestampValue value = 2; - */ - public Builder setValue( - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder builderForValue) { - if (valueBuilder_ == null) { - value_ = builderForValue.build(); - onChanged(); - } else { - valueBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .TimestampValue value = 2; - */ - public Builder mergeValue(io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue value) { - if (valueBuilder_ == null) { - if (value_ != null) { - value_ = - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.newBuilder(value_).mergeFrom(value).buildPartial(); - } else { - value_ = value; - } - onChanged(); - } else { - valueBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .TimestampValue value = 2; - */ - public Builder clearValue() { - if (valueBuilder_ == null) { - value_ = null; - onChanged(); - } else { - value_ = null; - valueBuilder_ = null; - } - - return this; - } - /** - * .TimestampValue value = 2; - */ - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder getValueBuilder() { - - onChanged(); - return getValueFieldBuilder().getBuilder(); - } - /** - * .TimestampValue value = 2; - */ - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder getValueOrBuilder() { - if (valueBuilder_ != null) { - return valueBuilder_.getMessageOrBuilder(); - } else { - return value_ == null ? - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.getDefaultInstance() : value_; - } - } - /** - * .TimestampValue value = 2; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder> - getValueFieldBuilder() { - if (valueBuilder_ == null) { - valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder>( - getValue(), - getParentForChildren(), - isClean()); - value_ = null; - } - return valueBuilder_; - } - - private com.google.protobuf.Timestamp value2_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> value2Builder_; - /** - * .google.protobuf.Timestamp value2 = 3; - * @return Whether the value2 field is set. - */ - public boolean hasValue2() { - return value2Builder_ != null || value2_ != null; - } - /** - * .google.protobuf.Timestamp value2 = 3; - * @return The value2. - */ - public com.google.protobuf.Timestamp getValue2() { - if (value2Builder_ == null) { - return value2_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : value2_; - } else { - return value2Builder_.getMessage(); - } - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - public Builder setValue2(com.google.protobuf.Timestamp value) { - if (value2Builder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value2_ = value; - onChanged(); - } else { - value2Builder_.setMessage(value); - } - - return this; - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - public Builder setValue2( - com.google.protobuf.Timestamp.Builder builderForValue) { - if (value2Builder_ == null) { - value2_ = builderForValue.build(); - onChanged(); - } else { - value2Builder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - public Builder mergeValue2(com.google.protobuf.Timestamp value) { - if (value2Builder_ == null) { - if (value2_ != null) { - value2_ = - com.google.protobuf.Timestamp.newBuilder(value2_).mergeFrom(value).buildPartial(); - } else { - value2_ = value; - } - onChanged(); - } else { - value2Builder_.mergeFrom(value); - } - - return this; - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - public Builder clearValue2() { - if (value2Builder_ == null) { - value2_ = null; - onChanged(); - } else { - value2_ = null; - value2Builder_ = null; - } - - return this; - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - public com.google.protobuf.Timestamp.Builder getValue2Builder() { - - onChanged(); - return getValue2FieldBuilder().getBuilder(); - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - public com.google.protobuf.TimestampOrBuilder getValue2OrBuilder() { - if (value2Builder_ != null) { - return value2Builder_.getMessageOrBuilder(); - } else { - return value2_ == null ? - com.google.protobuf.Timestamp.getDefaultInstance() : value2_; - } - } - /** - * .google.protobuf.Timestamp value2 = 3; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> - getValue2FieldBuilder() { - if (value2Builder_ == null) { - value2Builder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( - getValue2(), - getParentForChildren(), - isClean()); - value2_ = null; - } - return value2Builder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:KeyTimestampValue) - } - - // @@protoc_insertion_point(class_scope:KeyTimestampValue) - private static final io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue(); - } - - public static io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public KeyTimestampValue parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new KeyTimestampValue(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.KeyTimestampValueOuterClass.KeyTimestampValue getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_KeyTimestampValue_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_KeyTimestampValue_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\027KeyTimestampValue.proto\032\037google/protob" + - "uf/timestamp.proto\032\024TimestampValue.proto" + - "\"l\n\021KeyTimestampValue\022\013\n\003key\030\001 \001(\005\022\036\n\005va" + - "lue\030\002 \001(\0132\017.TimestampValue\022*\n\006value2\030\003 \001" + - "(\0132\032.google.protobuf.TimestampB.\n,io.con" + - "fluent.kafka.serializers.protobuf.testb\006" + - "proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.TimestampProto.getDescriptor(), - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.getDescriptor(), - }); - internal_static_KeyTimestampValue_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_KeyTimestampValue_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_KeyTimestampValue_descriptor, - new java.lang.String[] { "Key", "Value", "Value2", }); - com.google.protobuf.TimestampProto.getDescriptor(); - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/NestedTestProto.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/NestedTestProto.java deleted file mode 100644 index c90ad498263..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/NestedTestProto.java +++ /dev/null @@ -1,5519 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: NestedTestProto.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class NestedTestProto { - private NestedTestProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.Status} - */ - public enum Status - implements com.google.protobuf.ProtocolMessageEnum { - /** - * ACTIVE = 0; - */ - ACTIVE(0), - /** - * INACTIVE = 1; - */ - INACTIVE(1), - UNRECOGNIZED(-1), - ; - - /** - * ACTIVE = 0; - */ - public static final int ACTIVE_VALUE = 0; - /** - * INACTIVE = 1; - */ - public static final int INACTIVE_VALUE = 1; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static Status valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static Status forNumber(int value) { - switch (value) { - case 0: return ACTIVE; - case 1: return INACTIVE; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - Status> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public Status findValueByNumber(int number) { - return Status.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.getDescriptor().getEnumTypes().get(0); - } - - private static final Status[] VALUES = values(); - - public static Status valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private Status(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.Status) - } - - public interface UserIdOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.UserId) - com.google.protobuf.MessageOrBuilder { - - /** - * string kafka_user_id = 1; - * @return Whether the kafkaUserId field is set. - */ - boolean hasKafkaUserId(); - /** - * string kafka_user_id = 1; - * @return The kafkaUserId. - */ - java.lang.String getKafkaUserId(); - /** - * string kafka_user_id = 1; - * @return The bytes for kafkaUserId. - */ - com.google.protobuf.ByteString - getKafkaUserIdBytes(); - - /** - * int32 other_user_id = 2; - * @return Whether the otherUserId field is set. - */ - boolean hasOtherUserId(); - /** - * int32 other_user_id = 2; - * @return The otherUserId. - */ - int getOtherUserId(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - * @return Whether the anotherId field is set. - */ - boolean hasAnotherId(); - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - * @return The anotherId. - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId getAnotherId(); - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder getAnotherIdOrBuilder(); - - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.UserIdCase getUserIdCase(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.UserId} - */ - public static final class UserId extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.UserId) - UserIdOrBuilder { - private static final long serialVersionUID = 0L; - // Use UserId.newBuilder() to construct. - private UserId(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private UserId() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new UserId(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private UserId( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - userIdCase_ = 1; - userId_ = s; - break; - } - case 16: { - userId_ = input.readInt32(); - userIdCase_ = 2; - break; - } - case 26: { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder subBuilder = null; - if (userIdCase_ == 3) { - subBuilder = ((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_).toBuilder(); - } - userId_ = - input.readMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_); - userId_ = subBuilder.buildPartial(); - } - userIdCase_ = 3; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder.class); - } - - private int userIdCase_ = 0; - private java.lang.Object userId_; - public enum UserIdCase - implements com.google.protobuf.Internal.EnumLite, - com.google.protobuf.AbstractMessage.InternalOneOfEnum { - KAFKA_USER_ID(1), - OTHER_USER_ID(2), - ANOTHER_ID(3), - USERID_NOT_SET(0); - private final int value; - private UserIdCase(int value) { - this.value = value; - } - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static UserIdCase valueOf(int value) { - return forNumber(value); - } - - public static UserIdCase forNumber(int value) { - switch (value) { - case 1: return KAFKA_USER_ID; - case 2: return OTHER_USER_ID; - case 3: return ANOTHER_ID; - case 0: return USERID_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public UserIdCase - getUserIdCase() { - return UserIdCase.forNumber( - userIdCase_); - } - - public static final int KAFKA_USER_ID_FIELD_NUMBER = 1; - /** - * string kafka_user_id = 1; - * @return Whether the kafkaUserId field is set. - */ - public boolean hasKafkaUserId() { - return userIdCase_ == 1; - } - /** - * string kafka_user_id = 1; - * @return The kafkaUserId. - */ - public java.lang.String getKafkaUserId() { - java.lang.Object ref = ""; - if (userIdCase_ == 1) { - ref = userId_; - } - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (userIdCase_ == 1) { - userId_ = s; - } - return s; - } - } - /** - * string kafka_user_id = 1; - * @return The bytes for kafkaUserId. - */ - public com.google.protobuf.ByteString - getKafkaUserIdBytes() { - java.lang.Object ref = ""; - if (userIdCase_ == 1) { - ref = userId_; - } - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (userIdCase_ == 1) { - userId_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OTHER_USER_ID_FIELD_NUMBER = 2; - /** - * int32 other_user_id = 2; - * @return Whether the otherUserId field is set. - */ - @java.lang.Override - public boolean hasOtherUserId() { - return userIdCase_ == 2; - } - /** - * int32 other_user_id = 2; - * @return The otherUserId. - */ - @java.lang.Override - public int getOtherUserId() { - if (userIdCase_ == 2) { - return (java.lang.Integer) userId_; - } - return 0; - } - - public static final int ANOTHER_ID_FIELD_NUMBER = 3; - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - * @return Whether the anotherId field is set. - */ - @java.lang.Override - public boolean hasAnotherId() { - return userIdCase_ == 3; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - * @return The anotherId. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId getAnotherId() { - if (userIdCase_ == 3) { - return (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_; - } - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder getAnotherIdOrBuilder() { - if (userIdCase_ == 3) { - return (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_; - } - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (userIdCase_ == 1) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, userId_); - } - if (userIdCase_ == 2) { - output.writeInt32( - 2, (int)((java.lang.Integer) userId_)); - } - if (userIdCase_ == 3) { - output.writeMessage(3, (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (userIdCase_ == 1) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, userId_); - } - if (userIdCase_ == 2) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size( - 2, (int)((java.lang.Integer) userId_)); - } - if (userIdCase_ == 3) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId other = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId) obj; - - if (!getUserIdCase().equals(other.getUserIdCase())) return false; - switch (userIdCase_) { - case 1: - if (!getKafkaUserId() - .equals(other.getKafkaUserId())) return false; - break; - case 2: - if (getOtherUserId() - != other.getOtherUserId()) return false; - break; - case 3: - if (!getAnotherId() - .equals(other.getAnotherId())) return false; - break; - case 0: - default: - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - switch (userIdCase_) { - case 1: - hash = (37 * hash) + KAFKA_USER_ID_FIELD_NUMBER; - hash = (53 * hash) + getKafkaUserId().hashCode(); - break; - case 2: - hash = (37 * hash) + OTHER_USER_ID_FIELD_NUMBER; - hash = (53 * hash) + getOtherUserId(); - break; - case 3: - hash = (37 * hash) + ANOTHER_ID_FIELD_NUMBER; - hash = (53 * hash) + getAnotherId().hashCode(); - break; - case 0: - default: - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.UserId} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.UserId) - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - userIdCase_ = 0; - userId_ = null; - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId build() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId buildPartial() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId result = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId(this); - if (userIdCase_ == 1) { - result.userId_ = userId_; - } - if (userIdCase_ == 2) { - result.userId_ = userId_; - } - if (userIdCase_ == 3) { - if (anotherIdBuilder_ == null) { - result.userId_ = userId_; - } else { - result.userId_ = anotherIdBuilder_.build(); - } - } - result.userIdCase_ = userIdCase_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId other) { - if (other == io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.getDefaultInstance()) return this; - switch (other.getUserIdCase()) { - case KAFKA_USER_ID: { - userIdCase_ = 1; - userId_ = other.userId_; - onChanged(); - break; - } - case OTHER_USER_ID: { - setOtherUserId(other.getOtherUserId()); - break; - } - case ANOTHER_ID: { - mergeAnotherId(other.getAnotherId()); - break; - } - case USERID_NOT_SET: { - break; - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int userIdCase_ = 0; - private java.lang.Object userId_; - public UserIdCase - getUserIdCase() { - return UserIdCase.forNumber( - userIdCase_); - } - - public Builder clearUserId() { - userIdCase_ = 0; - userId_ = null; - onChanged(); - return this; - } - - - /** - * string kafka_user_id = 1; - * @return Whether the kafkaUserId field is set. - */ - @java.lang.Override - public boolean hasKafkaUserId() { - return userIdCase_ == 1; - } - /** - * string kafka_user_id = 1; - * @return The kafkaUserId. - */ - @java.lang.Override - public java.lang.String getKafkaUserId() { - java.lang.Object ref = ""; - if (userIdCase_ == 1) { - ref = userId_; - } - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (userIdCase_ == 1) { - userId_ = s; - } - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string kafka_user_id = 1; - * @return The bytes for kafkaUserId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getKafkaUserIdBytes() { - java.lang.Object ref = ""; - if (userIdCase_ == 1) { - ref = userId_; - } - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (userIdCase_ == 1) { - userId_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string kafka_user_id = 1; - * @param value The kafkaUserId to set. - * @return This builder for chaining. - */ - public Builder setKafkaUserId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - userIdCase_ = 1; - userId_ = value; - onChanged(); - return this; - } - /** - * string kafka_user_id = 1; - * @return This builder for chaining. - */ - public Builder clearKafkaUserId() { - if (userIdCase_ == 1) { - userIdCase_ = 0; - userId_ = null; - onChanged(); - } - return this; - } - /** - * string kafka_user_id = 1; - * @param value The bytes for kafkaUserId to set. - * @return This builder for chaining. - */ - public Builder setKafkaUserIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - userIdCase_ = 1; - userId_ = value; - onChanged(); - return this; - } - - /** - * int32 other_user_id = 2; - * @return Whether the otherUserId field is set. - */ - public boolean hasOtherUserId() { - return userIdCase_ == 2; - } - /** - * int32 other_user_id = 2; - * @return The otherUserId. - */ - public int getOtherUserId() { - if (userIdCase_ == 2) { - return (java.lang.Integer) userId_; - } - return 0; - } - /** - * int32 other_user_id = 2; - * @param value The otherUserId to set. - * @return This builder for chaining. - */ - public Builder setOtherUserId(int value) { - userIdCase_ = 2; - userId_ = value; - onChanged(); - return this; - } - /** - * int32 other_user_id = 2; - * @return This builder for chaining. - */ - public Builder clearOtherUserId() { - if (userIdCase_ == 2) { - userIdCase_ = 0; - userId_ = null; - onChanged(); - } - return this; - } - - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder> anotherIdBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - * @return Whether the anotherId field is set. - */ - @java.lang.Override - public boolean hasAnotherId() { - return userIdCase_ == 3; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - * @return The anotherId. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId getAnotherId() { - if (anotherIdBuilder_ == null) { - if (userIdCase_ == 3) { - return (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_; - } - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } else { - if (userIdCase_ == 3) { - return anotherIdBuilder_.getMessage(); - } - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - public Builder setAnotherId(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId value) { - if (anotherIdBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - userId_ = value; - onChanged(); - } else { - anotherIdBuilder_.setMessage(value); - } - userIdCase_ = 3; - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - public Builder setAnotherId( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder builderForValue) { - if (anotherIdBuilder_ == null) { - userId_ = builderForValue.build(); - onChanged(); - } else { - anotherIdBuilder_.setMessage(builderForValue.build()); - } - userIdCase_ = 3; - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - public Builder mergeAnotherId(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId value) { - if (anotherIdBuilder_ == null) { - if (userIdCase_ == 3 && - userId_ != io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance()) { - userId_ = io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.newBuilder((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_) - .mergeFrom(value).buildPartial(); - } else { - userId_ = value; - } - onChanged(); - } else { - if (userIdCase_ == 3) { - anotherIdBuilder_.mergeFrom(value); - } - anotherIdBuilder_.setMessage(value); - } - userIdCase_ = 3; - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - public Builder clearAnotherId() { - if (anotherIdBuilder_ == null) { - if (userIdCase_ == 3) { - userIdCase_ = 0; - userId_ = null; - onChanged(); - } - } else { - if (userIdCase_ == 3) { - userIdCase_ = 0; - userId_ = null; - } - anotherIdBuilder_.clear(); - } - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder getAnotherIdBuilder() { - return getAnotherIdFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder getAnotherIdOrBuilder() { - if ((userIdCase_ == 3) && (anotherIdBuilder_ != null)) { - return anotherIdBuilder_.getMessageOrBuilder(); - } else { - if (userIdCase_ == 3) { - return (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_; - } - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.MessageId another_id = 3; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder> - getAnotherIdFieldBuilder() { - if (anotherIdBuilder_ == null) { - if (!(userIdCase_ == 3)) { - userId_ = io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } - anotherIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder>( - (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) userId_, - getParentForChildren(), - isClean()); - userId_ = null; - } - userIdCase_ = 3; - onChanged();; - return anotherIdBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.UserId) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.UserId) - private static final io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId(); - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public UserId parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new UserId(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface MessageIdOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.MessageId) - com.google.protobuf.MessageOrBuilder { - - /** - * string id = 1; - * @return The id. - */ - java.lang.String getId(); - /** - * string id = 1; - * @return The bytes for id. - */ - com.google.protobuf.ByteString - getIdBytes(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.MessageId} - */ - public static final class MessageId extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.MessageId) - MessageIdOrBuilder { - private static final long serialVersionUID = 0L; - // Use MessageId.newBuilder() to construct. - private MessageId(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private MessageId() { - id_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new MessageId(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private MessageId( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - id_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder.class); - } - - public static final int ID_FIELD_NUMBER = 1; - private volatile java.lang.Object id_; - /** - * string id = 1; - * @return The id. - */ - @java.lang.Override - public java.lang.String getId() { - java.lang.Object ref = id_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - id_ = s; - return s; - } - } - /** - * string id = 1; - * @return The bytes for id. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getIdBytes() { - java.lang.Object ref = id_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - id_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, id_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, id_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId other = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) obj; - - if (!getId() - .equals(other.getId())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ID_FIELD_NUMBER; - hash = (53 * hash) + getId().hashCode(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.MessageId} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.MessageId) - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageIdOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - id_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId build() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId buildPartial() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId result = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId(this); - result.id_ = id_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId other) { - if (other == io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId.getDefaultInstance()) return this; - if (!other.getId().isEmpty()) { - id_ = other.id_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object id_ = ""; - /** - * string id = 1; - * @return The id. - */ - public java.lang.String getId() { - java.lang.Object ref = id_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - id_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string id = 1; - * @return The bytes for id. - */ - public com.google.protobuf.ByteString - getIdBytes() { - java.lang.Object ref = id_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - id_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string id = 1; - * @param value The id to set. - * @return This builder for chaining. - */ - public Builder setId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - id_ = value; - onChanged(); - return this; - } - /** - * string id = 1; - * @return This builder for chaining. - */ - public Builder clearId() { - - id_ = getDefaultInstance().getId(); - onChanged(); - return this; - } - /** - * string id = 1; - * @param value The bytes for id to set. - * @return This builder for chaining. - */ - public Builder setIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - id_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.MessageId) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.MessageId) - private static final io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId(); - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public MessageId parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new MessageId(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.MessageId getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface ComplexTypeOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.ComplexType) - com.google.protobuf.MessageOrBuilder { - - /** - * string one_id = 1; - * @return Whether the oneId field is set. - */ - boolean hasOneId(); - /** - * string one_id = 1; - * @return The oneId. - */ - java.lang.String getOneId(); - /** - * string one_id = 1; - * @return The bytes for oneId. - */ - com.google.protobuf.ByteString - getOneIdBytes(); - - /** - * int32 other_id = 2; - * @return Whether the otherId field is set. - */ - boolean hasOtherId(); - /** - * int32 other_id = 2; - * @return The otherId. - */ - int getOtherId(); - - /** - * bool is_active = 3; - * @return The isActive. - */ - boolean getIsActive(); - - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.SomeValCase getSomeValCase(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.ComplexType} - */ - public static final class ComplexType extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.ComplexType) - ComplexTypeOrBuilder { - private static final long serialVersionUID = 0L; - // Use ComplexType.newBuilder() to construct. - private ComplexType(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private ComplexType() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new ComplexType(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private ComplexType( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - someValCase_ = 1; - someVal_ = s; - break; - } - case 16: { - someVal_ = input.readInt32(); - someValCase_ = 2; - break; - } - case 24: { - - isActive_ = input.readBool(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder.class); - } - - private int someValCase_ = 0; - private java.lang.Object someVal_; - public enum SomeValCase - implements com.google.protobuf.Internal.EnumLite, - com.google.protobuf.AbstractMessage.InternalOneOfEnum { - ONE_ID(1), - OTHER_ID(2), - SOMEVAL_NOT_SET(0); - private final int value; - private SomeValCase(int value) { - this.value = value; - } - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static SomeValCase valueOf(int value) { - return forNumber(value); - } - - public static SomeValCase forNumber(int value) { - switch (value) { - case 1: return ONE_ID; - case 2: return OTHER_ID; - case 0: return SOMEVAL_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public SomeValCase - getSomeValCase() { - return SomeValCase.forNumber( - someValCase_); - } - - public static final int ONE_ID_FIELD_NUMBER = 1; - /** - * string one_id = 1; - * @return Whether the oneId field is set. - */ - public boolean hasOneId() { - return someValCase_ == 1; - } - /** - * string one_id = 1; - * @return The oneId. - */ - public java.lang.String getOneId() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (someValCase_ == 1) { - someVal_ = s; - } - return s; - } - } - /** - * string one_id = 1; - * @return The bytes for oneId. - */ - public com.google.protobuf.ByteString - getOneIdBytes() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (someValCase_ == 1) { - someVal_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int OTHER_ID_FIELD_NUMBER = 2; - /** - * int32 other_id = 2; - * @return Whether the otherId field is set. - */ - @java.lang.Override - public boolean hasOtherId() { - return someValCase_ == 2; - } - /** - * int32 other_id = 2; - * @return The otherId. - */ - @java.lang.Override - public int getOtherId() { - if (someValCase_ == 2) { - return (java.lang.Integer) someVal_; - } - return 0; - } - - public static final int IS_ACTIVE_FIELD_NUMBER = 3; - private boolean isActive_; - /** - * bool is_active = 3; - * @return The isActive. - */ - @java.lang.Override - public boolean getIsActive() { - return isActive_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (someValCase_ == 1) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, someVal_); - } - if (someValCase_ == 2) { - output.writeInt32( - 2, (int)((java.lang.Integer) someVal_)); - } - if (isActive_ != false) { - output.writeBool(3, isActive_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (someValCase_ == 1) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, someVal_); - } - if (someValCase_ == 2) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size( - 2, (int)((java.lang.Integer) someVal_)); - } - if (isActive_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(3, isActive_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType other = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType) obj; - - if (getIsActive() - != other.getIsActive()) return false; - if (!getSomeValCase().equals(other.getSomeValCase())) return false; - switch (someValCase_) { - case 1: - if (!getOneId() - .equals(other.getOneId())) return false; - break; - case 2: - if (getOtherId() - != other.getOtherId()) return false; - break; - case 0: - default: - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + IS_ACTIVE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIsActive()); - switch (someValCase_) { - case 1: - hash = (37 * hash) + ONE_ID_FIELD_NUMBER; - hash = (53 * hash) + getOneId().hashCode(); - break; - case 2: - hash = (37 * hash) + OTHER_ID_FIELD_NUMBER; - hash = (53 * hash) + getOtherId(); - break; - case 0: - default: - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.ComplexType} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.ComplexType) - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - isActive_ = false; - - someValCase_ = 0; - someVal_ = null; - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType build() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType buildPartial() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType result = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType(this); - if (someValCase_ == 1) { - result.someVal_ = someVal_; - } - if (someValCase_ == 2) { - result.someVal_ = someVal_; - } - result.isActive_ = isActive_; - result.someValCase_ = someValCase_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType other) { - if (other == io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.getDefaultInstance()) return this; - if (other.getIsActive() != false) { - setIsActive(other.getIsActive()); - } - switch (other.getSomeValCase()) { - case ONE_ID: { - someValCase_ = 1; - someVal_ = other.someVal_; - onChanged(); - break; - } - case OTHER_ID: { - setOtherId(other.getOtherId()); - break; - } - case SOMEVAL_NOT_SET: { - break; - } - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int someValCase_ = 0; - private java.lang.Object someVal_; - public SomeValCase - getSomeValCase() { - return SomeValCase.forNumber( - someValCase_); - } - - public Builder clearSomeVal() { - someValCase_ = 0; - someVal_ = null; - onChanged(); - return this; - } - - - /** - * string one_id = 1; - * @return Whether the oneId field is set. - */ - @java.lang.Override - public boolean hasOneId() { - return someValCase_ == 1; - } - /** - * string one_id = 1; - * @return The oneId. - */ - @java.lang.Override - public java.lang.String getOneId() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (someValCase_ == 1) { - someVal_ = s; - } - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string one_id = 1; - * @return The bytes for oneId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getOneIdBytes() { - java.lang.Object ref = ""; - if (someValCase_ == 1) { - ref = someVal_; - } - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - if (someValCase_ == 1) { - someVal_ = b; - } - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string one_id = 1; - * @param value The oneId to set. - * @return This builder for chaining. - */ - public Builder setOneId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - someValCase_ = 1; - someVal_ = value; - onChanged(); - return this; - } - /** - * string one_id = 1; - * @return This builder for chaining. - */ - public Builder clearOneId() { - if (someValCase_ == 1) { - someValCase_ = 0; - someVal_ = null; - onChanged(); - } - return this; - } - /** - * string one_id = 1; - * @param value The bytes for oneId to set. - * @return This builder for chaining. - */ - public Builder setOneIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - someValCase_ = 1; - someVal_ = value; - onChanged(); - return this; - } - - /** - * int32 other_id = 2; - * @return Whether the otherId field is set. - */ - public boolean hasOtherId() { - return someValCase_ == 2; - } - /** - * int32 other_id = 2; - * @return The otherId. - */ - public int getOtherId() { - if (someValCase_ == 2) { - return (java.lang.Integer) someVal_; - } - return 0; - } - /** - * int32 other_id = 2; - * @param value The otherId to set. - * @return This builder for chaining. - */ - public Builder setOtherId(int value) { - someValCase_ = 2; - someVal_ = value; - onChanged(); - return this; - } - /** - * int32 other_id = 2; - * @return This builder for chaining. - */ - public Builder clearOtherId() { - if (someValCase_ == 2) { - someValCase_ = 0; - someVal_ = null; - onChanged(); - } - return this; - } - - private boolean isActive_ ; - /** - * bool is_active = 3; - * @return The isActive. - */ - @java.lang.Override - public boolean getIsActive() { - return isActive_; - } - /** - * bool is_active = 3; - * @param value The isActive to set. - * @return This builder for chaining. - */ - public Builder setIsActive(boolean value) { - - isActive_ = value; - onChanged(); - return this; - } - /** - * bool is_active = 3; - * @return This builder for chaining. - */ - public Builder clearIsActive() { - - isActive_ = false; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.ComplexType) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.ComplexType) - private static final io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType(); - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public ComplexType parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new ComplexType(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface NestedMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.NestedMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - * @return Whether the userId field is set. - */ - boolean hasUserId(); - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - * @return The userId. - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId getUserId(); - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder getUserIdOrBuilder(); - - /** - * bool is_active = 2; - * @return The isActive. - */ - boolean getIsActive(); - - /** - * repeated string experiments_active = 3; - * @return A list containing the experimentsActive. - */ - java.util.List - getExperimentsActiveList(); - /** - * repeated string experiments_active = 3; - * @return The count of experimentsActive. - */ - int getExperimentsActiveCount(); - /** - * repeated string experiments_active = 3; - * @param index The index of the element to return. - * @return The experimentsActive at the given index. - */ - java.lang.String getExperimentsActive(int index); - /** - * repeated string experiments_active = 3; - * @param index The index of the value to return. - * @return The bytes of the experimentsActive at the given index. - */ - com.google.protobuf.ByteString - getExperimentsActiveBytes(int index); - - /** - * .google.protobuf.Timestamp updated_at = 4; - * @return Whether the updatedAt field is set. - */ - boolean hasUpdatedAt(); - /** - * .google.protobuf.Timestamp updated_at = 4; - * @return The updatedAt. - */ - com.google.protobuf.Timestamp getUpdatedAt(); - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - com.google.protobuf.TimestampOrBuilder getUpdatedAtOrBuilder(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return The enum numeric value on the wire for status. - */ - int getStatusValue(); - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return The status. - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status getStatus(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - * @return Whether the complexType field is set. - */ - boolean hasComplexType(); - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - * @return The complexType. - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType getComplexType(); - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder getComplexTypeOrBuilder(); - - /** - * map<string, string> map_type = 7; - */ - int getMapTypeCount(); - /** - * map<string, string> map_type = 7; - */ - boolean containsMapType( - java.lang.String key); - /** - * Use {@link #getMapTypeMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getMapType(); - /** - * map<string, string> map_type = 7; - */ - java.util.Map - getMapTypeMap(); - /** - * map<string, string> map_type = 7; - */ - - java.lang.String getMapTypeOrDefault( - java.lang.String key, - java.lang.String defaultValue); - /** - * map<string, string> map_type = 7; - */ - - java.lang.String getMapTypeOrThrow( - java.lang.String key); - - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - * @return Whether the inner field is set. - */ - boolean hasInner(); - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - * @return The inner. - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage getInner(); - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder getInnerOrBuilder(); - } - /** - *
-   * Complex message using nested protos and repeated fields
-   * 
- * - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.NestedMessage} - */ - public static final class NestedMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.NestedMessage) - NestedMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use NestedMessage.newBuilder() to construct. - private NestedMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private NestedMessage() { - experimentsActive_ = com.google.protobuf.LazyStringArrayList.EMPTY; - status_ = 0; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new NestedMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private NestedMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder subBuilder = null; - if (userId_ != null) { - subBuilder = userId_.toBuilder(); - } - userId_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(userId_); - userId_ = subBuilder.buildPartial(); - } - - break; - } - case 16: { - - isActive_ = input.readBool(); - break; - } - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - experimentsActive_ = new com.google.protobuf.LazyStringArrayList(); - mutable_bitField0_ |= 0x00000001; - } - experimentsActive_.add(s); - break; - } - case 34: { - com.google.protobuf.Timestamp.Builder subBuilder = null; - if (updatedAt_ != null) { - subBuilder = updatedAt_.toBuilder(); - } - updatedAt_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(updatedAt_); - updatedAt_ = subBuilder.buildPartial(); - } - - break; - } - case 40: { - int rawValue = input.readEnum(); - - status_ = rawValue; - break; - } - case 50: { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder subBuilder = null; - if (complexType_ != null) { - subBuilder = complexType_.toBuilder(); - } - complexType_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(complexType_); - complexType_ = subBuilder.buildPartial(); - } - - break; - } - case 58: { - if (!((mutable_bitField0_ & 0x00000002) != 0)) { - mapType_ = com.google.protobuf.MapField.newMapField( - MapTypeDefaultEntryHolder.defaultEntry); - mutable_bitField0_ |= 0x00000002; - } - com.google.protobuf.MapEntry - mapType__ = input.readMessage( - MapTypeDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - mapType_.getMutableMap().put( - mapType__.getKey(), mapType__.getValue()); - break; - } - case 66: { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder subBuilder = null; - if (inner_ != null) { - subBuilder = inner_.toBuilder(); - } - inner_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(inner_); - inner_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - experimentsActive_ = experimentsActive_.getUnmodifiableView(); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 7: - return internalGetMapType(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder.class); - } - - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerEnum} - */ - public enum InnerEnum - implements com.google.protobuf.ProtocolMessageEnum { - /** - * ZERO = 0; - */ - ZERO(0), - UNRECOGNIZED(-1), - ; - - /** - * ALSO_ZERO = 0; - */ - public static final InnerEnum ALSO_ZERO = ZERO; - /** - * ZERO = 0; - */ - public static final int ZERO_VALUE = 0; - /** - * ALSO_ZERO = 0; - */ - public static final int ALSO_ZERO_VALUE = 0; - - - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static InnerEnum valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static InnerEnum forNumber(int value) { - switch (value) { - case 0: return ZERO; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - InnerEnum> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public InnerEnum findValueByNumber(int number) { - return InnerEnum.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalStateException( - "Can't get the descriptor of an unrecognized enum value."); - } - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.getDescriptor().getEnumTypes().get(0); - } - - private static final InnerEnum[] VALUES = getStaticValuesArray(); - private static InnerEnum[] getStaticValuesArray() { - return new InnerEnum[] { - ZERO, ALSO_ZERO, - }; - } - public static InnerEnum valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - if (desc.getIndex() == -1) { - return UNRECOGNIZED; - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private InnerEnum(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerEnum) - } - - public interface InnerMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * string id = 1 [json_name = "id"]; - * @return The id. - */ - java.lang.String getId(); - /** - * string id = 1 [json_name = "id"]; - * @return The bytes for id. - */ - com.google.protobuf.ByteString - getIdBytes(); - - /** - * repeated int32 ids = 2 [packed = true]; - * @return A list containing the ids. - */ - java.util.List getIdsList(); - /** - * repeated int32 ids = 2 [packed = true]; - * @return The count of ids. - */ - int getIdsCount(); - /** - * repeated int32 ids = 2 [packed = true]; - * @param index The index of the element to return. - * @return The ids at the given index. - */ - int getIds(int index); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage} - */ - public static final class InnerMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage) - InnerMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use InnerMessage.newBuilder() to construct. - private InnerMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private InnerMessage() { - id_ = ""; - ids_ = emptyIntList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new InnerMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private InnerMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - id_ = s; - break; - } - case 16: { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - ids_ = newIntList(); - mutable_bitField0_ |= 0x00000001; - } - ids_.addInt(input.readInt32()); - break; - } - case 18: { - int length = input.readRawVarint32(); - int limit = input.pushLimit(length); - if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) { - ids_ = newIntList(); - mutable_bitField0_ |= 0x00000001; - } - while (input.getBytesUntilLimit() > 0) { - ids_.addInt(input.readInt32()); - } - input.popLimit(limit); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - if (((mutable_bitField0_ & 0x00000001) != 0)) { - ids_.makeImmutable(); // C - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder.class); - } - - public static final int ID_FIELD_NUMBER = 1; - private volatile java.lang.Object id_; - /** - * string id = 1 [json_name = "id"]; - * @return The id. - */ - @java.lang.Override - public java.lang.String getId() { - java.lang.Object ref = id_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - id_ = s; - return s; - } - } - /** - * string id = 1 [json_name = "id"]; - * @return The bytes for id. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getIdBytes() { - java.lang.Object ref = id_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - id_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int IDS_FIELD_NUMBER = 2; - private com.google.protobuf.Internal.IntList ids_; - /** - * repeated int32 ids = 2 [packed = true]; - * @return A list containing the ids. - */ - @java.lang.Override - public java.util.List - getIdsList() { - return ids_; - } - /** - * repeated int32 ids = 2 [packed = true]; - * @return The count of ids. - */ - public int getIdsCount() { - return ids_.size(); - } - /** - * repeated int32 ids = 2 [packed = true]; - * @param index The index of the element to return. - * @return The ids at the given index. - */ - public int getIds(int index) { - return ids_.getInt(index); - } - private int idsMemoizedSerializedSize = -1; - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - getSerializedSize(); - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, id_); - } - if (getIdsList().size() > 0) { - output.writeUInt32NoTag(18); - output.writeUInt32NoTag(idsMemoizedSerializedSize); - } - for (int i = 0; i < ids_.size(); i++) { - output.writeInt32NoTag(ids_.getInt(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, id_); - } - { - int dataSize = 0; - for (int i = 0; i < ids_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeInt32SizeNoTag(ids_.getInt(i)); - } - size += dataSize; - if (!getIdsList().isEmpty()) { - size += 1; - size += com.google.protobuf.CodedOutputStream - .computeInt32SizeNoTag(dataSize); - } - idsMemoizedSerializedSize = dataSize; - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage other = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage) obj; - - if (!getId() - .equals(other.getId())) return false; - if (!getIdsList() - .equals(other.getIdsList())) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + ID_FIELD_NUMBER; - hash = (53 * hash) + getId().hashCode(); - if (getIdsCount() > 0) { - hash = (37 * hash) + IDS_FIELD_NUMBER; - hash = (53 * hash) + getIdsList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage) - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - id_ = ""; - - ids_ = emptyIntList(); - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage build() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage buildPartial() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage result = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage(this); - int from_bitField0_ = bitField0_; - result.id_ = id_; - if (((bitField0_ & 0x00000001) != 0)) { - ids_.makeImmutable(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.ids_ = ids_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage other) { - if (other == io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.getDefaultInstance()) return this; - if (!other.getId().isEmpty()) { - id_ = other.id_; - onChanged(); - } - if (!other.ids_.isEmpty()) { - if (ids_.isEmpty()) { - ids_ = other.ids_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureIdsIsMutable(); - ids_.addAll(other.ids_); - } - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.lang.Object id_ = ""; - /** - * string id = 1 [json_name = "id"]; - * @return The id. - */ - public java.lang.String getId() { - java.lang.Object ref = id_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - id_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string id = 1 [json_name = "id"]; - * @return The bytes for id. - */ - public com.google.protobuf.ByteString - getIdBytes() { - java.lang.Object ref = id_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - id_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string id = 1 [json_name = "id"]; - * @param value The id to set. - * @return This builder for chaining. - */ - public Builder setId( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - id_ = value; - onChanged(); - return this; - } - /** - * string id = 1 [json_name = "id"]; - * @return This builder for chaining. - */ - public Builder clearId() { - - id_ = getDefaultInstance().getId(); - onChanged(); - return this; - } - /** - * string id = 1 [json_name = "id"]; - * @param value The bytes for id to set. - * @return This builder for chaining. - */ - public Builder setIdBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - id_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.Internal.IntList ids_ = emptyIntList(); - private void ensureIdsIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - ids_ = mutableCopy(ids_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated int32 ids = 2 [packed = true]; - * @return A list containing the ids. - */ - public java.util.List - getIdsList() { - return ((bitField0_ & 0x00000001) != 0) ? - java.util.Collections.unmodifiableList(ids_) : ids_; - } - /** - * repeated int32 ids = 2 [packed = true]; - * @return The count of ids. - */ - public int getIdsCount() { - return ids_.size(); - } - /** - * repeated int32 ids = 2 [packed = true]; - * @param index The index of the element to return. - * @return The ids at the given index. - */ - public int getIds(int index) { - return ids_.getInt(index); - } - /** - * repeated int32 ids = 2 [packed = true]; - * @param index The index to set the value at. - * @param value The ids to set. - * @return This builder for chaining. - */ - public Builder setIds( - int index, int value) { - ensureIdsIsMutable(); - ids_.setInt(index, value); - onChanged(); - return this; - } - /** - * repeated int32 ids = 2 [packed = true]; - * @param value The ids to add. - * @return This builder for chaining. - */ - public Builder addIds(int value) { - ensureIdsIsMutable(); - ids_.addInt(value); - onChanged(); - return this; - } - /** - * repeated int32 ids = 2 [packed = true]; - * @param values The ids to add. - * @return This builder for chaining. - */ - public Builder addAllIds( - java.lang.Iterable values) { - ensureIdsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, ids_); - onChanged(); - return this; - } - /** - * repeated int32 ids = 2 [packed = true]; - * @return This builder for chaining. - */ - public Builder clearIds() { - ids_ = emptyIntList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage) - private static final io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage(); - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public InnerMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new InnerMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int USER_ID_FIELD_NUMBER = 1; - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId userId_; - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - * @return Whether the userId field is set. - */ - @java.lang.Override - public boolean hasUserId() { - return userId_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - * @return The userId. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId getUserId() { - return userId_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.getDefaultInstance() : userId_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder getUserIdOrBuilder() { - return getUserId(); - } - - public static final int IS_ACTIVE_FIELD_NUMBER = 2; - private boolean isActive_; - /** - * bool is_active = 2; - * @return The isActive. - */ - @java.lang.Override - public boolean getIsActive() { - return isActive_; - } - - public static final int EXPERIMENTS_ACTIVE_FIELD_NUMBER = 3; - private com.google.protobuf.LazyStringList experimentsActive_; - /** - * repeated string experiments_active = 3; - * @return A list containing the experimentsActive. - */ - public com.google.protobuf.ProtocolStringList - getExperimentsActiveList() { - return experimentsActive_; - } - /** - * repeated string experiments_active = 3; - * @return The count of experimentsActive. - */ - public int getExperimentsActiveCount() { - return experimentsActive_.size(); - } - /** - * repeated string experiments_active = 3; - * @param index The index of the element to return. - * @return The experimentsActive at the given index. - */ - public java.lang.String getExperimentsActive(int index) { - return experimentsActive_.get(index); - } - /** - * repeated string experiments_active = 3; - * @param index The index of the value to return. - * @return The bytes of the experimentsActive at the given index. - */ - public com.google.protobuf.ByteString - getExperimentsActiveBytes(int index) { - return experimentsActive_.getByteString(index); - } - - public static final int UPDATED_AT_FIELD_NUMBER = 4; - private com.google.protobuf.Timestamp updatedAt_; - /** - * .google.protobuf.Timestamp updated_at = 4; - * @return Whether the updatedAt field is set. - */ - @java.lang.Override - public boolean hasUpdatedAt() { - return updatedAt_ != null; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - * @return The updatedAt. - */ - @java.lang.Override - public com.google.protobuf.Timestamp getUpdatedAt() { - return updatedAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : updatedAt_; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - @java.lang.Override - public com.google.protobuf.TimestampOrBuilder getUpdatedAtOrBuilder() { - return getUpdatedAt(); - } - - public static final int STATUS_FIELD_NUMBER = 5; - private int status_; - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return The enum numeric value on the wire for status. - */ - @java.lang.Override public int getStatusValue() { - return status_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return The status. - */ - @java.lang.Override public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status getStatus() { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status result = io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status.valueOf(status_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status.UNRECOGNIZED : result; - } - - public static final int COMPLEX_TYPE_FIELD_NUMBER = 6; - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType complexType_; - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - * @return Whether the complexType field is set. - */ - @java.lang.Override - public boolean hasComplexType() { - return complexType_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - * @return The complexType. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType getComplexType() { - return complexType_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.getDefaultInstance() : complexType_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder getComplexTypeOrBuilder() { - return getComplexType(); - } - - public static final int MAP_TYPE_FIELD_NUMBER = 7; - private static final class MapTypeDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.String, java.lang.String> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_MapTypeEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.STRING, - ""); - } - private com.google.protobuf.MapField< - java.lang.String, java.lang.String> mapType_; - private com.google.protobuf.MapField - internalGetMapType() { - if (mapType_ == null) { - return com.google.protobuf.MapField.emptyMapField( - MapTypeDefaultEntryHolder.defaultEntry); - } - return mapType_; - } - - public int getMapTypeCount() { - return internalGetMapType().getMap().size(); - } - /** - * map<string, string> map_type = 7; - */ - - @java.lang.Override - public boolean containsMapType( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetMapType().getMap().containsKey(key); - } - /** - * Use {@link #getMapTypeMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getMapType() { - return getMapTypeMap(); - } - /** - * map<string, string> map_type = 7; - */ - @java.lang.Override - - public java.util.Map getMapTypeMap() { - return internalGetMapType().getMap(); - } - /** - * map<string, string> map_type = 7; - */ - @java.lang.Override - - public java.lang.String getMapTypeOrDefault( - java.lang.String key, - java.lang.String defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetMapType().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, string> map_type = 7; - */ - @java.lang.Override - - public java.lang.String getMapTypeOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetMapType().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int INNER_FIELD_NUMBER = 8; - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage inner_; - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - * @return Whether the inner field is set. - */ - @java.lang.Override - public boolean hasInner() { - return inner_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - * @return The inner. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage getInner() { - return inner_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.getDefaultInstance() : inner_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder getInnerOrBuilder() { - return getInner(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (userId_ != null) { - output.writeMessage(1, getUserId()); - } - if (isActive_ != false) { - output.writeBool(2, isActive_); - } - for (int i = 0; i < experimentsActive_.size(); i++) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, experimentsActive_.getRaw(i)); - } - if (updatedAt_ != null) { - output.writeMessage(4, getUpdatedAt()); - } - if (status_ != io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status.ACTIVE.getNumber()) { - output.writeEnum(5, status_); - } - if (complexType_ != null) { - output.writeMessage(6, getComplexType()); - } - com.google.protobuf.GeneratedMessageV3 - .serializeStringMapTo( - output, - internalGetMapType(), - MapTypeDefaultEntryHolder.defaultEntry, - 7); - if (inner_ != null) { - output.writeMessage(8, getInner()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (userId_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getUserId()); - } - if (isActive_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, isActive_); - } - { - int dataSize = 0; - for (int i = 0; i < experimentsActive_.size(); i++) { - dataSize += computeStringSizeNoTag(experimentsActive_.getRaw(i)); - } - size += dataSize; - size += 1 * getExperimentsActiveList().size(); - } - if (updatedAt_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, getUpdatedAt()); - } - if (status_ != io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status.ACTIVE.getNumber()) { - size += com.google.protobuf.CodedOutputStream - .computeEnumSize(5, status_); - } - if (complexType_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(6, getComplexType()); - } - for (java.util.Map.Entry entry - : internalGetMapType().getMap().entrySet()) { - com.google.protobuf.MapEntry - mapType__ = MapTypeDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(7, mapType__); - } - if (inner_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(8, getInner()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage other = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage) obj; - - if (hasUserId() != other.hasUserId()) return false; - if (hasUserId()) { - if (!getUserId() - .equals(other.getUserId())) return false; - } - if (getIsActive() - != other.getIsActive()) return false; - if (!getExperimentsActiveList() - .equals(other.getExperimentsActiveList())) return false; - if (hasUpdatedAt() != other.hasUpdatedAt()) return false; - if (hasUpdatedAt()) { - if (!getUpdatedAt() - .equals(other.getUpdatedAt())) return false; - } - if (status_ != other.status_) return false; - if (hasComplexType() != other.hasComplexType()) return false; - if (hasComplexType()) { - if (!getComplexType() - .equals(other.getComplexType())) return false; - } - if (!internalGetMapType().equals( - other.internalGetMapType())) return false; - if (hasInner() != other.hasInner()) return false; - if (hasInner()) { - if (!getInner() - .equals(other.getInner())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasUserId()) { - hash = (37 * hash) + USER_ID_FIELD_NUMBER; - hash = (53 * hash) + getUserId().hashCode(); - } - hash = (37 * hash) + IS_ACTIVE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getIsActive()); - if (getExperimentsActiveCount() > 0) { - hash = (37 * hash) + EXPERIMENTS_ACTIVE_FIELD_NUMBER; - hash = (53 * hash) + getExperimentsActiveList().hashCode(); - } - if (hasUpdatedAt()) { - hash = (37 * hash) + UPDATED_AT_FIELD_NUMBER; - hash = (53 * hash) + getUpdatedAt().hashCode(); - } - hash = (37 * hash) + STATUS_FIELD_NUMBER; - hash = (53 * hash) + status_; - if (hasComplexType()) { - hash = (37 * hash) + COMPLEX_TYPE_FIELD_NUMBER; - hash = (53 * hash) + getComplexType().hashCode(); - } - if (!internalGetMapType().getMap().isEmpty()) { - hash = (37 * hash) + MAP_TYPE_FIELD_NUMBER; - hash = (53 * hash) + internalGetMapType().hashCode(); - } - if (hasInner()) { - hash = (37 * hash) + INNER_FIELD_NUMBER; - hash = (53 * hash) + getInner().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Complex message using nested protos and repeated fields
-     * 
- * - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.NestedMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.NestedMessage) - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 7: - return internalGetMapType(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 7: - return internalGetMutableMapType(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.class, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (userIdBuilder_ == null) { - userId_ = null; - } else { - userId_ = null; - userIdBuilder_ = null; - } - isActive_ = false; - - experimentsActive_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - if (updatedAtBuilder_ == null) { - updatedAt_ = null; - } else { - updatedAt_ = null; - updatedAtBuilder_ = null; - } - status_ = 0; - - if (complexTypeBuilder_ == null) { - complexType_ = null; - } else { - complexType_ = null; - complexTypeBuilder_ = null; - } - internalGetMutableMapType().clear(); - if (innerBuilder_ == null) { - inner_ = null; - } else { - inner_ = null; - innerBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage build() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage buildPartial() { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage result = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage(this); - int from_bitField0_ = bitField0_; - if (userIdBuilder_ == null) { - result.userId_ = userId_; - } else { - result.userId_ = userIdBuilder_.build(); - } - result.isActive_ = isActive_; - if (((bitField0_ & 0x00000001) != 0)) { - experimentsActive_ = experimentsActive_.getUnmodifiableView(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.experimentsActive_ = experimentsActive_; - if (updatedAtBuilder_ == null) { - result.updatedAt_ = updatedAt_; - } else { - result.updatedAt_ = updatedAtBuilder_.build(); - } - result.status_ = status_; - if (complexTypeBuilder_ == null) { - result.complexType_ = complexType_; - } else { - result.complexType_ = complexTypeBuilder_.build(); - } - result.mapType_ = internalGetMapType(); - result.mapType_.makeImmutable(); - if (innerBuilder_ == null) { - result.inner_ = inner_; - } else { - result.inner_ = innerBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage other) { - if (other == io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.getDefaultInstance()) return this; - if (other.hasUserId()) { - mergeUserId(other.getUserId()); - } - if (other.getIsActive() != false) { - setIsActive(other.getIsActive()); - } - if (!other.experimentsActive_.isEmpty()) { - if (experimentsActive_.isEmpty()) { - experimentsActive_ = other.experimentsActive_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureExperimentsActiveIsMutable(); - experimentsActive_.addAll(other.experimentsActive_); - } - onChanged(); - } - if (other.hasUpdatedAt()) { - mergeUpdatedAt(other.getUpdatedAt()); - } - if (other.status_ != 0) { - setStatusValue(other.getStatusValue()); - } - if (other.hasComplexType()) { - mergeComplexType(other.getComplexType()); - } - internalGetMutableMapType().mergeFrom( - other.internalGetMapType()); - if (other.hasInner()) { - mergeInner(other.getInner()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId userId_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder> userIdBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - * @return Whether the userId field is set. - */ - public boolean hasUserId() { - return userIdBuilder_ != null || userId_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - * @return The userId. - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId getUserId() { - if (userIdBuilder_ == null) { - return userId_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.getDefaultInstance() : userId_; - } else { - return userIdBuilder_.getMessage(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - public Builder setUserId(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId value) { - if (userIdBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - userId_ = value; - onChanged(); - } else { - userIdBuilder_.setMessage(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - public Builder setUserId( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder builderForValue) { - if (userIdBuilder_ == null) { - userId_ = builderForValue.build(); - onChanged(); - } else { - userIdBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - public Builder mergeUserId(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId value) { - if (userIdBuilder_ == null) { - if (userId_ != null) { - userId_ = - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.newBuilder(userId_).mergeFrom(value).buildPartial(); - } else { - userId_ = value; - } - onChanged(); - } else { - userIdBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - public Builder clearUserId() { - if (userIdBuilder_ == null) { - userId_ = null; - onChanged(); - } else { - userId_ = null; - userIdBuilder_ = null; - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder getUserIdBuilder() { - - onChanged(); - return getUserIdFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder getUserIdOrBuilder() { - if (userIdBuilder_ != null) { - return userIdBuilder_.getMessageOrBuilder(); - } else { - return userId_ == null ? - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.getDefaultInstance() : userId_; - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.UserId user_id = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder> - getUserIdFieldBuilder() { - if (userIdBuilder_ == null) { - userIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserId.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.UserIdOrBuilder>( - getUserId(), - getParentForChildren(), - isClean()); - userId_ = null; - } - return userIdBuilder_; - } - - private boolean isActive_ ; - /** - * bool is_active = 2; - * @return The isActive. - */ - @java.lang.Override - public boolean getIsActive() { - return isActive_; - } - /** - * bool is_active = 2; - * @param value The isActive to set. - * @return This builder for chaining. - */ - public Builder setIsActive(boolean value) { - - isActive_ = value; - onChanged(); - return this; - } - /** - * bool is_active = 2; - * @return This builder for chaining. - */ - public Builder clearIsActive() { - - isActive_ = false; - onChanged(); - return this; - } - - private com.google.protobuf.LazyStringList experimentsActive_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureExperimentsActiveIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - experimentsActive_ = new com.google.protobuf.LazyStringArrayList(experimentsActive_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated string experiments_active = 3; - * @return A list containing the experimentsActive. - */ - public com.google.protobuf.ProtocolStringList - getExperimentsActiveList() { - return experimentsActive_.getUnmodifiableView(); - } - /** - * repeated string experiments_active = 3; - * @return The count of experimentsActive. - */ - public int getExperimentsActiveCount() { - return experimentsActive_.size(); - } - /** - * repeated string experiments_active = 3; - * @param index The index of the element to return. - * @return The experimentsActive at the given index. - */ - public java.lang.String getExperimentsActive(int index) { - return experimentsActive_.get(index); - } - /** - * repeated string experiments_active = 3; - * @param index The index of the value to return. - * @return The bytes of the experimentsActive at the given index. - */ - public com.google.protobuf.ByteString - getExperimentsActiveBytes(int index) { - return experimentsActive_.getByteString(index); - } - /** - * repeated string experiments_active = 3; - * @param index The index to set the value at. - * @param value The experimentsActive to set. - * @return This builder for chaining. - */ - public Builder setExperimentsActive( - int index, java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureExperimentsActiveIsMutable(); - experimentsActive_.set(index, value); - onChanged(); - return this; - } - /** - * repeated string experiments_active = 3; - * @param value The experimentsActive to add. - * @return This builder for chaining. - */ - public Builder addExperimentsActive( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureExperimentsActiveIsMutable(); - experimentsActive_.add(value); - onChanged(); - return this; - } - /** - * repeated string experiments_active = 3; - * @param values The experimentsActive to add. - * @return This builder for chaining. - */ - public Builder addAllExperimentsActive( - java.lang.Iterable values) { - ensureExperimentsActiveIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, experimentsActive_); - onChanged(); - return this; - } - /** - * repeated string experiments_active = 3; - * @return This builder for chaining. - */ - public Builder clearExperimentsActive() { - experimentsActive_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - * repeated string experiments_active = 3; - * @param value The bytes of the experimentsActive to add. - * @return This builder for chaining. - */ - public Builder addExperimentsActiveBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - ensureExperimentsActiveIsMutable(); - experimentsActive_.add(value); - onChanged(); - return this; - } - - private com.google.protobuf.Timestamp updatedAt_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> updatedAtBuilder_; - /** - * .google.protobuf.Timestamp updated_at = 4; - * @return Whether the updatedAt field is set. - */ - public boolean hasUpdatedAt() { - return updatedAtBuilder_ != null || updatedAt_ != null; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - * @return The updatedAt. - */ - public com.google.protobuf.Timestamp getUpdatedAt() { - if (updatedAtBuilder_ == null) { - return updatedAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : updatedAt_; - } else { - return updatedAtBuilder_.getMessage(); - } - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - public Builder setUpdatedAt(com.google.protobuf.Timestamp value) { - if (updatedAtBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - updatedAt_ = value; - onChanged(); - } else { - updatedAtBuilder_.setMessage(value); - } - - return this; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - public Builder setUpdatedAt( - com.google.protobuf.Timestamp.Builder builderForValue) { - if (updatedAtBuilder_ == null) { - updatedAt_ = builderForValue.build(); - onChanged(); - } else { - updatedAtBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - public Builder mergeUpdatedAt(com.google.protobuf.Timestamp value) { - if (updatedAtBuilder_ == null) { - if (updatedAt_ != null) { - updatedAt_ = - com.google.protobuf.Timestamp.newBuilder(updatedAt_).mergeFrom(value).buildPartial(); - } else { - updatedAt_ = value; - } - onChanged(); - } else { - updatedAtBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - public Builder clearUpdatedAt() { - if (updatedAtBuilder_ == null) { - updatedAt_ = null; - onChanged(); - } else { - updatedAt_ = null; - updatedAtBuilder_ = null; - } - - return this; - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - public com.google.protobuf.Timestamp.Builder getUpdatedAtBuilder() { - - onChanged(); - return getUpdatedAtFieldBuilder().getBuilder(); - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - public com.google.protobuf.TimestampOrBuilder getUpdatedAtOrBuilder() { - if (updatedAtBuilder_ != null) { - return updatedAtBuilder_.getMessageOrBuilder(); - } else { - return updatedAt_ == null ? - com.google.protobuf.Timestamp.getDefaultInstance() : updatedAt_; - } - } - /** - * .google.protobuf.Timestamp updated_at = 4; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> - getUpdatedAtFieldBuilder() { - if (updatedAtBuilder_ == null) { - updatedAtBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( - getUpdatedAt(), - getParentForChildren(), - isClean()); - updatedAt_ = null; - } - return updatedAtBuilder_; - } - - private int status_ = 0; - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return The enum numeric value on the wire for status. - */ - @java.lang.Override public int getStatusValue() { - return status_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @param value The enum numeric value on the wire for status to set. - * @return This builder for chaining. - */ - public Builder setStatusValue(int value) { - - status_ = value; - onChanged(); - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return The status. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status getStatus() { - @SuppressWarnings("deprecation") - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status result = io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status.valueOf(status_); - return result == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status.UNRECOGNIZED : result; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @param value The status to set. - * @return This builder for chaining. - */ - public Builder setStatus(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.Status value) { - if (value == null) { - throw new NullPointerException(); - } - - status_ = value.getNumber(); - onChanged(); - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.Status status = 5; - * @return This builder for chaining. - */ - public Builder clearStatus() { - - status_ = 0; - onChanged(); - return this; - } - - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType complexType_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder> complexTypeBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - * @return Whether the complexType field is set. - */ - public boolean hasComplexType() { - return complexTypeBuilder_ != null || complexType_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - * @return The complexType. - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType getComplexType() { - if (complexTypeBuilder_ == null) { - return complexType_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.getDefaultInstance() : complexType_; - } else { - return complexTypeBuilder_.getMessage(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - public Builder setComplexType(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType value) { - if (complexTypeBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - complexType_ = value; - onChanged(); - } else { - complexTypeBuilder_.setMessage(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - public Builder setComplexType( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder builderForValue) { - if (complexTypeBuilder_ == null) { - complexType_ = builderForValue.build(); - onChanged(); - } else { - complexTypeBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - public Builder mergeComplexType(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType value) { - if (complexTypeBuilder_ == null) { - if (complexType_ != null) { - complexType_ = - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.newBuilder(complexType_).mergeFrom(value).buildPartial(); - } else { - complexType_ = value; - } - onChanged(); - } else { - complexTypeBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - public Builder clearComplexType() { - if (complexTypeBuilder_ == null) { - complexType_ = null; - onChanged(); - } else { - complexType_ = null; - complexTypeBuilder_ = null; - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder getComplexTypeBuilder() { - - onChanged(); - return getComplexTypeFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder getComplexTypeOrBuilder() { - if (complexTypeBuilder_ != null) { - return complexTypeBuilder_.getMessageOrBuilder(); - } else { - return complexType_ == null ? - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.getDefaultInstance() : complexType_; - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.ComplexType complex_type = 6; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder> - getComplexTypeFieldBuilder() { - if (complexTypeBuilder_ == null) { - complexTypeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexType.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.ComplexTypeOrBuilder>( - getComplexType(), - getParentForChildren(), - isClean()); - complexType_ = null; - } - return complexTypeBuilder_; - } - - private com.google.protobuf.MapField< - java.lang.String, java.lang.String> mapType_; - private com.google.protobuf.MapField - internalGetMapType() { - if (mapType_ == null) { - return com.google.protobuf.MapField.emptyMapField( - MapTypeDefaultEntryHolder.defaultEntry); - } - return mapType_; - } - private com.google.protobuf.MapField - internalGetMutableMapType() { - onChanged();; - if (mapType_ == null) { - mapType_ = com.google.protobuf.MapField.newMapField( - MapTypeDefaultEntryHolder.defaultEntry); - } - if (!mapType_.isMutable()) { - mapType_ = mapType_.copy(); - } - return mapType_; - } - - public int getMapTypeCount() { - return internalGetMapType().getMap().size(); - } - /** - * map<string, string> map_type = 7; - */ - - @java.lang.Override - public boolean containsMapType( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetMapType().getMap().containsKey(key); - } - /** - * Use {@link #getMapTypeMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getMapType() { - return getMapTypeMap(); - } - /** - * map<string, string> map_type = 7; - */ - @java.lang.Override - - public java.util.Map getMapTypeMap() { - return internalGetMapType().getMap(); - } - /** - * map<string, string> map_type = 7; - */ - @java.lang.Override - - public java.lang.String getMapTypeOrDefault( - java.lang.String key, - java.lang.String defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetMapType().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, string> map_type = 7; - */ - @java.lang.Override - - public java.lang.String getMapTypeOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetMapType().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearMapType() { - internalGetMutableMapType().getMutableMap() - .clear(); - return this; - } - /** - * map<string, string> map_type = 7; - */ - - public Builder removeMapType( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - internalGetMutableMapType().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableMapType() { - return internalGetMutableMapType().getMutableMap(); - } - /** - * map<string, string> map_type = 7; - */ - public Builder putMapType( - java.lang.String key, - java.lang.String value) { - if (key == null) { throw new NullPointerException("map key"); } - if (value == null) { - throw new NullPointerException("map value"); -} - - internalGetMutableMapType().getMutableMap() - .put(key, value); - return this; - } - /** - * map<string, string> map_type = 7; - */ - - public Builder putAllMapType( - java.util.Map values) { - internalGetMutableMapType().getMutableMap() - .putAll(values); - return this; - } - - private io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage inner_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder> innerBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - * @return Whether the inner field is set. - */ - public boolean hasInner() { - return innerBuilder_ != null || inner_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - * @return The inner. - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage getInner() { - if (innerBuilder_ == null) { - return inner_ == null ? io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.getDefaultInstance() : inner_; - } else { - return innerBuilder_.getMessage(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - public Builder setInner(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage value) { - if (innerBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - inner_ = value; - onChanged(); - } else { - innerBuilder_.setMessage(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - public Builder setInner( - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder builderForValue) { - if (innerBuilder_ == null) { - inner_ = builderForValue.build(); - onChanged(); - } else { - innerBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - public Builder mergeInner(io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage value) { - if (innerBuilder_ == null) { - if (inner_ != null) { - inner_ = - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.newBuilder(inner_).mergeFrom(value).buildPartial(); - } else { - inner_ = value; - } - onChanged(); - } else { - innerBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - public Builder clearInner() { - if (innerBuilder_ == null) { - inner_ = null; - onChanged(); - } else { - inner_ = null; - innerBuilder_ = null; - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder getInnerBuilder() { - - onChanged(); - return getInnerFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder getInnerOrBuilder() { - if (innerBuilder_ != null) { - return innerBuilder_.getMessageOrBuilder(); - } else { - return inner_ == null ? - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.getDefaultInstance() : inner_; - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.NestedMessage.InnerMessage inner = 8; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder> - getInnerFieldBuilder() { - if (innerBuilder_ == null) { - innerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessage.Builder, io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage.InnerMessageOrBuilder>( - getInner(), - getParentForChildren(), - isClean()); - inner_ = null; - } - return innerBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.NestedMessage) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.NestedMessage) - private static final io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage(); - } - - public static io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public NestedMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new NestedMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.NestedTestProto.NestedMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_MapTypeEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_MapTypeEntry_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\025NestedTestProto.proto\022,io.confluent.ka" + - "fka.serializers.protobuf.test\032\037google/pr" + - "otobuf/timestamp.proto\"\224\001\n\006UserId\022\027\n\rkaf" + - "ka_user_id\030\001 \001(\tH\000\022\027\n\rother_user_id\030\002 \001(" + - "\005H\000\022M\n\nanother_id\030\003 \001(\01327.io.confluent.k" + - "afka.serializers.protobuf.test.MessageId" + - "H\000B\t\n\007user_id\"\027\n\tMessageId\022\n\n\002id\030\001 \001(\t\"R" + - "\n\013ComplexType\022\020\n\006one_id\030\001 \001(\tH\000\022\022\n\010other" + - "_id\030\002 \001(\005H\000\022\021\n\tis_active\030\003 \001(\010B\n\n\010some_v" + - "al\"\250\005\n\rNestedMessage\022E\n\007user_id\030\001 \001(\01324." + - "io.confluent.kafka.serializers.protobuf." + - "test.UserId\022\021\n\tis_active\030\002 \001(\010\022\032\n\022experi" + - "ments_active\030\003 \003(\t\022.\n\nupdated_at\030\004 \001(\0132\032" + - ".google.protobuf.Timestamp\022D\n\006status\030\005 \001" + - "(\01624.io.confluent.kafka.serializers.prot" + - "obuf.test.Status\022O\n\014complex_type\030\006 \001(\01329" + - ".io.confluent.kafka.serializers.protobuf" + - ".test.ComplexType\022Z\n\010map_type\030\007 \003(\0132H.io" + - ".confluent.kafka.serializers.protobuf.te" + - "st.NestedMessage.MapTypeEntry\022W\n\005inner\030\010" + - " \001(\0132H.io.confluent.kafka.serializers.pr" + - "otobuf.test.NestedMessage.InnerMessage\032." + - "\n\014MapTypeEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001" + - "(\t:\0028\001\032/\n\014InnerMessage\022\016\n\002id\030\001 \001(\tR\002id\022\017" + - "\n\003ids\030\002 \003(\005B\002\020\001\"(\n\tInnerEnum\022\010\n\004ZERO\020\000\022\r" + - "\n\tALSO_ZERO\020\000\032\002\020\001J\004\010\016\020\017J\004\010\017\020\020J\004\010\t\020\014R\003foo" + - "R\003bar*\"\n\006Status\022\n\n\006ACTIVE\020\000\022\014\n\010INACTIVE\020" + - "\001BA\n,io.confluent.kafka.serializers.prot" + - "obuf.testB\017NestedTestProtoP\000b\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.TimestampProto.getDescriptor(), - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_UserId_descriptor, - new java.lang.String[] { "KafkaUserId", "OtherUserId", "AnotherId", "UserId", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_MessageId_descriptor, - new java.lang.String[] { "Id", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_descriptor = - getDescriptor().getMessageTypes().get(2); - internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_ComplexType_descriptor, - new java.lang.String[] { "OneId", "OtherId", "IsActive", "SomeVal", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor = - getDescriptor().getMessageTypes().get(3); - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor, - new java.lang.String[] { "UserId", "IsActive", "ExperimentsActive", "UpdatedAt", "Status", "ComplexType", "MapType", "Inner", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_MapTypeEntry_descriptor = - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor.getNestedTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_MapTypeEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_MapTypeEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_descriptor = - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_descriptor.getNestedTypes().get(1); - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_NestedMessage_InnerMessage_descriptor, - new java.lang.String[] { "Id", "Ids", }); - com.google.protobuf.TimestampProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/PublicTestProto.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/PublicTestProto.java deleted file mode 100644 index 1ceeb62072b..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/PublicTestProto.java +++ /dev/null @@ -1,39 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: PublicTestProto.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class PublicTestProto { - private PublicTestProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\025PublicTestProto.proto\022,io.confluent.ka" + - "fka.serializers.protobuf.test\032\017TestProto" + - ".protoP\000b\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.getDescriptor(), - }); - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Ranges.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Ranges.java deleted file mode 100644 index ca7e5e05f7d..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/Ranges.java +++ /dev/null @@ -1,902 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: Ranges.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class Ranges { - private Ranges() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface FooBarOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.FooBar) - com.google.protobuf.GeneratedMessageV3. - ExtendableMessageOrBuilder { - - /** - * optional int32 foo = 1; - * @return Whether the foo field is set. - */ - boolean hasFoo(); - /** - * optional int32 foo = 1; - * @return The foo. - */ - int getFoo(); - - /** - * optional string bar = 2; - * @return Whether the bar field is set. - */ - boolean hasBar(); - /** - * optional string bar = 2; - * @return The bar. - */ - java.lang.String getBar(); - /** - * optional string bar = 2; - * @return The bytes for bar. - */ - com.google.protobuf.ByteString - getBarBytes(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.FooBar} - */ - public static final class FooBar extends - com.google.protobuf.GeneratedMessageV3.ExtendableMessage< - FooBar> implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.FooBar) - FooBarOrBuilder { - private static final long serialVersionUID = 0L; - // Use FooBar.newBuilder() to construct. - private FooBar(com.google.protobuf.GeneratedMessageV3.ExtendableBuilder builder) { - super(builder); - } - private FooBar() { - bar_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new FooBar(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.class, io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.Builder.class); - } - - /** - * Protobuf enum {@code io.confluent.kafka.serializers.protobuf.test.FooBar.FooBarBazEnum} - */ - public enum FooBarBazEnum - implements com.google.protobuf.ProtocolMessageEnum { - /** - * NONE = 0; - */ - NONE(0), - /** - * FOO = 1; - */ - FOO(1), - /** - * BAR = 2; - */ - BAR(2), - /** - * BAZ = 3; - */ - BAZ(3), - ; - - /** - * NONE = 0; - */ - public static final int NONE_VALUE = 0; - /** - * FOO = 1; - */ - public static final int FOO_VALUE = 1; - /** - * BAR = 2; - */ - public static final int BAR_VALUE = 2; - /** - * BAZ = 3; - */ - public static final int BAZ_VALUE = 3; - - - public final int getNumber() { - return value; - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static FooBarBazEnum valueOf(int value) { - return forNumber(value); - } - - /** - * @param value The numeric wire value of the corresponding enum entry. - * @return The enum associated with the given numeric wire value. - */ - public static FooBarBazEnum forNumber(int value) { - switch (value) { - case 0: return NONE; - case 1: return FOO; - case 2: return BAR; - case 3: return BAZ; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - FooBarBazEnum> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public FooBarBazEnum findValueByNumber(int number) { - return FooBarBazEnum.forNumber(number); - } - }; - - public final com.google.protobuf.Descriptors.EnumValueDescriptor - getValueDescriptor() { - return getDescriptor().getValues().get(ordinal()); - } - public final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptorForType() { - return getDescriptor(); - } - public static final com.google.protobuf.Descriptors.EnumDescriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.getDescriptor().getEnumTypes().get(0); - } - - private static final FooBarBazEnum[] VALUES = values(); - - public static FooBarBazEnum valueOf( - com.google.protobuf.Descriptors.EnumValueDescriptor desc) { - if (desc.getType() != getDescriptor()) { - throw new java.lang.IllegalArgumentException( - "EnumValueDescriptor is not for this type."); - } - return VALUES[desc.getIndex()]; - } - - private final int value; - - private FooBarBazEnum(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:io.confluent.kafka.serializers.protobuf.test.FooBar.FooBarBazEnum) - } - - private int bitField0_; - public static final int FOO_FIELD_NUMBER = 1; - private int foo_; - /** - * optional int32 foo = 1; - * @return Whether the foo field is set. - */ - @java.lang.Override - public boolean hasFoo() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - * optional int32 foo = 1; - * @return The foo. - */ - @java.lang.Override - public int getFoo() { - return foo_; - } - - public static final int BAR_FIELD_NUMBER = 2; - private volatile java.lang.Object bar_; - /** - * optional string bar = 2; - * @return Whether the bar field is set. - */ - @java.lang.Override - public boolean hasBar() { - return ((bitField0_ & 0x00000002) != 0); - } - /** - * optional string bar = 2; - * @return The bar. - */ - @java.lang.Override - public java.lang.String getBar() { - java.lang.Object ref = bar_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - bar_ = s; - } - return s; - } - } - /** - * optional string bar = 2; - * @return The bytes for bar. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getBarBytes() { - java.lang.Object ref = bar_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - bar_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - if (!extensionsAreInitialized()) { - memoizedIsInitialized = 0; - return false; - } - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - com.google.protobuf.GeneratedMessageV3 - .ExtendableMessage.ExtensionWriter - extensionWriter = newExtensionWriter(); - if (((bitField0_ & 0x00000001) != 0)) { - output.writeInt32(1, foo_); - } - if (((bitField0_ & 0x00000002) != 0)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, bar_); - } - extensionWriter.writeUntil(201, output); - extensionWriter.writeUntil(1002, output); - extensionWriter.writeUntil(2001, output); - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, foo_); - } - if (((bitField0_ & 0x00000002) != 0)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, bar_); - } - size += extensionsSerializedSize(); - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar other = (io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar) obj; - - if (hasFoo() != other.hasFoo()) return false; - if (hasFoo()) { - if (getFoo() - != other.getFoo()) return false; - } - if (hasBar() != other.hasBar()) return false; - if (hasBar()) { - if (!getBar() - .equals(other.getBar())) return false; - } - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - if (!getExtensionFields().equals(other.getExtensionFields())) - return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasFoo()) { - hash = (37 * hash) + FOO_FIELD_NUMBER; - hash = (53 * hash) + getFoo(); - } - if (hasBar()) { - hash = (37 * hash) + BAR_FIELD_NUMBER; - hash = (53 * hash) + getBar().hashCode(); - } - hash = hashFields(hash, getExtensionFields()); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.FooBar} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.ExtendableBuilder< - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar, Builder> implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.FooBar) - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBarOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.class, io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - foo_ = 0; - bitField0_ = (bitField0_ & ~0x00000001); - bar_ = ""; - bitField0_ = (bitField0_ & ~0x00000002); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar build() { - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar buildPartial() { - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar result = new io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar(this); - int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000001) != 0)) { - result.foo_ = foo_; - to_bitField0_ |= 0x00000001; - } - if (((from_bitField0_ & 0x00000002) != 0)) { - to_bitField0_ |= 0x00000002; - } - result.bar_ = bar_; - result.bitField0_ = to_bitField0_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder setExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar, Type> extension, - Type value) { - return super.setExtension(extension, value); - } - @java.lang.Override - public Builder setExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar, java.util.List> extension, - int index, Type value) { - return super.setExtension(extension, index, value); - } - @java.lang.Override - public Builder addExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar, java.util.List> extension, - Type value) { - return super.addExtension(extension, value); - } - @java.lang.Override - public Builder clearExtension( - com.google.protobuf.GeneratedMessage.GeneratedExtension< - io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar, ?> extension) { - return super.clearExtension(extension); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar other) { - if (other == io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar.getDefaultInstance()) return this; - if (other.hasFoo()) { - setFoo(other.getFoo()); - } - if (other.hasBar()) { - bitField0_ |= 0x00000002; - bar_ = other.bar_; - onChanged(); - } - this.mergeExtensionFields(other); - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - if (!extensionsAreInitialized()) { - return false; - } - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - foo_ = input.readInt32(); - bitField0_ |= 0x00000001; - break; - } // case 8 - case 18: { - bar_ = input.readBytes(); - bitField0_ |= 0x00000002; - break; - } // case 18 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - private int bitField0_; - - private int foo_ ; - /** - * optional int32 foo = 1; - * @return Whether the foo field is set. - */ - @java.lang.Override - public boolean hasFoo() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - * optional int32 foo = 1; - * @return The foo. - */ - @java.lang.Override - public int getFoo() { - return foo_; - } - /** - * optional int32 foo = 1; - * @param value The foo to set. - * @return This builder for chaining. - */ - public Builder setFoo(int value) { - bitField0_ |= 0x00000001; - foo_ = value; - onChanged(); - return this; - } - /** - * optional int32 foo = 1; - * @return This builder for chaining. - */ - public Builder clearFoo() { - bitField0_ = (bitField0_ & ~0x00000001); - foo_ = 0; - onChanged(); - return this; - } - - private java.lang.Object bar_ = ""; - /** - * optional string bar = 2; - * @return Whether the bar field is set. - */ - public boolean hasBar() { - return ((bitField0_ & 0x00000002) != 0); - } - /** - * optional string bar = 2; - * @return The bar. - */ - public java.lang.String getBar() { - java.lang.Object ref = bar_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - bar_ = s; - } - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * optional string bar = 2; - * @return The bytes for bar. - */ - public com.google.protobuf.ByteString - getBarBytes() { - java.lang.Object ref = bar_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - bar_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * optional string bar = 2; - * @param value The bar to set. - * @return This builder for chaining. - */ - public Builder setBar( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - bar_ = value; - onChanged(); - return this; - } - /** - * optional string bar = 2; - * @return This builder for chaining. - */ - public Builder clearBar() { - bitField0_ = (bitField0_ & ~0x00000002); - bar_ = getDefaultInstance().getBar(); - onChanged(); - return this; - } - /** - * optional string bar = 2; - * @param value The bytes for bar to set. - * @return This builder for chaining. - */ - public Builder setBarBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - bar_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.FooBar) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.FooBar) - private static final io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar(); - } - - public static io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - @java.lang.Deprecated public static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public FooBar parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.Ranges.FooBar getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\014Ranges.proto\022,io.confluent.kafka.seria" + - "lizers.protobuf.test\032 google/protobuf/de" + - "scriptor.proto\"\240\001\n\006FooBar\022\013\n\003foo\030\001 \001(\005\022\013" + - "\n\003bar\030\002 \001(\t\"K\n\rFooBarBazEnum\022\010\n\004NONE\020\000\022\007" + - "\n\003FOO\020\001\022\007\n\003BAR\020\002\022\007\n\003BAZ\020\003\"\005\010d\020\310\001\"\006\010\350\007\020\351\007" + - "\"\006\010\320\017\020\320\017*\005\010d\020\311\001*\006\010\350\007\020\352\007*\006\010\320\017\020\321\017J\006\010\210\'\020\361.J" + - "\006\010\220N\020\222NJ\010\010\240\234\001\020\241\234\001B.\n,io.confluent.kafka." + - "serializers.protobuf.test" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.DescriptorProtos.getDescriptor(), - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_FooBar_descriptor, - new java.lang.String[] { "Foo", "Bar", }); - com.google.protobuf.DescriptorProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/SInt32ValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/SInt32ValueOuterClass.java deleted file mode 100644 index 14def1955fe..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/SInt32ValueOuterClass.java +++ /dev/null @@ -1,544 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: SInt32Value.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class SInt32ValueOuterClass { - private SInt32ValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface SInt32ValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:SInt32Value) - com.google.protobuf.MessageOrBuilder { - - /** - * sint32 value = 1; - * @return The value. - */ - int getValue(); - } - /** - *
-   * Wrapper message for `sint32`.
-   * 
- * - * Protobuf type {@code SInt32Value} - */ - public static final class SInt32Value extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:SInt32Value) - SInt32ValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use SInt32Value.newBuilder() to construct. - private SInt32Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private SInt32Value() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new SInt32Value(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private SInt32Value( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - value_ = input.readSInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.internal_static_SInt32Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.internal_static_SInt32Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.class, io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private int value_; - /** - * sint32 value = 1; - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != 0) { - output.writeSInt32(1, value_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeSInt32Size(1, value_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value other = (io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value) obj; - - if (getValue() - != other.getValue()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `sint32`.
-     * 
- * - * Protobuf type {@code SInt32Value} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:SInt32Value) - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32ValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.internal_static_SInt32Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.internal_static_SInt32Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.class, io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - value_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.internal_static_SInt32Value_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value build() { - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value buildPartial() { - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value result = new io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value(this); - result.value_ = value_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value other) { - if (other == io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value.getDefaultInstance()) return this; - if (other.getValue() != 0) { - setValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int value_ ; - /** - * sint32 value = 1; - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - /** - * sint32 value = 1; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(int value) { - - value_ = value; - onChanged(); - return this; - } - /** - * sint32 value = 1; - * @return This builder for chaining. - */ - public Builder clearValue() { - - value_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:SInt32Value) - } - - // @@protoc_insertion_point(class_scope:SInt32Value) - private static final io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value(); - } - - public static io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public SInt32Value parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new SInt32Value(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt32ValueOuterClass.SInt32Value getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_SInt32Value_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_SInt32Value_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\021SInt32Value.proto\"\034\n\013SInt32Value\022\r\n\005va" + - "lue\030\001 \001(\021B.\n,io.confluent.kafka.serializ" + - "ers.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_SInt32Value_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_SInt32Value_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_SInt32Value_descriptor, - new java.lang.String[] { "Value", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/SInt64ValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/SInt64ValueOuterClass.java deleted file mode 100644 index 78f92e2e1ce..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/SInt64ValueOuterClass.java +++ /dev/null @@ -1,545 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: SInt64Value.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class SInt64ValueOuterClass { - private SInt64ValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface SInt64ValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:SInt64Value) - com.google.protobuf.MessageOrBuilder { - - /** - * sint64 value = 1; - * @return The value. - */ - long getValue(); - } - /** - *
-   * Wrapper message for `sint64`.
-   * 
- * - * Protobuf type {@code SInt64Value} - */ - public static final class SInt64Value extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:SInt64Value) - SInt64ValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use SInt64Value.newBuilder() to construct. - private SInt64Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private SInt64Value() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new SInt64Value(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private SInt64Value( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - value_ = input.readSInt64(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.internal_static_SInt64Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.internal_static_SInt64Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.class, io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private long value_; - /** - * sint64 value = 1; - * @return The value. - */ - @java.lang.Override - public long getValue() { - return value_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != 0L) { - output.writeSInt64(1, value_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeSInt64Size(1, value_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value other = (io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value) obj; - - if (getValue() - != other.getValue()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getValue()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `sint64`.
-     * 
- * - * Protobuf type {@code SInt64Value} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:SInt64Value) - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64ValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.internal_static_SInt64Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.internal_static_SInt64Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.class, io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - value_ = 0L; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.internal_static_SInt64Value_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value build() { - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value buildPartial() { - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value result = new io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value(this); - result.value_ = value_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value other) { - if (other == io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value.getDefaultInstance()) return this; - if (other.getValue() != 0L) { - setValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private long value_ ; - /** - * sint64 value = 1; - * @return The value. - */ - @java.lang.Override - public long getValue() { - return value_; - } - /** - * sint64 value = 1; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(long value) { - - value_ = value; - onChanged(); - return this; - } - /** - * sint64 value = 1; - * @return This builder for chaining. - */ - public Builder clearValue() { - - value_ = 0L; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:SInt64Value) - } - - // @@protoc_insertion_point(class_scope:SInt64Value) - private static final io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value(); - } - - public static io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public SInt64Value parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new SInt64Value(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.SInt64ValueOuterClass.SInt64Value getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_SInt64Value_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_SInt64Value_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\021SInt64Value.proto\"\034\n\013SInt64Value\022\r\n\005va" + - "lue\030\001 \001(\022B.\n,io.confluent.kafka.serializ" + - "ers.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_SInt64Value_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_SInt64Value_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_SInt64Value_descriptor, - new java.lang.String[] { "Value", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TestMessageOptionalProtos.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TestMessageOptionalProtos.java deleted file mode 100644 index 2cfce29e32d..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TestMessageOptionalProtos.java +++ /dev/null @@ -1,805 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: TestOptionalProto.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class TestMessageOptionalProtos { - private TestMessageOptionalProtos() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface TestMessageOptionalOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.TestMessageOptional) - com.google.protobuf.MessageOrBuilder { - - /** - * string test_string = 1; - * @return The testString. - */ - java.lang.String getTestString(); - /** - * string test_string = 1; - * @return The bytes for testString. - */ - com.google.protobuf.ByteString - getTestStringBytes(); - - /** - * optional string test_optional_string = 2; - * @return Whether the testOptionalString field is set. - */ - boolean hasTestOptionalString(); - /** - * optional string test_optional_string = 2; - * @return The testOptionalString. - */ - java.lang.String getTestOptionalString(); - /** - * optional string test_optional_string = 2; - * @return The bytes for testOptionalString. - */ - com.google.protobuf.ByteString - getTestOptionalStringBytes(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.TestMessageOptional} - */ - public static final class TestMessageOptional extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.TestMessageOptional) - TestMessageOptionalOrBuilder { - private static final long serialVersionUID = 0L; - // Use TestMessageOptional.newBuilder() to construct. - private TestMessageOptional(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private TestMessageOptional() { - testString_ = ""; - testOptionalString_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new TestMessageOptional(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private TestMessageOptional( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - int mutable_bitField0_ = 0; - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - testString_ = s; - break; - } - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - bitField0_ |= 0x00000001; - testOptionalString_ = s; - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.class, io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.Builder.class); - } - - private int bitField0_; - public static final int TEST_STRING_FIELD_NUMBER = 1; - private volatile java.lang.Object testString_; - /** - * string test_string = 1; - * @return The testString. - */ - @java.lang.Override - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } - } - /** - * string test_string = 1; - * @return The bytes for testString. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int TEST_OPTIONAL_STRING_FIELD_NUMBER = 2; - private volatile java.lang.Object testOptionalString_; - /** - * optional string test_optional_string = 2; - * @return Whether the testOptionalString field is set. - */ - @java.lang.Override - public boolean hasTestOptionalString() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - * optional string test_optional_string = 2; - * @return The testOptionalString. - */ - @java.lang.Override - public java.lang.String getTestOptionalString() { - java.lang.Object ref = testOptionalString_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testOptionalString_ = s; - return s; - } - } - /** - * optional string test_optional_string = 2; - * @return The bytes for testOptionalString. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTestOptionalStringBytes() { - java.lang.Object ref = testOptionalString_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testOptionalString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, testString_); - } - if (((bitField0_ & 0x00000001) != 0)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, testOptionalString_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, testString_); - } - if (((bitField0_ & 0x00000001) != 0)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, testOptionalString_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional other = (io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional) obj; - - if (!getTestString() - .equals(other.getTestString())) return false; - if (hasTestOptionalString() != other.hasTestOptionalString()) return false; - if (hasTestOptionalString()) { - if (!getTestOptionalString() - .equals(other.getTestOptionalString())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TEST_STRING_FIELD_NUMBER; - hash = (53 * hash) + getTestString().hashCode(); - if (hasTestOptionalString()) { - hash = (37 * hash) + TEST_OPTIONAL_STRING_FIELD_NUMBER; - hash = (53 * hash) + getTestOptionalString().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.TestMessageOptional} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.TestMessageOptional) - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptionalOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.class, io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - testString_ = ""; - - testOptionalString_ = ""; - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional build() { - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional buildPartial() { - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional result = new io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional(this); - int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - result.testString_ = testString_; - if (((from_bitField0_ & 0x00000001) != 0)) { - to_bitField0_ |= 0x00000001; - } - result.testOptionalString_ = testOptionalString_; - result.bitField0_ = to_bitField0_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional other) { - if (other == io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional.getDefaultInstance()) return this; - if (!other.getTestString().isEmpty()) { - testString_ = other.testString_; - onChanged(); - } - if (other.hasTestOptionalString()) { - bitField0_ |= 0x00000001; - testOptionalString_ = other.testOptionalString_; - onChanged(); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - private java.lang.Object testString_ = ""; - /** - * string test_string = 1; - * @return The testString. - */ - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string test_string = 1; - * @return The bytes for testString. - */ - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string test_string = 1; - * @param value The testString to set. - * @return This builder for chaining. - */ - public Builder setTestString( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - testString_ = value; - onChanged(); - return this; - } - /** - * string test_string = 1; - * @return This builder for chaining. - */ - public Builder clearTestString() { - - testString_ = getDefaultInstance().getTestString(); - onChanged(); - return this; - } - /** - * string test_string = 1; - * @param value The bytes for testString to set. - * @return This builder for chaining. - */ - public Builder setTestStringBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - testString_ = value; - onChanged(); - return this; - } - - private java.lang.Object testOptionalString_ = ""; - /** - * optional string test_optional_string = 2; - * @return Whether the testOptionalString field is set. - */ - public boolean hasTestOptionalString() { - return ((bitField0_ & 0x00000001) != 0); - } - /** - * optional string test_optional_string = 2; - * @return The testOptionalString. - */ - public java.lang.String getTestOptionalString() { - java.lang.Object ref = testOptionalString_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testOptionalString_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * optional string test_optional_string = 2; - * @return The bytes for testOptionalString. - */ - public com.google.protobuf.ByteString - getTestOptionalStringBytes() { - java.lang.Object ref = testOptionalString_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testOptionalString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * optional string test_optional_string = 2; - * @param value The testOptionalString to set. - * @return This builder for chaining. - */ - public Builder setTestOptionalString( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000001; - testOptionalString_ = value; - onChanged(); - return this; - } - /** - * optional string test_optional_string = 2; - * @return This builder for chaining. - */ - public Builder clearTestOptionalString() { - bitField0_ = (bitField0_ & ~0x00000001); - testOptionalString_ = getDefaultInstance().getTestOptionalString(); - onChanged(); - return this; - } - /** - * optional string test_optional_string = 2; - * @param value The bytes for testOptionalString to set. - * @return This builder for chaining. - */ - public Builder setTestOptionalStringBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - bitField0_ |= 0x00000001; - testOptionalString_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.TestMessageOptional) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.TestMessageOptional) - private static final io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional(); - } - - public static io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TestMessageOptional parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new TestMessageOptional(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageOptionalProtos.TestMessageOptional getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\027TestOptionalProto.proto\022,io.confluent." + - "kafka.serializers.protobuf.test\"f\n\023TestM" + - "essageOptional\022\023\n\013test_string\030\001 \001(\t\022!\n\024t" + - "est_optional_string\030\002 \001(\tH\000\210\001\001B\027\n\025_test_" + - "optional_stringBI\n,io.confluent.kafka.se" + - "rializers.protobuf.testB\031TestMessageOpti" + - "onalProtosb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessageOptional_descriptor, - new java.lang.String[] { "TestString", "TestOptionalString", "TestOptionalString", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TestMessageProtos.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TestMessageProtos.java deleted file mode 100644 index 2432b6a2d5e..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TestMessageProtos.java +++ /dev/null @@ -1,3408 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: TestProto.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class TestMessageProtos { - private TestMessageProtos() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface TestMessageOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.TestMessage) - com.google.protobuf.MessageOrBuilder { - - /** - * string test_string = 1; - * @return The testString. - */ - java.lang.String getTestString(); - /** - * string test_string = 1; - * @return The bytes for testString. - */ - com.google.protobuf.ByteString - getTestStringBytes(); - - /** - * bool test_bool = 2; - * @return The testBool. - */ - boolean getTestBool(); - - /** - * bytes test_bytes = 3; - * @return The testBytes. - */ - com.google.protobuf.ByteString getTestBytes(); - - /** - * double test_double = 4; - * @return The testDouble. - */ - double getTestDouble(); - - /** - * float test_float = 5; - * @return The testFloat. - */ - float getTestFloat(); - - /** - * fixed32 test_fixed32 = 6; - * @return The testFixed32. - */ - int getTestFixed32(); - - /** - * fixed64 test_fixed64 = 7; - * @return The testFixed64. - */ - long getTestFixed64(); - - /** - * int32 test_int32 = 8; - * @return The testInt32. - */ - int getTestInt32(); - - /** - * int64 test_int64 = 9; - * @return The testInt64. - */ - long getTestInt64(); - - /** - * sfixed32 test_sfixed32 = 10; - * @return The testSfixed32. - */ - int getTestSfixed32(); - - /** - * sfixed64 test_sfixed64 = 11; - * @return The testSfixed64. - */ - long getTestSfixed64(); - - /** - * sint32 test_sint32 = 12; - * @return The testSint32. - */ - int getTestSint32(); - - /** - * sint64 test_sint64 = 13; - * @return The testSint64. - */ - long getTestSint64(); - - /** - * uint32 test_uint32 = 14; - * @return The testUint32. - */ - int getTestUint32(); - - /** - * uint64 test_uint64 = 15; - * @return The testUint64. - */ - long getTestUint64(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.TestMessage} - */ - public static final class TestMessage extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.TestMessage) - TestMessageOrBuilder { - private static final long serialVersionUID = 0L; - // Use TestMessage.newBuilder() to construct. - private TestMessage(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private TestMessage() { - testString_ = ""; - testBytes_ = com.google.protobuf.ByteString.EMPTY; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new TestMessage(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private TestMessage( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - testString_ = s; - break; - } - case 16: { - - testBool_ = input.readBool(); - break; - } - case 26: { - - testBytes_ = input.readBytes(); - break; - } - case 33: { - - testDouble_ = input.readDouble(); - break; - } - case 45: { - - testFloat_ = input.readFloat(); - break; - } - case 53: { - - testFixed32_ = input.readFixed32(); - break; - } - case 57: { - - testFixed64_ = input.readFixed64(); - break; - } - case 64: { - - testInt32_ = input.readInt32(); - break; - } - case 72: { - - testInt64_ = input.readInt64(); - break; - } - case 85: { - - testSfixed32_ = input.readSFixed32(); - break; - } - case 89: { - - testSfixed64_ = input.readSFixed64(); - break; - } - case 96: { - - testSint32_ = input.readSInt32(); - break; - } - case 104: { - - testSint64_ = input.readSInt64(); - break; - } - case 112: { - - testUint32_ = input.readUInt32(); - break; - } - case 120: { - - testUint64_ = input.readUInt64(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.class, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder.class); - } - - public static final int TEST_STRING_FIELD_NUMBER = 1; - private volatile java.lang.Object testString_; - /** - * string test_string = 1; - * @return The testString. - */ - @java.lang.Override - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } - } - /** - * string test_string = 1; - * @return The bytes for testString. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int TEST_BOOL_FIELD_NUMBER = 2; - private boolean testBool_; - /** - * bool test_bool = 2; - * @return The testBool. - */ - @java.lang.Override - public boolean getTestBool() { - return testBool_; - } - - public static final int TEST_BYTES_FIELD_NUMBER = 3; - private com.google.protobuf.ByteString testBytes_; - /** - * bytes test_bytes = 3; - * @return The testBytes. - */ - @java.lang.Override - public com.google.protobuf.ByteString getTestBytes() { - return testBytes_; - } - - public static final int TEST_DOUBLE_FIELD_NUMBER = 4; - private double testDouble_; - /** - * double test_double = 4; - * @return The testDouble. - */ - @java.lang.Override - public double getTestDouble() { - return testDouble_; - } - - public static final int TEST_FLOAT_FIELD_NUMBER = 5; - private float testFloat_; - /** - * float test_float = 5; - * @return The testFloat. - */ - @java.lang.Override - public float getTestFloat() { - return testFloat_; - } - - public static final int TEST_FIXED32_FIELD_NUMBER = 6; - private int testFixed32_; - /** - * fixed32 test_fixed32 = 6; - * @return The testFixed32. - */ - @java.lang.Override - public int getTestFixed32() { - return testFixed32_; - } - - public static final int TEST_FIXED64_FIELD_NUMBER = 7; - private long testFixed64_; - /** - * fixed64 test_fixed64 = 7; - * @return The testFixed64. - */ - @java.lang.Override - public long getTestFixed64() { - return testFixed64_; - } - - public static final int TEST_INT32_FIELD_NUMBER = 8; - private int testInt32_; - /** - * int32 test_int32 = 8; - * @return The testInt32. - */ - @java.lang.Override - public int getTestInt32() { - return testInt32_; - } - - public static final int TEST_INT64_FIELD_NUMBER = 9; - private long testInt64_; - /** - * int64 test_int64 = 9; - * @return The testInt64. - */ - @java.lang.Override - public long getTestInt64() { - return testInt64_; - } - - public static final int TEST_SFIXED32_FIELD_NUMBER = 10; - private int testSfixed32_; - /** - * sfixed32 test_sfixed32 = 10; - * @return The testSfixed32. - */ - @java.lang.Override - public int getTestSfixed32() { - return testSfixed32_; - } - - public static final int TEST_SFIXED64_FIELD_NUMBER = 11; - private long testSfixed64_; - /** - * sfixed64 test_sfixed64 = 11; - * @return The testSfixed64. - */ - @java.lang.Override - public long getTestSfixed64() { - return testSfixed64_; - } - - public static final int TEST_SINT32_FIELD_NUMBER = 12; - private int testSint32_; - /** - * sint32 test_sint32 = 12; - * @return The testSint32. - */ - @java.lang.Override - public int getTestSint32() { - return testSint32_; - } - - public static final int TEST_SINT64_FIELD_NUMBER = 13; - private long testSint64_; - /** - * sint64 test_sint64 = 13; - * @return The testSint64. - */ - @java.lang.Override - public long getTestSint64() { - return testSint64_; - } - - public static final int TEST_UINT32_FIELD_NUMBER = 14; - private int testUint32_; - /** - * uint32 test_uint32 = 14; - * @return The testUint32. - */ - @java.lang.Override - public int getTestUint32() { - return testUint32_; - } - - public static final int TEST_UINT64_FIELD_NUMBER = 15; - private long testUint64_; - /** - * uint64 test_uint64 = 15; - * @return The testUint64. - */ - @java.lang.Override - public long getTestUint64() { - return testUint64_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, testString_); - } - if (testBool_ != false) { - output.writeBool(2, testBool_); - } - if (!testBytes_.isEmpty()) { - output.writeBytes(3, testBytes_); - } - if (java.lang.Double.doubleToRawLongBits(testDouble_) != 0) { - output.writeDouble(4, testDouble_); - } - if (java.lang.Float.floatToRawIntBits(testFloat_) != 0) { - output.writeFloat(5, testFloat_); - } - if (testFixed32_ != 0) { - output.writeFixed32(6, testFixed32_); - } - if (testFixed64_ != 0L) { - output.writeFixed64(7, testFixed64_); - } - if (testInt32_ != 0) { - output.writeInt32(8, testInt32_); - } - if (testInt64_ != 0L) { - output.writeInt64(9, testInt64_); - } - if (testSfixed32_ != 0) { - output.writeSFixed32(10, testSfixed32_); - } - if (testSfixed64_ != 0L) { - output.writeSFixed64(11, testSfixed64_); - } - if (testSint32_ != 0) { - output.writeSInt32(12, testSint32_); - } - if (testSint64_ != 0L) { - output.writeSInt64(13, testSint64_); - } - if (testUint32_ != 0) { - output.writeUInt32(14, testUint32_); - } - if (testUint64_ != 0L) { - output.writeUInt64(15, testUint64_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, testString_); - } - if (testBool_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, testBool_); - } - if (!testBytes_.isEmpty()) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(3, testBytes_); - } - if (java.lang.Double.doubleToRawLongBits(testDouble_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeDoubleSize(4, testDouble_); - } - if (java.lang.Float.floatToRawIntBits(testFloat_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFloatSize(5, testFloat_); - } - if (testFixed32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFixed32Size(6, testFixed32_); - } - if (testFixed64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeFixed64Size(7, testFixed64_); - } - if (testInt32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(8, testInt32_); - } - if (testInt64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeInt64Size(9, testInt64_); - } - if (testSfixed32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeSFixed32Size(10, testSfixed32_); - } - if (testSfixed64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeSFixed64Size(11, testSfixed64_); - } - if (testSint32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeSInt32Size(12, testSint32_); - } - if (testSint64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeSInt64Size(13, testSint64_); - } - if (testUint32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(14, testUint32_); - } - if (testUint64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeUInt64Size(15, testUint64_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage other = (io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage) obj; - - if (!getTestString() - .equals(other.getTestString())) return false; - if (getTestBool() - != other.getTestBool()) return false; - if (!getTestBytes() - .equals(other.getTestBytes())) return false; - if (java.lang.Double.doubleToLongBits(getTestDouble()) - != java.lang.Double.doubleToLongBits( - other.getTestDouble())) return false; - if (java.lang.Float.floatToIntBits(getTestFloat()) - != java.lang.Float.floatToIntBits( - other.getTestFloat())) return false; - if (getTestFixed32() - != other.getTestFixed32()) return false; - if (getTestFixed64() - != other.getTestFixed64()) return false; - if (getTestInt32() - != other.getTestInt32()) return false; - if (getTestInt64() - != other.getTestInt64()) return false; - if (getTestSfixed32() - != other.getTestSfixed32()) return false; - if (getTestSfixed64() - != other.getTestSfixed64()) return false; - if (getTestSint32() - != other.getTestSint32()) return false; - if (getTestSint64() - != other.getTestSint64()) return false; - if (getTestUint32() - != other.getTestUint32()) return false; - if (getTestUint64() - != other.getTestUint64()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TEST_STRING_FIELD_NUMBER; - hash = (53 * hash) + getTestString().hashCode(); - hash = (37 * hash) + TEST_BOOL_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getTestBool()); - hash = (37 * hash) + TEST_BYTES_FIELD_NUMBER; - hash = (53 * hash) + getTestBytes().hashCode(); - hash = (37 * hash) + TEST_DOUBLE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - java.lang.Double.doubleToLongBits(getTestDouble())); - hash = (37 * hash) + TEST_FLOAT_FIELD_NUMBER; - hash = (53 * hash) + java.lang.Float.floatToIntBits( - getTestFloat()); - hash = (37 * hash) + TEST_FIXED32_FIELD_NUMBER; - hash = (53 * hash) + getTestFixed32(); - hash = (37 * hash) + TEST_FIXED64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestFixed64()); - hash = (37 * hash) + TEST_INT32_FIELD_NUMBER; - hash = (53 * hash) + getTestInt32(); - hash = (37 * hash) + TEST_INT64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestInt64()); - hash = (37 * hash) + TEST_SFIXED32_FIELD_NUMBER; - hash = (53 * hash) + getTestSfixed32(); - hash = (37 * hash) + TEST_SFIXED64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestSfixed64()); - hash = (37 * hash) + TEST_SINT32_FIELD_NUMBER; - hash = (53 * hash) + getTestSint32(); - hash = (37 * hash) + TEST_SINT64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestSint64()); - hash = (37 * hash) + TEST_UINT32_FIELD_NUMBER; - hash = (53 * hash) + getTestUint32(); - hash = (37 * hash) + TEST_UINT64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestUint64()); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.TestMessage} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.TestMessage) - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.class, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - testString_ = ""; - - testBool_ = false; - - testBytes_ = com.google.protobuf.ByteString.EMPTY; - - testDouble_ = 0D; - - testFloat_ = 0F; - - testFixed32_ = 0; - - testFixed64_ = 0L; - - testInt32_ = 0; - - testInt64_ = 0L; - - testSfixed32_ = 0; - - testSfixed64_ = 0L; - - testSint32_ = 0; - - testSint64_ = 0L; - - testUint32_ = 0; - - testUint64_ = 0L; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage build() { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage buildPartial() { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage result = new io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage(this); - result.testString_ = testString_; - result.testBool_ = testBool_; - result.testBytes_ = testBytes_; - result.testDouble_ = testDouble_; - result.testFloat_ = testFloat_; - result.testFixed32_ = testFixed32_; - result.testFixed64_ = testFixed64_; - result.testInt32_ = testInt32_; - result.testInt64_ = testInt64_; - result.testSfixed32_ = testSfixed32_; - result.testSfixed64_ = testSfixed64_; - result.testSint32_ = testSint32_; - result.testSint64_ = testSint64_; - result.testUint32_ = testUint32_; - result.testUint64_ = testUint64_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage other) { - if (other == io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance()) return this; - if (!other.getTestString().isEmpty()) { - testString_ = other.testString_; - onChanged(); - } - if (other.getTestBool() != false) { - setTestBool(other.getTestBool()); - } - if (other.getTestBytes() != com.google.protobuf.ByteString.EMPTY) { - setTestBytes(other.getTestBytes()); - } - if (other.getTestDouble() != 0D) { - setTestDouble(other.getTestDouble()); - } - if (other.getTestFloat() != 0F) { - setTestFloat(other.getTestFloat()); - } - if (other.getTestFixed32() != 0) { - setTestFixed32(other.getTestFixed32()); - } - if (other.getTestFixed64() != 0L) { - setTestFixed64(other.getTestFixed64()); - } - if (other.getTestInt32() != 0) { - setTestInt32(other.getTestInt32()); - } - if (other.getTestInt64() != 0L) { - setTestInt64(other.getTestInt64()); - } - if (other.getTestSfixed32() != 0) { - setTestSfixed32(other.getTestSfixed32()); - } - if (other.getTestSfixed64() != 0L) { - setTestSfixed64(other.getTestSfixed64()); - } - if (other.getTestSint32() != 0) { - setTestSint32(other.getTestSint32()); - } - if (other.getTestSint64() != 0L) { - setTestSint64(other.getTestSint64()); - } - if (other.getTestUint32() != 0) { - setTestUint32(other.getTestUint32()); - } - if (other.getTestUint64() != 0L) { - setTestUint64(other.getTestUint64()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object testString_ = ""; - /** - * string test_string = 1; - * @return The testString. - */ - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string test_string = 1; - * @return The bytes for testString. - */ - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string test_string = 1; - * @param value The testString to set. - * @return This builder for chaining. - */ - public Builder setTestString( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - testString_ = value; - onChanged(); - return this; - } - /** - * string test_string = 1; - * @return This builder for chaining. - */ - public Builder clearTestString() { - - testString_ = getDefaultInstance().getTestString(); - onChanged(); - return this; - } - /** - * string test_string = 1; - * @param value The bytes for testString to set. - * @return This builder for chaining. - */ - public Builder setTestStringBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - testString_ = value; - onChanged(); - return this; - } - - private boolean testBool_ ; - /** - * bool test_bool = 2; - * @return The testBool. - */ - @java.lang.Override - public boolean getTestBool() { - return testBool_; - } - /** - * bool test_bool = 2; - * @param value The testBool to set. - * @return This builder for chaining. - */ - public Builder setTestBool(boolean value) { - - testBool_ = value; - onChanged(); - return this; - } - /** - * bool test_bool = 2; - * @return This builder for chaining. - */ - public Builder clearTestBool() { - - testBool_ = false; - onChanged(); - return this; - } - - private com.google.protobuf.ByteString testBytes_ = com.google.protobuf.ByteString.EMPTY; - /** - * bytes test_bytes = 3; - * @return The testBytes. - */ - @java.lang.Override - public com.google.protobuf.ByteString getTestBytes() { - return testBytes_; - } - /** - * bytes test_bytes = 3; - * @param value The testBytes to set. - * @return This builder for chaining. - */ - public Builder setTestBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - - testBytes_ = value; - onChanged(); - return this; - } - /** - * bytes test_bytes = 3; - * @return This builder for chaining. - */ - public Builder clearTestBytes() { - - testBytes_ = getDefaultInstance().getTestBytes(); - onChanged(); - return this; - } - - private double testDouble_ ; - /** - * double test_double = 4; - * @return The testDouble. - */ - @java.lang.Override - public double getTestDouble() { - return testDouble_; - } - /** - * double test_double = 4; - * @param value The testDouble to set. - * @return This builder for chaining. - */ - public Builder setTestDouble(double value) { - - testDouble_ = value; - onChanged(); - return this; - } - /** - * double test_double = 4; - * @return This builder for chaining. - */ - public Builder clearTestDouble() { - - testDouble_ = 0D; - onChanged(); - return this; - } - - private float testFloat_ ; - /** - * float test_float = 5; - * @return The testFloat. - */ - @java.lang.Override - public float getTestFloat() { - return testFloat_; - } - /** - * float test_float = 5; - * @param value The testFloat to set. - * @return This builder for chaining. - */ - public Builder setTestFloat(float value) { - - testFloat_ = value; - onChanged(); - return this; - } - /** - * float test_float = 5; - * @return This builder for chaining. - */ - public Builder clearTestFloat() { - - testFloat_ = 0F; - onChanged(); - return this; - } - - private int testFixed32_ ; - /** - * fixed32 test_fixed32 = 6; - * @return The testFixed32. - */ - @java.lang.Override - public int getTestFixed32() { - return testFixed32_; - } - /** - * fixed32 test_fixed32 = 6; - * @param value The testFixed32 to set. - * @return This builder for chaining. - */ - public Builder setTestFixed32(int value) { - - testFixed32_ = value; - onChanged(); - return this; - } - /** - * fixed32 test_fixed32 = 6; - * @return This builder for chaining. - */ - public Builder clearTestFixed32() { - - testFixed32_ = 0; - onChanged(); - return this; - } - - private long testFixed64_ ; - /** - * fixed64 test_fixed64 = 7; - * @return The testFixed64. - */ - @java.lang.Override - public long getTestFixed64() { - return testFixed64_; - } - /** - * fixed64 test_fixed64 = 7; - * @param value The testFixed64 to set. - * @return This builder for chaining. - */ - public Builder setTestFixed64(long value) { - - testFixed64_ = value; - onChanged(); - return this; - } - /** - * fixed64 test_fixed64 = 7; - * @return This builder for chaining. - */ - public Builder clearTestFixed64() { - - testFixed64_ = 0L; - onChanged(); - return this; - } - - private int testInt32_ ; - /** - * int32 test_int32 = 8; - * @return The testInt32. - */ - @java.lang.Override - public int getTestInt32() { - return testInt32_; - } - /** - * int32 test_int32 = 8; - * @param value The testInt32 to set. - * @return This builder for chaining. - */ - public Builder setTestInt32(int value) { - - testInt32_ = value; - onChanged(); - return this; - } - /** - * int32 test_int32 = 8; - * @return This builder for chaining. - */ - public Builder clearTestInt32() { - - testInt32_ = 0; - onChanged(); - return this; - } - - private long testInt64_ ; - /** - * int64 test_int64 = 9; - * @return The testInt64. - */ - @java.lang.Override - public long getTestInt64() { - return testInt64_; - } - /** - * int64 test_int64 = 9; - * @param value The testInt64 to set. - * @return This builder for chaining. - */ - public Builder setTestInt64(long value) { - - testInt64_ = value; - onChanged(); - return this; - } - /** - * int64 test_int64 = 9; - * @return This builder for chaining. - */ - public Builder clearTestInt64() { - - testInt64_ = 0L; - onChanged(); - return this; - } - - private int testSfixed32_ ; - /** - * sfixed32 test_sfixed32 = 10; - * @return The testSfixed32. - */ - @java.lang.Override - public int getTestSfixed32() { - return testSfixed32_; - } - /** - * sfixed32 test_sfixed32 = 10; - * @param value The testSfixed32 to set. - * @return This builder for chaining. - */ - public Builder setTestSfixed32(int value) { - - testSfixed32_ = value; - onChanged(); - return this; - } - /** - * sfixed32 test_sfixed32 = 10; - * @return This builder for chaining. - */ - public Builder clearTestSfixed32() { - - testSfixed32_ = 0; - onChanged(); - return this; - } - - private long testSfixed64_ ; - /** - * sfixed64 test_sfixed64 = 11; - * @return The testSfixed64. - */ - @java.lang.Override - public long getTestSfixed64() { - return testSfixed64_; - } - /** - * sfixed64 test_sfixed64 = 11; - * @param value The testSfixed64 to set. - * @return This builder for chaining. - */ - public Builder setTestSfixed64(long value) { - - testSfixed64_ = value; - onChanged(); - return this; - } - /** - * sfixed64 test_sfixed64 = 11; - * @return This builder for chaining. - */ - public Builder clearTestSfixed64() { - - testSfixed64_ = 0L; - onChanged(); - return this; - } - - private int testSint32_ ; - /** - * sint32 test_sint32 = 12; - * @return The testSint32. - */ - @java.lang.Override - public int getTestSint32() { - return testSint32_; - } - /** - * sint32 test_sint32 = 12; - * @param value The testSint32 to set. - * @return This builder for chaining. - */ - public Builder setTestSint32(int value) { - - testSint32_ = value; - onChanged(); - return this; - } - /** - * sint32 test_sint32 = 12; - * @return This builder for chaining. - */ - public Builder clearTestSint32() { - - testSint32_ = 0; - onChanged(); - return this; - } - - private long testSint64_ ; - /** - * sint64 test_sint64 = 13; - * @return The testSint64. - */ - @java.lang.Override - public long getTestSint64() { - return testSint64_; - } - /** - * sint64 test_sint64 = 13; - * @param value The testSint64 to set. - * @return This builder for chaining. - */ - public Builder setTestSint64(long value) { - - testSint64_ = value; - onChanged(); - return this; - } - /** - * sint64 test_sint64 = 13; - * @return This builder for chaining. - */ - public Builder clearTestSint64() { - - testSint64_ = 0L; - onChanged(); - return this; - } - - private int testUint32_ ; - /** - * uint32 test_uint32 = 14; - * @return The testUint32. - */ - @java.lang.Override - public int getTestUint32() { - return testUint32_; - } - /** - * uint32 test_uint32 = 14; - * @param value The testUint32 to set. - * @return This builder for chaining. - */ - public Builder setTestUint32(int value) { - - testUint32_ = value; - onChanged(); - return this; - } - /** - * uint32 test_uint32 = 14; - * @return This builder for chaining. - */ - public Builder clearTestUint32() { - - testUint32_ = 0; - onChanged(); - return this; - } - - private long testUint64_ ; - /** - * uint64 test_uint64 = 15; - * @return The testUint64. - */ - @java.lang.Override - public long getTestUint64() { - return testUint64_; - } - /** - * uint64 test_uint64 = 15; - * @param value The testUint64 to set. - * @return This builder for chaining. - */ - public Builder setTestUint64(long value) { - - testUint64_ = value; - onChanged(); - return this; - } - /** - * uint64 test_uint64 = 15; - * @return This builder for chaining. - */ - public Builder clearTestUint64() { - - testUint64_ = 0L; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.TestMessage) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.TestMessage) - private static final io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage(); - } - - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TestMessage parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new TestMessage(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface TestMessage2OrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.serializers.protobuf.test.TestMessage2) - com.google.protobuf.MessageOrBuilder { - - /** - * string test_string = 1; - * @return The testString. - */ - java.lang.String getTestString(); - /** - * string test_string = 1; - * @return The bytes for testString. - */ - com.google.protobuf.ByteString - getTestStringBytes(); - - /** - * bool test_bool = 2; - * @return The testBool. - */ - boolean getTestBool(); - - /** - * bytes test_bytes = 3; - * @return The testBytes. - */ - com.google.protobuf.ByteString getTestBytes(); - - /** - * double test_double = 4; - * @return The testDouble. - */ - double getTestDouble(); - - /** - * float test_float = 5; - * @return The testFloat. - */ - float getTestFloat(); - - /** - * fixed32 test_fixed32 = 6; - * @return The testFixed32. - */ - int getTestFixed32(); - - /** - * fixed64 test_fixed64 = 7; - * @return The testFixed64. - */ - long getTestFixed64(); - - /** - * int32 test_int32 = 8; - * @return The testInt32. - */ - int getTestInt32(); - - /** - * int64 test_int64 = 9; - * @return The testInt64. - */ - long getTestInt64(); - - /** - * sfixed32 test_sfixed32 = 10; - * @return The testSfixed32. - */ - int getTestSfixed32(); - - /** - * sfixed64 test_sfixed64 = 11; - * @return The testSfixed64. - */ - long getTestSfixed64(); - - /** - * sint32 test_sint32 = 12; - * @return The testSint32. - */ - int getTestSint32(); - - /** - * sint64 test_sint64 = 13; - * @return The testSint64. - */ - long getTestSint64(); - - /** - * uint32 test_uint32 = 14; - * @return The testUint32. - */ - int getTestUint32(); - - /** - * uint64 test_uint64 = 15; - * @return The testUint64. - */ - long getTestUint64(); - - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - * @return Whether the testMessage field is set. - */ - boolean hasTestMessage(); - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - * @return The testMessage. - */ - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getTestMessage(); - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder getTestMessageOrBuilder(); - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.TestMessage2} - */ - public static final class TestMessage2 extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.serializers.protobuf.test.TestMessage2) - TestMessage2OrBuilder { - private static final long serialVersionUID = 0L; - // Use TestMessage2.newBuilder() to construct. - private TestMessage2(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private TestMessage2() { - testString_ = ""; - testBytes_ = com.google.protobuf.ByteString.EMPTY; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new TestMessage2(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private TestMessage2( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - java.lang.String s = input.readStringRequireUtf8(); - - testString_ = s; - break; - } - case 16: { - - testBool_ = input.readBool(); - break; - } - case 26: { - - testBytes_ = input.readBytes(); - break; - } - case 33: { - - testDouble_ = input.readDouble(); - break; - } - case 45: { - - testFloat_ = input.readFloat(); - break; - } - case 53: { - - testFixed32_ = input.readFixed32(); - break; - } - case 57: { - - testFixed64_ = input.readFixed64(); - break; - } - case 64: { - - testInt32_ = input.readInt32(); - break; - } - case 72: { - - testInt64_ = input.readInt64(); - break; - } - case 85: { - - testSfixed32_ = input.readSFixed32(); - break; - } - case 89: { - - testSfixed64_ = input.readSFixed64(); - break; - } - case 96: { - - testSint32_ = input.readSInt32(); - break; - } - case 104: { - - testSint64_ = input.readSInt64(); - break; - } - case 112: { - - testUint32_ = input.readUInt32(); - break; - } - case 120: { - - testUint64_ = input.readUInt64(); - break; - } - case 130: { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder subBuilder = null; - if (testMessage_ != null) { - subBuilder = testMessage_.toBuilder(); - } - testMessage_ = input.readMessage(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(testMessage_); - testMessage_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.class, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.Builder.class); - } - - public static final int TEST_STRING_FIELD_NUMBER = 1; - private volatile java.lang.Object testString_; - /** - * string test_string = 1; - * @return The testString. - */ - @java.lang.Override - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } - } - /** - * string test_string = 1; - * @return The bytes for testString. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int TEST_BOOL_FIELD_NUMBER = 2; - private boolean testBool_; - /** - * bool test_bool = 2; - * @return The testBool. - */ - @java.lang.Override - public boolean getTestBool() { - return testBool_; - } - - public static final int TEST_BYTES_FIELD_NUMBER = 3; - private com.google.protobuf.ByteString testBytes_; - /** - * bytes test_bytes = 3; - * @return The testBytes. - */ - @java.lang.Override - public com.google.protobuf.ByteString getTestBytes() { - return testBytes_; - } - - public static final int TEST_DOUBLE_FIELD_NUMBER = 4; - private double testDouble_; - /** - * double test_double = 4; - * @return The testDouble. - */ - @java.lang.Override - public double getTestDouble() { - return testDouble_; - } - - public static final int TEST_FLOAT_FIELD_NUMBER = 5; - private float testFloat_; - /** - * float test_float = 5; - * @return The testFloat. - */ - @java.lang.Override - public float getTestFloat() { - return testFloat_; - } - - public static final int TEST_FIXED32_FIELD_NUMBER = 6; - private int testFixed32_; - /** - * fixed32 test_fixed32 = 6; - * @return The testFixed32. - */ - @java.lang.Override - public int getTestFixed32() { - return testFixed32_; - } - - public static final int TEST_FIXED64_FIELD_NUMBER = 7; - private long testFixed64_; - /** - * fixed64 test_fixed64 = 7; - * @return The testFixed64. - */ - @java.lang.Override - public long getTestFixed64() { - return testFixed64_; - } - - public static final int TEST_INT32_FIELD_NUMBER = 8; - private int testInt32_; - /** - * int32 test_int32 = 8; - * @return The testInt32. - */ - @java.lang.Override - public int getTestInt32() { - return testInt32_; - } - - public static final int TEST_INT64_FIELD_NUMBER = 9; - private long testInt64_; - /** - * int64 test_int64 = 9; - * @return The testInt64. - */ - @java.lang.Override - public long getTestInt64() { - return testInt64_; - } - - public static final int TEST_SFIXED32_FIELD_NUMBER = 10; - private int testSfixed32_; - /** - * sfixed32 test_sfixed32 = 10; - * @return The testSfixed32. - */ - @java.lang.Override - public int getTestSfixed32() { - return testSfixed32_; - } - - public static final int TEST_SFIXED64_FIELD_NUMBER = 11; - private long testSfixed64_; - /** - * sfixed64 test_sfixed64 = 11; - * @return The testSfixed64. - */ - @java.lang.Override - public long getTestSfixed64() { - return testSfixed64_; - } - - public static final int TEST_SINT32_FIELD_NUMBER = 12; - private int testSint32_; - /** - * sint32 test_sint32 = 12; - * @return The testSint32. - */ - @java.lang.Override - public int getTestSint32() { - return testSint32_; - } - - public static final int TEST_SINT64_FIELD_NUMBER = 13; - private long testSint64_; - /** - * sint64 test_sint64 = 13; - * @return The testSint64. - */ - @java.lang.Override - public long getTestSint64() { - return testSint64_; - } - - public static final int TEST_UINT32_FIELD_NUMBER = 14; - private int testUint32_; - /** - * uint32 test_uint32 = 14; - * @return The testUint32. - */ - @java.lang.Override - public int getTestUint32() { - return testUint32_; - } - - public static final int TEST_UINT64_FIELD_NUMBER = 15; - private long testUint64_; - /** - * uint64 test_uint64 = 15; - * @return The testUint64. - */ - @java.lang.Override - public long getTestUint64() { - return testUint64_; - } - - public static final int TEST_MESSAGE_FIELD_NUMBER = 16; - private io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage testMessage_; - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - * @return Whether the testMessage field is set. - */ - @java.lang.Override - public boolean hasTestMessage() { - return testMessage_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - * @return The testMessage. - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getTestMessage() { - return testMessage_ == null ? io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance() : testMessage_; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder getTestMessageOrBuilder() { - return getTestMessage(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, testString_); - } - if (testBool_ != false) { - output.writeBool(2, testBool_); - } - if (!testBytes_.isEmpty()) { - output.writeBytes(3, testBytes_); - } - if (java.lang.Double.doubleToRawLongBits(testDouble_) != 0) { - output.writeDouble(4, testDouble_); - } - if (java.lang.Float.floatToRawIntBits(testFloat_) != 0) { - output.writeFloat(5, testFloat_); - } - if (testFixed32_ != 0) { - output.writeFixed32(6, testFixed32_); - } - if (testFixed64_ != 0L) { - output.writeFixed64(7, testFixed64_); - } - if (testInt32_ != 0) { - output.writeInt32(8, testInt32_); - } - if (testInt64_ != 0L) { - output.writeInt64(9, testInt64_); - } - if (testSfixed32_ != 0) { - output.writeSFixed32(10, testSfixed32_); - } - if (testSfixed64_ != 0L) { - output.writeSFixed64(11, testSfixed64_); - } - if (testSint32_ != 0) { - output.writeSInt32(12, testSint32_); - } - if (testSint64_ != 0L) { - output.writeSInt64(13, testSint64_); - } - if (testUint32_ != 0) { - output.writeUInt32(14, testUint32_); - } - if (testUint64_ != 0L) { - output.writeUInt64(15, testUint64_); - } - if (testMessage_ != null) { - output.writeMessage(16, getTestMessage()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(testString_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, testString_); - } - if (testBool_ != false) { - size += com.google.protobuf.CodedOutputStream - .computeBoolSize(2, testBool_); - } - if (!testBytes_.isEmpty()) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(3, testBytes_); - } - if (java.lang.Double.doubleToRawLongBits(testDouble_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeDoubleSize(4, testDouble_); - } - if (java.lang.Float.floatToRawIntBits(testFloat_) != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFloatSize(5, testFloat_); - } - if (testFixed32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeFixed32Size(6, testFixed32_); - } - if (testFixed64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeFixed64Size(7, testFixed64_); - } - if (testInt32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(8, testInt32_); - } - if (testInt64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeInt64Size(9, testInt64_); - } - if (testSfixed32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeSFixed32Size(10, testSfixed32_); - } - if (testSfixed64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeSFixed64Size(11, testSfixed64_); - } - if (testSint32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeSInt32Size(12, testSint32_); - } - if (testSint64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeSInt64Size(13, testSint64_); - } - if (testUint32_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(14, testUint32_); - } - if (testUint64_ != 0L) { - size += com.google.protobuf.CodedOutputStream - .computeUInt64Size(15, testUint64_); - } - if (testMessage_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(16, getTestMessage()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 other = (io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2) obj; - - if (!getTestString() - .equals(other.getTestString())) return false; - if (getTestBool() - != other.getTestBool()) return false; - if (!getTestBytes() - .equals(other.getTestBytes())) return false; - if (java.lang.Double.doubleToLongBits(getTestDouble()) - != java.lang.Double.doubleToLongBits( - other.getTestDouble())) return false; - if (java.lang.Float.floatToIntBits(getTestFloat()) - != java.lang.Float.floatToIntBits( - other.getTestFloat())) return false; - if (getTestFixed32() - != other.getTestFixed32()) return false; - if (getTestFixed64() - != other.getTestFixed64()) return false; - if (getTestInt32() - != other.getTestInt32()) return false; - if (getTestInt64() - != other.getTestInt64()) return false; - if (getTestSfixed32() - != other.getTestSfixed32()) return false; - if (getTestSfixed64() - != other.getTestSfixed64()) return false; - if (getTestSint32() - != other.getTestSint32()) return false; - if (getTestSint64() - != other.getTestSint64()) return false; - if (getTestUint32() - != other.getTestUint32()) return false; - if (getTestUint64() - != other.getTestUint64()) return false; - if (hasTestMessage() != other.hasTestMessage()) return false; - if (hasTestMessage()) { - if (!getTestMessage() - .equals(other.getTestMessage())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + TEST_STRING_FIELD_NUMBER; - hash = (53 * hash) + getTestString().hashCode(); - hash = (37 * hash) + TEST_BOOL_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( - getTestBool()); - hash = (37 * hash) + TEST_BYTES_FIELD_NUMBER; - hash = (53 * hash) + getTestBytes().hashCode(); - hash = (37 * hash) + TEST_DOUBLE_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - java.lang.Double.doubleToLongBits(getTestDouble())); - hash = (37 * hash) + TEST_FLOAT_FIELD_NUMBER; - hash = (53 * hash) + java.lang.Float.floatToIntBits( - getTestFloat()); - hash = (37 * hash) + TEST_FIXED32_FIELD_NUMBER; - hash = (53 * hash) + getTestFixed32(); - hash = (37 * hash) + TEST_FIXED64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestFixed64()); - hash = (37 * hash) + TEST_INT32_FIELD_NUMBER; - hash = (53 * hash) + getTestInt32(); - hash = (37 * hash) + TEST_INT64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestInt64()); - hash = (37 * hash) + TEST_SFIXED32_FIELD_NUMBER; - hash = (53 * hash) + getTestSfixed32(); - hash = (37 * hash) + TEST_SFIXED64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestSfixed64()); - hash = (37 * hash) + TEST_SINT32_FIELD_NUMBER; - hash = (53 * hash) + getTestSint32(); - hash = (37 * hash) + TEST_SINT64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestSint64()); - hash = (37 * hash) + TEST_UINT32_FIELD_NUMBER; - hash = (53 * hash) + getTestUint32(); - hash = (37 * hash) + TEST_UINT64_FIELD_NUMBER; - hash = (53 * hash) + com.google.protobuf.Internal.hashLong( - getTestUint64()); - if (hasTestMessage()) { - hash = (37 * hash) + TEST_MESSAGE_FIELD_NUMBER; - hash = (53 * hash) + getTestMessage().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.serializers.protobuf.test.TestMessage2} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.serializers.protobuf.test.TestMessage2) - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2OrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.class, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - testString_ = ""; - - testBool_ = false; - - testBytes_ = com.google.protobuf.ByteString.EMPTY; - - testDouble_ = 0D; - - testFloat_ = 0F; - - testFixed32_ = 0; - - testFixed64_ = 0L; - - testInt32_ = 0; - - testInt64_ = 0L; - - testSfixed32_ = 0; - - testSfixed64_ = 0L; - - testSint32_ = 0; - - testSint64_ = 0L; - - testUint32_ = 0; - - testUint64_ = 0L; - - if (testMessageBuilder_ == null) { - testMessage_ = null; - } else { - testMessage_ = null; - testMessageBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 build() { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 buildPartial() { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 result = new io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2(this); - result.testString_ = testString_; - result.testBool_ = testBool_; - result.testBytes_ = testBytes_; - result.testDouble_ = testDouble_; - result.testFloat_ = testFloat_; - result.testFixed32_ = testFixed32_; - result.testFixed64_ = testFixed64_; - result.testInt32_ = testInt32_; - result.testInt64_ = testInt64_; - result.testSfixed32_ = testSfixed32_; - result.testSfixed64_ = testSfixed64_; - result.testSint32_ = testSint32_; - result.testSint64_ = testSint64_; - result.testUint32_ = testUint32_; - result.testUint64_ = testUint64_; - if (testMessageBuilder_ == null) { - result.testMessage_ = testMessage_; - } else { - result.testMessage_ = testMessageBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 other) { - if (other == io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2.getDefaultInstance()) return this; - if (!other.getTestString().isEmpty()) { - testString_ = other.testString_; - onChanged(); - } - if (other.getTestBool() != false) { - setTestBool(other.getTestBool()); - } - if (other.getTestBytes() != com.google.protobuf.ByteString.EMPTY) { - setTestBytes(other.getTestBytes()); - } - if (other.getTestDouble() != 0D) { - setTestDouble(other.getTestDouble()); - } - if (other.getTestFloat() != 0F) { - setTestFloat(other.getTestFloat()); - } - if (other.getTestFixed32() != 0) { - setTestFixed32(other.getTestFixed32()); - } - if (other.getTestFixed64() != 0L) { - setTestFixed64(other.getTestFixed64()); - } - if (other.getTestInt32() != 0) { - setTestInt32(other.getTestInt32()); - } - if (other.getTestInt64() != 0L) { - setTestInt64(other.getTestInt64()); - } - if (other.getTestSfixed32() != 0) { - setTestSfixed32(other.getTestSfixed32()); - } - if (other.getTestSfixed64() != 0L) { - setTestSfixed64(other.getTestSfixed64()); - } - if (other.getTestSint32() != 0) { - setTestSint32(other.getTestSint32()); - } - if (other.getTestSint64() != 0L) { - setTestSint64(other.getTestSint64()); - } - if (other.getTestUint32() != 0) { - setTestUint32(other.getTestUint32()); - } - if (other.getTestUint64() != 0L) { - setTestUint64(other.getTestUint64()); - } - if (other.hasTestMessage()) { - mergeTestMessage(other.getTestMessage()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private java.lang.Object testString_ = ""; - /** - * string test_string = 1; - * @return The testString. - */ - public java.lang.String getTestString() { - java.lang.Object ref = testString_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - testString_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string test_string = 1; - * @return The bytes for testString. - */ - public com.google.protobuf.ByteString - getTestStringBytes() { - java.lang.Object ref = testString_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - testString_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string test_string = 1; - * @param value The testString to set. - * @return This builder for chaining. - */ - public Builder setTestString( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - testString_ = value; - onChanged(); - return this; - } - /** - * string test_string = 1; - * @return This builder for chaining. - */ - public Builder clearTestString() { - - testString_ = getDefaultInstance().getTestString(); - onChanged(); - return this; - } - /** - * string test_string = 1; - * @param value The bytes for testString to set. - * @return This builder for chaining. - */ - public Builder setTestStringBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - testString_ = value; - onChanged(); - return this; - } - - private boolean testBool_ ; - /** - * bool test_bool = 2; - * @return The testBool. - */ - @java.lang.Override - public boolean getTestBool() { - return testBool_; - } - /** - * bool test_bool = 2; - * @param value The testBool to set. - * @return This builder for chaining. - */ - public Builder setTestBool(boolean value) { - - testBool_ = value; - onChanged(); - return this; - } - /** - * bool test_bool = 2; - * @return This builder for chaining. - */ - public Builder clearTestBool() { - - testBool_ = false; - onChanged(); - return this; - } - - private com.google.protobuf.ByteString testBytes_ = com.google.protobuf.ByteString.EMPTY; - /** - * bytes test_bytes = 3; - * @return The testBytes. - */ - @java.lang.Override - public com.google.protobuf.ByteString getTestBytes() { - return testBytes_; - } - /** - * bytes test_bytes = 3; - * @param value The testBytes to set. - * @return This builder for chaining. - */ - public Builder setTestBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - - testBytes_ = value; - onChanged(); - return this; - } - /** - * bytes test_bytes = 3; - * @return This builder for chaining. - */ - public Builder clearTestBytes() { - - testBytes_ = getDefaultInstance().getTestBytes(); - onChanged(); - return this; - } - - private double testDouble_ ; - /** - * double test_double = 4; - * @return The testDouble. - */ - @java.lang.Override - public double getTestDouble() { - return testDouble_; - } - /** - * double test_double = 4; - * @param value The testDouble to set. - * @return This builder for chaining. - */ - public Builder setTestDouble(double value) { - - testDouble_ = value; - onChanged(); - return this; - } - /** - * double test_double = 4; - * @return This builder for chaining. - */ - public Builder clearTestDouble() { - - testDouble_ = 0D; - onChanged(); - return this; - } - - private float testFloat_ ; - /** - * float test_float = 5; - * @return The testFloat. - */ - @java.lang.Override - public float getTestFloat() { - return testFloat_; - } - /** - * float test_float = 5; - * @param value The testFloat to set. - * @return This builder for chaining. - */ - public Builder setTestFloat(float value) { - - testFloat_ = value; - onChanged(); - return this; - } - /** - * float test_float = 5; - * @return This builder for chaining. - */ - public Builder clearTestFloat() { - - testFloat_ = 0F; - onChanged(); - return this; - } - - private int testFixed32_ ; - /** - * fixed32 test_fixed32 = 6; - * @return The testFixed32. - */ - @java.lang.Override - public int getTestFixed32() { - return testFixed32_; - } - /** - * fixed32 test_fixed32 = 6; - * @param value The testFixed32 to set. - * @return This builder for chaining. - */ - public Builder setTestFixed32(int value) { - - testFixed32_ = value; - onChanged(); - return this; - } - /** - * fixed32 test_fixed32 = 6; - * @return This builder for chaining. - */ - public Builder clearTestFixed32() { - - testFixed32_ = 0; - onChanged(); - return this; - } - - private long testFixed64_ ; - /** - * fixed64 test_fixed64 = 7; - * @return The testFixed64. - */ - @java.lang.Override - public long getTestFixed64() { - return testFixed64_; - } - /** - * fixed64 test_fixed64 = 7; - * @param value The testFixed64 to set. - * @return This builder for chaining. - */ - public Builder setTestFixed64(long value) { - - testFixed64_ = value; - onChanged(); - return this; - } - /** - * fixed64 test_fixed64 = 7; - * @return This builder for chaining. - */ - public Builder clearTestFixed64() { - - testFixed64_ = 0L; - onChanged(); - return this; - } - - private int testInt32_ ; - /** - * int32 test_int32 = 8; - * @return The testInt32. - */ - @java.lang.Override - public int getTestInt32() { - return testInt32_; - } - /** - * int32 test_int32 = 8; - * @param value The testInt32 to set. - * @return This builder for chaining. - */ - public Builder setTestInt32(int value) { - - testInt32_ = value; - onChanged(); - return this; - } - /** - * int32 test_int32 = 8; - * @return This builder for chaining. - */ - public Builder clearTestInt32() { - - testInt32_ = 0; - onChanged(); - return this; - } - - private long testInt64_ ; - /** - * int64 test_int64 = 9; - * @return The testInt64. - */ - @java.lang.Override - public long getTestInt64() { - return testInt64_; - } - /** - * int64 test_int64 = 9; - * @param value The testInt64 to set. - * @return This builder for chaining. - */ - public Builder setTestInt64(long value) { - - testInt64_ = value; - onChanged(); - return this; - } - /** - * int64 test_int64 = 9; - * @return This builder for chaining. - */ - public Builder clearTestInt64() { - - testInt64_ = 0L; - onChanged(); - return this; - } - - private int testSfixed32_ ; - /** - * sfixed32 test_sfixed32 = 10; - * @return The testSfixed32. - */ - @java.lang.Override - public int getTestSfixed32() { - return testSfixed32_; - } - /** - * sfixed32 test_sfixed32 = 10; - * @param value The testSfixed32 to set. - * @return This builder for chaining. - */ - public Builder setTestSfixed32(int value) { - - testSfixed32_ = value; - onChanged(); - return this; - } - /** - * sfixed32 test_sfixed32 = 10; - * @return This builder for chaining. - */ - public Builder clearTestSfixed32() { - - testSfixed32_ = 0; - onChanged(); - return this; - } - - private long testSfixed64_ ; - /** - * sfixed64 test_sfixed64 = 11; - * @return The testSfixed64. - */ - @java.lang.Override - public long getTestSfixed64() { - return testSfixed64_; - } - /** - * sfixed64 test_sfixed64 = 11; - * @param value The testSfixed64 to set. - * @return This builder for chaining. - */ - public Builder setTestSfixed64(long value) { - - testSfixed64_ = value; - onChanged(); - return this; - } - /** - * sfixed64 test_sfixed64 = 11; - * @return This builder for chaining. - */ - public Builder clearTestSfixed64() { - - testSfixed64_ = 0L; - onChanged(); - return this; - } - - private int testSint32_ ; - /** - * sint32 test_sint32 = 12; - * @return The testSint32. - */ - @java.lang.Override - public int getTestSint32() { - return testSint32_; - } - /** - * sint32 test_sint32 = 12; - * @param value The testSint32 to set. - * @return This builder for chaining. - */ - public Builder setTestSint32(int value) { - - testSint32_ = value; - onChanged(); - return this; - } - /** - * sint32 test_sint32 = 12; - * @return This builder for chaining. - */ - public Builder clearTestSint32() { - - testSint32_ = 0; - onChanged(); - return this; - } - - private long testSint64_ ; - /** - * sint64 test_sint64 = 13; - * @return The testSint64. - */ - @java.lang.Override - public long getTestSint64() { - return testSint64_; - } - /** - * sint64 test_sint64 = 13; - * @param value The testSint64 to set. - * @return This builder for chaining. - */ - public Builder setTestSint64(long value) { - - testSint64_ = value; - onChanged(); - return this; - } - /** - * sint64 test_sint64 = 13; - * @return This builder for chaining. - */ - public Builder clearTestSint64() { - - testSint64_ = 0L; - onChanged(); - return this; - } - - private int testUint32_ ; - /** - * uint32 test_uint32 = 14; - * @return The testUint32. - */ - @java.lang.Override - public int getTestUint32() { - return testUint32_; - } - /** - * uint32 test_uint32 = 14; - * @param value The testUint32 to set. - * @return This builder for chaining. - */ - public Builder setTestUint32(int value) { - - testUint32_ = value; - onChanged(); - return this; - } - /** - * uint32 test_uint32 = 14; - * @return This builder for chaining. - */ - public Builder clearTestUint32() { - - testUint32_ = 0; - onChanged(); - return this; - } - - private long testUint64_ ; - /** - * uint64 test_uint64 = 15; - * @return The testUint64. - */ - @java.lang.Override - public long getTestUint64() { - return testUint64_; - } - /** - * uint64 test_uint64 = 15; - * @param value The testUint64 to set. - * @return This builder for chaining. - */ - public Builder setTestUint64(long value) { - - testUint64_ = value; - onChanged(); - return this; - } - /** - * uint64 test_uint64 = 15; - * @return This builder for chaining. - */ - public Builder clearTestUint64() { - - testUint64_ = 0L; - onChanged(); - return this; - } - - private io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage testMessage_; - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder> testMessageBuilder_; - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - * @return Whether the testMessage field is set. - */ - public boolean hasTestMessage() { - return testMessageBuilder_ != null || testMessage_ != null; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - * @return The testMessage. - */ - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage getTestMessage() { - if (testMessageBuilder_ == null) { - return testMessage_ == null ? io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance() : testMessage_; - } else { - return testMessageBuilder_.getMessage(); - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - public Builder setTestMessage(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage value) { - if (testMessageBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - testMessage_ = value; - onChanged(); - } else { - testMessageBuilder_.setMessage(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - public Builder setTestMessage( - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder builderForValue) { - if (testMessageBuilder_ == null) { - testMessage_ = builderForValue.build(); - onChanged(); - } else { - testMessageBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - public Builder mergeTestMessage(io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage value) { - if (testMessageBuilder_ == null) { - if (testMessage_ != null) { - testMessage_ = - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.newBuilder(testMessage_).mergeFrom(value).buildPartial(); - } else { - testMessage_ = value; - } - onChanged(); - } else { - testMessageBuilder_.mergeFrom(value); - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - public Builder clearTestMessage() { - if (testMessageBuilder_ == null) { - testMessage_ = null; - onChanged(); - } else { - testMessage_ = null; - testMessageBuilder_ = null; - } - - return this; - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder getTestMessageBuilder() { - - onChanged(); - return getTestMessageFieldBuilder().getBuilder(); - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder getTestMessageOrBuilder() { - if (testMessageBuilder_ != null) { - return testMessageBuilder_.getMessageOrBuilder(); - } else { - return testMessage_ == null ? - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.getDefaultInstance() : testMessage_; - } - } - /** - * .io.confluent.kafka.serializers.protobuf.test.TestMessage test_message = 16; - */ - private com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder> - getTestMessageFieldBuilder() { - if (testMessageBuilder_ == null) { - testMessageBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage.Builder, io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessageOrBuilder>( - getTestMessage(), - getParentForChildren(), - isClean()); - testMessage_ = null; - } - return testMessageBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.serializers.protobuf.test.TestMessage2) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.serializers.protobuf.test.TestMessage2) - private static final io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2(); - } - - public static io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TestMessage2 parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new TestMessage2(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TestMessageProtos.TestMessage2 getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\017TestProto.proto\022,io.confluent.kafka.se" + - "rializers.protobuf.test\032 google/protobuf" + - "/descriptor.proto\"\310\002\n\013TestMessage\022\023\n\013tes" + - "t_string\030\001 \001(\t\022\021\n\ttest_bool\030\002 \001(\010\022\022\n\ntes" + - "t_bytes\030\003 \001(\014\022\023\n\013test_double\030\004 \001(\001\022\022\n\nte" + - "st_float\030\005 \001(\002\022\024\n\014test_fixed32\030\006 \001(\007\022\024\n\014" + - "test_fixed64\030\007 \001(\006\022\022\n\ntest_int32\030\010 \001(\005\022\022" + - "\n\ntest_int64\030\t \001(\003\022\025\n\rtest_sfixed32\030\n \001(" + - "\017\022\025\n\rtest_sfixed64\030\013 \001(\020\022\023\n\013test_sint32\030" + - "\014 \001(\021\022\023\n\013test_sint64\030\r \001(\022\022\023\n\013test_uint3" + - "2\030\016 \001(\r\022\023\n\013test_uint64\030\017 \001(\004\"\232\003\n\014TestMes" + - "sage2\022\023\n\013test_string\030\001 \001(\t\022\021\n\ttest_bool\030" + - "\002 \001(\010\022\022\n\ntest_bytes\030\003 \001(\014\022\023\n\013test_double" + - "\030\004 \001(\001\022\022\n\ntest_float\030\005 \001(\002\022\024\n\014test_fixed" + - "32\030\006 \001(\007\022\024\n\014test_fixed64\030\007 \001(\006\022\022\n\ntest_i" + - "nt32\030\010 \001(\005\022\022\n\ntest_int64\030\t \001(\003\022\025\n\rtest_s" + - "fixed32\030\n \001(\017\022\025\n\rtest_sfixed64\030\013 \001(\020\022\023\n\013" + - "test_sint32\030\014 \001(\021\022\023\n\013test_sint64\030\r \001(\022\022\023" + - "\n\013test_uint32\030\016 \001(\r\022\023\n\013test_uint64\030\017 \001(\004" + - "\022O\n\014test_message\030\020 \001(\01329.io.confluent.ka" + - "fka.serializers.protobuf.test.TestMessag" + - "eBA\n,io.confluent.kafka.serializers.prot" + - "obuf.testB\021TestMessageProtosb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.DescriptorProtos.getDescriptor(), - }); - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage_descriptor, - new java.lang.String[] { "TestString", "TestBool", "TestBytes", "TestDouble", "TestFloat", "TestFixed32", "TestFixed64", "TestInt32", "TestInt64", "TestSfixed32", "TestSfixed64", "TestSint32", "TestSint64", "TestUint32", "TestUint64", }); - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_serializers_protobuf_test_TestMessage2_descriptor, - new java.lang.String[] { "TestString", "TestBool", "TestBytes", "TestDouble", "TestFloat", "TestFixed32", "TestFixed64", "TestInt32", "TestInt64", "TestSfixed32", "TestSfixed64", "TestSint32", "TestSint64", "TestUint32", "TestUint64", "TestMessage", }); - com.google.protobuf.DescriptorProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TimeOfDayValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TimeOfDayValueOuterClass.java deleted file mode 100644 index bfe0b979140..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TimeOfDayValueOuterClass.java +++ /dev/null @@ -1,741 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: TimeOfDayValue.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class TimeOfDayValueOuterClass { - private TimeOfDayValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface TimeOfDayValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:TimeOfDayValue) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.TimeOfDay value = 1; - * @return Whether the value field is set. - */ - boolean hasValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.TimeOfDay value = 1; - * @return The value. - */ - com.google.type.TimeOfDay getValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.TimeOfDay value = 1; - */ - com.google.type.TimeOfDayOrBuilder getValueOrBuilder(); - } - /** - *
-   * Wrapper message for `TimeOfDay`.
-   * 
- * - * Protobuf type {@code TimeOfDayValue} - */ - public static final class TimeOfDayValue extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:TimeOfDayValue) - TimeOfDayValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use TimeOfDayValue.newBuilder() to construct. - private TimeOfDayValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private TimeOfDayValue() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new TimeOfDayValue(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private TimeOfDayValue( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.google.type.TimeOfDay.Builder subBuilder = null; - if (value_ != null) { - subBuilder = value_.toBuilder(); - } - value_ = input.readMessage(com.google.type.TimeOfDay.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value_); - value_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.internal_static_TimeOfDayValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.internal_static_TimeOfDayValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.class, io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private com.google.type.TimeOfDay value_; - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.TimeOfDay value = 1; - * @return Whether the value field is set. - */ - @java.lang.Override - public boolean hasValue() { - return value_ != null; - } - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.TimeOfDay value = 1; - * @return The value. - */ - @java.lang.Override - public com.google.type.TimeOfDay getValue() { - return value_ == null ? com.google.type.TimeOfDay.getDefaultInstance() : value_; - } - /** - *
-     * The bytes value.
-     * 
- * - * .google.type.TimeOfDay value = 1; - */ - @java.lang.Override - public com.google.type.TimeOfDayOrBuilder getValueOrBuilder() { - return getValue(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != null) { - output.writeMessage(1, getValue()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getValue()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue other = (io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue) obj; - - if (hasValue() != other.hasValue()) return false; - if (hasValue()) { - if (!getValue() - .equals(other.getValue())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasValue()) { - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `TimeOfDay`.
-     * 
- * - * Protobuf type {@code TimeOfDayValue} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:TimeOfDayValue) - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.internal_static_TimeOfDayValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.internal_static_TimeOfDayValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.class, io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (valueBuilder_ == null) { - value_ = null; - } else { - value_ = null; - valueBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.internal_static_TimeOfDayValue_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue build() { - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue buildPartial() { - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue result = new io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue(this); - if (valueBuilder_ == null) { - result.value_ = value_; - } else { - result.value_ = valueBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue other) { - if (other == io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue.getDefaultInstance()) return this; - if (other.hasValue()) { - mergeValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private com.google.type.TimeOfDay value_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.type.TimeOfDay, com.google.type.TimeOfDay.Builder, com.google.type.TimeOfDayOrBuilder> valueBuilder_; - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - * @return Whether the value field is set. - */ - public boolean hasValue() { - return valueBuilder_ != null || value_ != null; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - * @return The value. - */ - public com.google.type.TimeOfDay getValue() { - if (valueBuilder_ == null) { - return value_ == null ? com.google.type.TimeOfDay.getDefaultInstance() : value_; - } else { - return valueBuilder_.getMessage(); - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - public Builder setValue(com.google.type.TimeOfDay value) { - if (valueBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value_ = value; - onChanged(); - } else { - valueBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - public Builder setValue( - com.google.type.TimeOfDay.Builder builderForValue) { - if (valueBuilder_ == null) { - value_ = builderForValue.build(); - onChanged(); - } else { - valueBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - public Builder mergeValue(com.google.type.TimeOfDay value) { - if (valueBuilder_ == null) { - if (value_ != null) { - value_ = - com.google.type.TimeOfDay.newBuilder(value_).mergeFrom(value).buildPartial(); - } else { - value_ = value; - } - onChanged(); - } else { - valueBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - public Builder clearValue() { - if (valueBuilder_ == null) { - value_ = null; - onChanged(); - } else { - value_ = null; - valueBuilder_ = null; - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - public com.google.type.TimeOfDay.Builder getValueBuilder() { - - onChanged(); - return getValueFieldBuilder().getBuilder(); - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - public com.google.type.TimeOfDayOrBuilder getValueOrBuilder() { - if (valueBuilder_ != null) { - return valueBuilder_.getMessageOrBuilder(); - } else { - return value_ == null ? - com.google.type.TimeOfDay.getDefaultInstance() : value_; - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.type.TimeOfDay value = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.type.TimeOfDay, com.google.type.TimeOfDay.Builder, com.google.type.TimeOfDayOrBuilder> - getValueFieldBuilder() { - if (valueBuilder_ == null) { - valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.type.TimeOfDay, com.google.type.TimeOfDay.Builder, com.google.type.TimeOfDayOrBuilder>( - getValue(), - getParentForChildren(), - isClean()); - value_ = null; - } - return valueBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:TimeOfDayValue) - } - - // @@protoc_insertion_point(class_scope:TimeOfDayValue) - private static final io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue(); - } - - public static io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TimeOfDayValue parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new TimeOfDayValue(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimeOfDayValueOuterClass.TimeOfDayValue getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_TimeOfDayValue_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_TimeOfDayValue_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\024TimeOfDayValue.proto\032\033google/type/time" + - "ofday.proto\"7\n\016TimeOfDayValue\022%\n\005value\030\001" + - " \001(\0132\026.google.type.TimeOfDayB.\n,io.confl" + - "uent.kafka.serializers.protobuf.testb\006pr" + - "oto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.type.TimeOfDayProto.getDescriptor(), - }); - internal_static_TimeOfDayValue_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_TimeOfDayValue_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_TimeOfDayValue_descriptor, - new java.lang.String[] { "Value", }); - com.google.type.TimeOfDayProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TimestampValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TimestampValueOuterClass.java deleted file mode 100644 index bb99437e5e3..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/TimestampValueOuterClass.java +++ /dev/null @@ -1,741 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: TimestampValue.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class TimestampValueOuterClass { - private TimestampValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface TimestampValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:TimestampValue) - com.google.protobuf.MessageOrBuilder { - - /** - *
-     * The bytes value.
-     * 
- * - * .google.protobuf.Timestamp value = 1; - * @return Whether the value field is set. - */ - boolean hasValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .google.protobuf.Timestamp value = 1; - * @return The value. - */ - com.google.protobuf.Timestamp getValue(); - /** - *
-     * The bytes value.
-     * 
- * - * .google.protobuf.Timestamp value = 1; - */ - com.google.protobuf.TimestampOrBuilder getValueOrBuilder(); - } - /** - *
-   * Wrapper message for `Timestamp`.
-   * 
- * - * Protobuf type {@code TimestampValue} - */ - public static final class TimestampValue extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:TimestampValue) - TimestampValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use TimestampValue.newBuilder() to construct. - private TimestampValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private TimestampValue() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new TimestampValue(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private TimestampValue( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - com.google.protobuf.Timestamp.Builder subBuilder = null; - if (value_ != null) { - subBuilder = value_.toBuilder(); - } - value_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(value_); - value_ = subBuilder.buildPartial(); - } - - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.internal_static_TimestampValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.internal_static_TimestampValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.class, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private com.google.protobuf.Timestamp value_; - /** - *
-     * The bytes value.
-     * 
- * - * .google.protobuf.Timestamp value = 1; - * @return Whether the value field is set. - */ - @java.lang.Override - public boolean hasValue() { - return value_ != null; - } - /** - *
-     * The bytes value.
-     * 
- * - * .google.protobuf.Timestamp value = 1; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.Timestamp getValue() { - return value_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : value_; - } - /** - *
-     * The bytes value.
-     * 
- * - * .google.protobuf.Timestamp value = 1; - */ - @java.lang.Override - public com.google.protobuf.TimestampOrBuilder getValueOrBuilder() { - return getValue(); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != null) { - output.writeMessage(1, getValue()); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != null) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, getValue()); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue other = (io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue) obj; - - if (hasValue() != other.hasValue()) return false; - if (hasValue()) { - if (!getValue() - .equals(other.getValue())) return false; - } - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - if (hasValue()) { - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `Timestamp`.
-     * 
- * - * Protobuf type {@code TimestampValue} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:TimestampValue) - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.internal_static_TimestampValue_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.internal_static_TimestampValue_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.class, io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - if (valueBuilder_ == null) { - value_ = null; - } else { - value_ = null; - valueBuilder_ = null; - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.internal_static_TimestampValue_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue build() { - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue buildPartial() { - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue result = new io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue(this); - if (valueBuilder_ == null) { - result.value_ = value_; - } else { - result.value_ = valueBuilder_.build(); - } - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue other) { - if (other == io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue.getDefaultInstance()) return this; - if (other.hasValue()) { - mergeValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private com.google.protobuf.Timestamp value_; - private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> valueBuilder_; - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - * @return Whether the value field is set. - */ - public boolean hasValue() { - return valueBuilder_ != null || value_ != null; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - * @return The value. - */ - public com.google.protobuf.Timestamp getValue() { - if (valueBuilder_ == null) { - return value_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : value_; - } else { - return valueBuilder_.getMessage(); - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - public Builder setValue(com.google.protobuf.Timestamp value) { - if (valueBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - value_ = value; - onChanged(); - } else { - valueBuilder_.setMessage(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - public Builder setValue( - com.google.protobuf.Timestamp.Builder builderForValue) { - if (valueBuilder_ == null) { - value_ = builderForValue.build(); - onChanged(); - } else { - valueBuilder_.setMessage(builderForValue.build()); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - public Builder mergeValue(com.google.protobuf.Timestamp value) { - if (valueBuilder_ == null) { - if (value_ != null) { - value_ = - com.google.protobuf.Timestamp.newBuilder(value_).mergeFrom(value).buildPartial(); - } else { - value_ = value; - } - onChanged(); - } else { - valueBuilder_.mergeFrom(value); - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - public Builder clearValue() { - if (valueBuilder_ == null) { - value_ = null; - onChanged(); - } else { - value_ = null; - valueBuilder_ = null; - } - - return this; - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - public com.google.protobuf.Timestamp.Builder getValueBuilder() { - - onChanged(); - return getValueFieldBuilder().getBuilder(); - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - public com.google.protobuf.TimestampOrBuilder getValueOrBuilder() { - if (valueBuilder_ != null) { - return valueBuilder_.getMessageOrBuilder(); - } else { - return value_ == null ? - com.google.protobuf.Timestamp.getDefaultInstance() : value_; - } - } - /** - *
-       * The bytes value.
-       * 
- * - * .google.protobuf.Timestamp value = 1; - */ - private com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> - getValueFieldBuilder() { - if (valueBuilder_ == null) { - valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< - com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( - getValue(), - getParentForChildren(), - isClean()); - value_ = null; - } - return valueBuilder_; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:TimestampValue) - } - - // @@protoc_insertion_point(class_scope:TimestampValue) - private static final io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue(); - } - - public static io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public TimestampValue parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new TimestampValue(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.TimestampValueOuterClass.TimestampValue getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_TimestampValue_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_TimestampValue_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\024TimestampValue.proto\032\037google/protobuf/" + - "timestamp.proto\";\n\016TimestampValue\022)\n\005val" + - "ue\030\001 \001(\0132\032.google.protobuf.TimestampB.\n," + - "io.confluent.kafka.serializers.protobuf." + - "testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.TimestampProto.getDescriptor(), - }); - internal_static_TimestampValue_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_TimestampValue_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_TimestampValue_descriptor, - new java.lang.String[] { "Value", }); - com.google.protobuf.TimestampProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/UInt32ValueOuterClass.java b/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/UInt32ValueOuterClass.java deleted file mode 100644 index d6119a0e36f..00000000000 --- a/protobuf-serializer/src/test/java/io/confluent/kafka/serializers/protobuf/test/UInt32ValueOuterClass.java +++ /dev/null @@ -1,544 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: UInt32Value.proto - -package io.confluent.kafka.serializers.protobuf.test; - -public final class UInt32ValueOuterClass { - private UInt32ValueOuterClass() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface UInt32ValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:UInt32Value) - com.google.protobuf.MessageOrBuilder { - - /** - * uint32 value = 1; - * @return The value. - */ - int getValue(); - } - /** - *
-   * Wrapper message for `uint32`.
-   * 
- * - * Protobuf type {@code UInt32Value} - */ - public static final class UInt32Value extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:UInt32Value) - UInt32ValueOrBuilder { - private static final long serialVersionUID = 0L; - // Use UInt32Value.newBuilder() to construct. - private UInt32Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private UInt32Value() { - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new UInt32Value(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private UInt32Value( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 8: { - - value_ = input.readUInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.internal_static_UInt32Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.internal_static_UInt32Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.class, io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private int value_; - /** - * uint32 value = 1; - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (value_ != 0) { - output.writeUInt32(1, value_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (value_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(1, value_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value)) { - return super.equals(obj); - } - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value other = (io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value) obj; - - if (getValue() - != other.getValue()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - *
-     * Wrapper message for `uint32`.
-     * 
- * - * Protobuf type {@code UInt32Value} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:UInt32Value) - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32ValueOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.internal_static_UInt32Value_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.internal_static_UInt32Value_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.class, io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.Builder.class); - } - - // Construct using io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - value_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.internal_static_UInt32Value_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value getDefaultInstanceForType() { - return io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value build() { - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value buildPartial() { - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value result = new io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value(this); - result.value_ = value_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value) { - return mergeFrom((io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value other) { - if (other == io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value.getDefaultInstance()) return this; - if (other.getValue() != 0) { - setValue(other.getValue()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int value_ ; - /** - * uint32 value = 1; - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - /** - * uint32 value = 1; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(int value) { - - value_ = value; - onChanged(); - return this; - } - /** - * uint32 value = 1; - * @return This builder for chaining. - */ - public Builder clearValue() { - - value_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:UInt32Value) - } - - // @@protoc_insertion_point(class_scope:UInt32Value) - private static final io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value(); - } - - public static io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public UInt32Value parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new UInt32Value(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.serializers.protobuf.test.UInt32ValueOuterClass.UInt32Value getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_UInt32Value_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_UInt32Value_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\021UInt32Value.proto\"\034\n\013UInt32Value\022\r\n\005va" + - "lue\030\001 \001(\rB.\n,io.confluent.kafka.serializ" + - "ers.protobuf.testb\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_UInt32Value_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_UInt32Value_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_UInt32Value_descriptor, - new java.lang.String[] { "Value", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-serializer/src/test/proto/BUILD.bazel b/protobuf-serializer/src/test/proto/BUILD.bazel new file mode 100644 index 00000000000..69c9d580b8a --- /dev/null +++ b/protobuf-serializer/src/test/proto/BUILD.bazel @@ -0,0 +1,67 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "io_confluent_kafka_schemaregistry_rules_proto", + srcs = glob( + ["*.proto"], + exclude = [ + "EnumUnion.proto", + "Ranges.proto", + "CustomOptions2.proto", + ], + ), + strip_import_prefix = "/protobuf-serializer/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "//protobuf-types/src/main/proto:confluent_proto", + "//protobuf-types/src/main/proto/confluent/type:confluent_type_proto", + "@com_google_protobuf//:descriptor_proto", + "@com_google_protobuf//:timestamp_proto", + "@googleapis//:date_proto", + "@googleapis//:timeofday_proto", + ], +) + +proto_library( + name = "customOptions2_proto", + srcs = ["CustomOptions2.proto"], + strip_import_prefix = "/protobuf-serializer/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "@com_google_protobuf//:descriptor_proto", + ], +) + +proto_library( + name = "EnumUnion_proto", + srcs = ["EnumUnion.proto"], + strip_import_prefix = "/protobuf-serializer/src/test/proto", + visibility = ["//visibility:public"], +) + +proto_library( + name = "Ranges_proto", + srcs = ["Ranges.proto"], + strip_import_prefix = "/protobuf-serializer/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "@com_google_protobuf//:descriptor_proto", + ], +) + +java_proto_library( + name = "io_confluent_kafka_schemaregistry_rules_java_proto", + deps = [ + ":EnumUnion_proto", + ":Ranges_proto", + ":customOptions2_proto", + ":io_confluent_kafka_schemaregistry_rules_proto", + ], +) + +java_library( + name = "io_confluent_kafka_schemaregistry_rules_java_library", + visibility = ["//:__subpackages__"], + exports = [":io_confluent_kafka_schemaregistry_rules_java_proto"], +) diff --git a/protobuf-types/BUILD.bazel b/protobuf-types/BUILD.bazel new file mode 100644 index 00000000000..d3c27e41e5d --- /dev/null +++ b/protobuf-types/BUILD.bazel @@ -0,0 +1,23 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library") + +java_library( + name = "protobuf-types", + srcs = [ + "src/main/java/io/confluent/protobuf/type/utils/DecimalUtils.java", + ], + resource_strip_prefix = "protobuf-types/src/main/proto", + resources = [ + "//protobuf-types/src/main/proto:proto_files", + "//protobuf-types/src/main/proto/confluent/type:proto_files", + ], + visibility = ["//visibility:public"], + exports = [ + "//protobuf-types/src/main/proto:confluent_java_library", + "//protobuf-types/src/main/proto/confluent/type:confluent_type_java_library", + ], + deps = [ + "//protobuf-types/src/main/proto:confluent_java_library", + "//protobuf-types/src/main/proto/confluent/type:confluent_type_java_library", + "@maven//:com_google_protobuf_protobuf_java", + ], +) diff --git a/protobuf-types/src/main/java/io/confluent/protobuf/MetaProto.java b/protobuf-types/src/main/java/io/confluent/protobuf/MetaProto.java deleted file mode 100644 index 06b6b08c607..00000000000 --- a/protobuf-types/src/main/java/io/confluent/protobuf/MetaProto.java +++ /dev/null @@ -1,1215 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: meta.proto - -package io.confluent.protobuf; - -public final class MetaProto { - private MetaProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - registry.add(io.confluent.protobuf.MetaProto.fileMeta); - registry.add(io.confluent.protobuf.MetaProto.messageMeta); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - registry.add(io.confluent.protobuf.MetaProto.enumMeta); - registry.add(io.confluent.protobuf.MetaProto.enumValueMeta); - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface MetaOrBuilder extends - // @@protoc_insertion_point(interface_extends:confluent.Meta) - com.google.protobuf.MessageOrBuilder { - - /** - * string doc = 1; - * @return The doc. - */ - java.lang.String getDoc(); - /** - * string doc = 1; - * @return The bytes for doc. - */ - com.google.protobuf.ByteString - getDocBytes(); - - /** - * map<string, string> params = 2; - */ - int getParamsCount(); - /** - * map<string, string> params = 2; - */ - boolean containsParams( - java.lang.String key); - /** - * Use {@link #getParamsMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getParams(); - /** - * map<string, string> params = 2; - */ - java.util.Map - getParamsMap(); - /** - * map<string, string> params = 2; - */ - - java.lang.String getParamsOrDefault( - java.lang.String key, - java.lang.String defaultValue); - /** - * map<string, string> params = 2; - */ - - java.lang.String getParamsOrThrow( - java.lang.String key); - - /** - * repeated string tags = 3; - * @return A list containing the tags. - */ - java.util.List - getTagsList(); - /** - * repeated string tags = 3; - * @return The count of tags. - */ - int getTagsCount(); - /** - * repeated string tags = 3; - * @param index The index of the element to return. - * @return The tags at the given index. - */ - java.lang.String getTags(int index); - /** - * repeated string tags = 3; - * @param index The index of the value to return. - * @return The bytes of the tags at the given index. - */ - com.google.protobuf.ByteString - getTagsBytes(int index); - } - /** - * Protobuf type {@code confluent.Meta} - */ - public static final class Meta extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:confluent.Meta) - MetaOrBuilder { - private static final long serialVersionUID = 0L; - // Use Meta.newBuilder() to construct. - private Meta(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Meta() { - doc_ = ""; - tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Meta(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.protobuf.MetaProto.internal_static_confluent_Meta_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 2: - return internalGetParams(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.protobuf.MetaProto.internal_static_confluent_Meta_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.protobuf.MetaProto.Meta.class, io.confluent.protobuf.MetaProto.Meta.Builder.class); - } - - public static final int DOC_FIELD_NUMBER = 1; - private volatile java.lang.Object doc_; - /** - * string doc = 1; - * @return The doc. - */ - @java.lang.Override - public java.lang.String getDoc() { - java.lang.Object ref = doc_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - doc_ = s; - return s; - } - } - /** - * string doc = 1; - * @return The bytes for doc. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDocBytes() { - java.lang.Object ref = doc_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - doc_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int PARAMS_FIELD_NUMBER = 2; - private static final class ParamsDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.String, java.lang.String> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - io.confluent.protobuf.MetaProto.internal_static_confluent_Meta_ParamsEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.STRING, - ""); - } - private com.google.protobuf.MapField< - java.lang.String, java.lang.String> params_; - private com.google.protobuf.MapField - internalGetParams() { - if (params_ == null) { - return com.google.protobuf.MapField.emptyMapField( - ParamsDefaultEntryHolder.defaultEntry); - } - return params_; - } - - public int getParamsCount() { - return internalGetParams().getMap().size(); - } - /** - * map<string, string> params = 2; - */ - - @java.lang.Override - public boolean containsParams( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetParams().getMap().containsKey(key); - } - /** - * Use {@link #getParamsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getParams() { - return getParamsMap(); - } - /** - * map<string, string> params = 2; - */ - @java.lang.Override - - public java.util.Map getParamsMap() { - return internalGetParams().getMap(); - } - /** - * map<string, string> params = 2; - */ - @java.lang.Override - - public java.lang.String getParamsOrDefault( - java.lang.String key, - java.lang.String defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, string> params = 2; - */ - @java.lang.Override - - public java.lang.String getParamsOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int TAGS_FIELD_NUMBER = 3; - private com.google.protobuf.LazyStringList tags_; - /** - * repeated string tags = 3; - * @return A list containing the tags. - */ - public com.google.protobuf.ProtocolStringList - getTagsList() { - return tags_; - } - /** - * repeated string tags = 3; - * @return The count of tags. - */ - public int getTagsCount() { - return tags_.size(); - } - /** - * repeated string tags = 3; - * @param index The index of the element to return. - * @return The tags at the given index. - */ - public java.lang.String getTags(int index) { - return tags_.get(index); - } - /** - * repeated string tags = 3; - * @param index The index of the value to return. - * @return The bytes of the tags at the given index. - */ - public com.google.protobuf.ByteString - getTagsBytes(int index) { - return tags_.getByteString(index); - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(doc_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, doc_); - } - com.google.protobuf.GeneratedMessageV3 - .serializeStringMapTo( - output, - internalGetParams(), - ParamsDefaultEntryHolder.defaultEntry, - 2); - for (int i = 0; i < tags_.size(); i++) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, tags_.getRaw(i)); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(doc_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, doc_); - } - for (java.util.Map.Entry entry - : internalGetParams().getMap().entrySet()) { - com.google.protobuf.MapEntry - params__ = ParamsDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, params__); - } - { - int dataSize = 0; - for (int i = 0; i < tags_.size(); i++) { - dataSize += computeStringSizeNoTag(tags_.getRaw(i)); - } - size += dataSize; - size += 1 * getTagsList().size(); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.protobuf.MetaProto.Meta)) { - return super.equals(obj); - } - io.confluent.protobuf.MetaProto.Meta other = (io.confluent.protobuf.MetaProto.Meta) obj; - - if (!getDoc() - .equals(other.getDoc())) return false; - if (!internalGetParams().equals( - other.internalGetParams())) return false; - if (!getTagsList() - .equals(other.getTagsList())) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + DOC_FIELD_NUMBER; - hash = (53 * hash) + getDoc().hashCode(); - if (!internalGetParams().getMap().isEmpty()) { - hash = (37 * hash) + PARAMS_FIELD_NUMBER; - hash = (53 * hash) + internalGetParams().hashCode(); - } - if (getTagsCount() > 0) { - hash = (37 * hash) + TAGS_FIELD_NUMBER; - hash = (53 * hash) + getTagsList().hashCode(); - } - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.protobuf.MetaProto.Meta parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.protobuf.MetaProto.Meta parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.protobuf.MetaProto.Meta parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.protobuf.MetaProto.Meta prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code confluent.Meta} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:confluent.Meta) - io.confluent.protobuf.MetaProto.MetaOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.protobuf.MetaProto.internal_static_confluent_Meta_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 2: - return internalGetParams(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 2: - return internalGetMutableParams(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.protobuf.MetaProto.internal_static_confluent_Meta_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.protobuf.MetaProto.Meta.class, io.confluent.protobuf.MetaProto.Meta.Builder.class); - } - - // Construct using io.confluent.protobuf.MetaProto.Meta.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - doc_ = ""; - - internalGetMutableParams().clear(); - tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000002); - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.protobuf.MetaProto.internal_static_confluent_Meta_descriptor; - } - - @java.lang.Override - public io.confluent.protobuf.MetaProto.Meta getDefaultInstanceForType() { - return io.confluent.protobuf.MetaProto.Meta.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.protobuf.MetaProto.Meta build() { - io.confluent.protobuf.MetaProto.Meta result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.protobuf.MetaProto.Meta buildPartial() { - io.confluent.protobuf.MetaProto.Meta result = new io.confluent.protobuf.MetaProto.Meta(this); - int from_bitField0_ = bitField0_; - result.doc_ = doc_; - result.params_ = internalGetParams(); - result.params_.makeImmutable(); - if (((bitField0_ & 0x00000002) != 0)) { - tags_ = tags_.getUnmodifiableView(); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.tags_ = tags_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.protobuf.MetaProto.Meta) { - return mergeFrom((io.confluent.protobuf.MetaProto.Meta)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.protobuf.MetaProto.Meta other) { - if (other == io.confluent.protobuf.MetaProto.Meta.getDefaultInstance()) return this; - if (!other.getDoc().isEmpty()) { - doc_ = other.doc_; - onChanged(); - } - internalGetMutableParams().mergeFrom( - other.internalGetParams()); - if (!other.tags_.isEmpty()) { - if (tags_.isEmpty()) { - tags_ = other.tags_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensureTagsIsMutable(); - tags_.addAll(other.tags_); - } - onChanged(); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - doc_ = input.readStringRequireUtf8(); - - break; - } // case 10 - case 18: { - com.google.protobuf.MapEntry - params__ = input.readMessage( - ParamsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - internalGetMutableParams().getMutableMap().put( - params__.getKey(), params__.getValue()); - break; - } // case 18 - case 26: { - java.lang.String s = input.readStringRequireUtf8(); - ensureTagsIsMutable(); - tags_.add(s); - break; - } // case 26 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - private int bitField0_; - - private java.lang.Object doc_ = ""; - /** - * string doc = 1; - * @return The doc. - */ - public java.lang.String getDoc() { - java.lang.Object ref = doc_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - doc_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string doc = 1; - * @return The bytes for doc. - */ - public com.google.protobuf.ByteString - getDocBytes() { - java.lang.Object ref = doc_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - doc_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string doc = 1; - * @param value The doc to set. - * @return This builder for chaining. - */ - public Builder setDoc( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - doc_ = value; - onChanged(); - return this; - } - /** - * string doc = 1; - * @return This builder for chaining. - */ - public Builder clearDoc() { - - doc_ = getDefaultInstance().getDoc(); - onChanged(); - return this; - } - /** - * string doc = 1; - * @param value The bytes for doc to set. - * @return This builder for chaining. - */ - public Builder setDocBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - doc_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.MapField< - java.lang.String, java.lang.String> params_; - private com.google.protobuf.MapField - internalGetParams() { - if (params_ == null) { - return com.google.protobuf.MapField.emptyMapField( - ParamsDefaultEntryHolder.defaultEntry); - } - return params_; - } - private com.google.protobuf.MapField - internalGetMutableParams() { - onChanged();; - if (params_ == null) { - params_ = com.google.protobuf.MapField.newMapField( - ParamsDefaultEntryHolder.defaultEntry); - } - if (!params_.isMutable()) { - params_ = params_.copy(); - } - return params_; - } - - public int getParamsCount() { - return internalGetParams().getMap().size(); - } - /** - * map<string, string> params = 2; - */ - - @java.lang.Override - public boolean containsParams( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetParams().getMap().containsKey(key); - } - /** - * Use {@link #getParamsMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getParams() { - return getParamsMap(); - } - /** - * map<string, string> params = 2; - */ - @java.lang.Override - - public java.util.Map getParamsMap() { - return internalGetParams().getMap(); - } - /** - * map<string, string> params = 2; - */ - @java.lang.Override - - public java.lang.String getParamsOrDefault( - java.lang.String key, - java.lang.String defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, string> params = 2; - */ - @java.lang.Override - - public java.lang.String getParamsOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetParams().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearParams() { - internalGetMutableParams().getMutableMap() - .clear(); - return this; - } - /** - * map<string, string> params = 2; - */ - - public Builder removeParams( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - internalGetMutableParams().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutableParams() { - return internalGetMutableParams().getMutableMap(); - } - /** - * map<string, string> params = 2; - */ - public Builder putParams( - java.lang.String key, - java.lang.String value) { - if (key == null) { throw new NullPointerException("map key"); } - if (value == null) { - throw new NullPointerException("map value"); -} - - internalGetMutableParams().getMutableMap() - .put(key, value); - return this; - } - /** - * map<string, string> params = 2; - */ - - public Builder putAllParams( - java.util.Map values) { - internalGetMutableParams().getMutableMap() - .putAll(values); - return this; - } - - private com.google.protobuf.LazyStringList tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureTagsIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - tags_ = new com.google.protobuf.LazyStringArrayList(tags_); - bitField0_ |= 0x00000002; - } - } - /** - * repeated string tags = 3; - * @return A list containing the tags. - */ - public com.google.protobuf.ProtocolStringList - getTagsList() { - return tags_.getUnmodifiableView(); - } - /** - * repeated string tags = 3; - * @return The count of tags. - */ - public int getTagsCount() { - return tags_.size(); - } - /** - * repeated string tags = 3; - * @param index The index of the element to return. - * @return The tags at the given index. - */ - public java.lang.String getTags(int index) { - return tags_.get(index); - } - /** - * repeated string tags = 3; - * @param index The index of the value to return. - * @return The bytes of the tags at the given index. - */ - public com.google.protobuf.ByteString - getTagsBytes(int index) { - return tags_.getByteString(index); - } - /** - * repeated string tags = 3; - * @param index The index to set the value at. - * @param value The tags to set. - * @return This builder for chaining. - */ - public Builder setTags( - int index, java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureTagsIsMutable(); - tags_.set(index, value); - onChanged(); - return this; - } - /** - * repeated string tags = 3; - * @param value The tags to add. - * @return This builder for chaining. - */ - public Builder addTags( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureTagsIsMutable(); - tags_.add(value); - onChanged(); - return this; - } - /** - * repeated string tags = 3; - * @param values The tags to add. - * @return This builder for chaining. - */ - public Builder addAllTags( - java.lang.Iterable values) { - ensureTagsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, tags_); - onChanged(); - return this; - } - /** - * repeated string tags = 3; - * @return This builder for chaining. - */ - public Builder clearTags() { - tags_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - return this; - } - /** - * repeated string tags = 3; - * @param value The bytes of the tags to add. - * @return This builder for chaining. - */ - public Builder addTagsBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - ensureTagsIsMutable(); - tags_.add(value); - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:confluent.Meta) - } - - // @@protoc_insertion_point(class_scope:confluent.Meta) - private static final io.confluent.protobuf.MetaProto.Meta DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.protobuf.MetaProto.Meta(); - } - - public static io.confluent.protobuf.MetaProto.Meta getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Meta parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.protobuf.MetaProto.Meta getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public static final int FILE_META_FIELD_NUMBER = 1088; - /** - * extend .google.protobuf.FileOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FileOptions, - io.confluent.protobuf.MetaProto.Meta> fileMeta = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.protobuf.MetaProto.Meta.class, - io.confluent.protobuf.MetaProto.Meta.getDefaultInstance()); - public static final int MESSAGE_META_FIELD_NUMBER = 1088; - /** - * extend .google.protobuf.MessageOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.MessageOptions, - io.confluent.protobuf.MetaProto.Meta> messageMeta = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.protobuf.MetaProto.Meta.class, - io.confluent.protobuf.MetaProto.Meta.getDefaultInstance()); - public static final int FIELD_META_FIELD_NUMBER = 1088; - /** - * extend .google.protobuf.FieldOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.FieldOptions, - io.confluent.protobuf.MetaProto.Meta> fieldMeta = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.protobuf.MetaProto.Meta.class, - io.confluent.protobuf.MetaProto.Meta.getDefaultInstance()); - public static final int ENUM_META_FIELD_NUMBER = 1088; - /** - * extend .google.protobuf.EnumOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumOptions, - io.confluent.protobuf.MetaProto.Meta> enumMeta = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.protobuf.MetaProto.Meta.class, - io.confluent.protobuf.MetaProto.Meta.getDefaultInstance()); - public static final int ENUM_VALUE_META_FIELD_NUMBER = 1088; - /** - * extend .google.protobuf.EnumValueOptions { ... } - */ - public static final - com.google.protobuf.GeneratedMessage.GeneratedExtension< - com.google.protobuf.DescriptorProtos.EnumValueOptions, - io.confluent.protobuf.MetaProto.Meta> enumValueMeta = com.google.protobuf.GeneratedMessage - .newFileScopedGeneratedExtension( - io.confluent.protobuf.MetaProto.Meta.class, - io.confluent.protobuf.MetaProto.Meta.getDefaultInstance()); - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_confluent_Meta_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_confluent_Meta_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_confluent_Meta_ParamsEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_confluent_Meta_ParamsEntry_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\nmeta.proto\022\tconfluent\032 google/protobuf" + - "/descriptor.proto\"}\n\004Meta\022\013\n\003doc\030\001 \001(\t\022+" + - "\n\006params\030\002 \003(\0132\033.confluent.Meta.ParamsEn" + - "try\022\014\n\004tags\030\003 \003(\t\032-\n\013ParamsEntry\022\013\n\003key\030" + - "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001:A\n\tfile_meta\022\034." + - "google.protobuf.FileOptions\030\300\010 \001(\0132\017.con" + - "fluent.Meta:G\n\014message_meta\022\037.google.pro" + - "tobuf.MessageOptions\030\300\010 \001(\0132\017.confluent." + - "Meta:C\n\nfield_meta\022\035.google.protobuf.Fie" + - "ldOptions\030\300\010 \001(\0132\017.confluent.Meta:A\n\tenu" + - "m_meta\022\034.google.protobuf.EnumOptions\030\300\010 " + - "\001(\0132\017.confluent.Meta:L\n\017enum_value_meta\022" + - "!.google.protobuf.EnumValueOptions\030\300\010 \001(" + - "\0132\017.confluent.MetaB\"\n\025io.confluent.proto" + - "bufB\tMetaProtob\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.DescriptorProtos.getDescriptor(), - }); - internal_static_confluent_Meta_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_confluent_Meta_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_confluent_Meta_descriptor, - new java.lang.String[] { "Doc", "Params", "Tags", }); - internal_static_confluent_Meta_ParamsEntry_descriptor = - internal_static_confluent_Meta_descriptor.getNestedTypes().get(0); - internal_static_confluent_Meta_ParamsEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_confluent_Meta_ParamsEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - fileMeta.internalInit(descriptor.getExtensions().get(0)); - messageMeta.internalInit(descriptor.getExtensions().get(1)); - fieldMeta.internalInit(descriptor.getExtensions().get(2)); - enumMeta.internalInit(descriptor.getExtensions().get(3)); - enumValueMeta.internalInit(descriptor.getExtensions().get(4)); - com.google.protobuf.DescriptorProtos.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-types/src/main/java/io/confluent/protobuf/type/Decimal.java b/protobuf-types/src/main/java/io/confluent/protobuf/type/Decimal.java deleted file mode 100644 index a1d90a603b4..00000000000 --- a/protobuf-types/src/main/java/io/confluent/protobuf/type/Decimal.java +++ /dev/null @@ -1,663 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: decimal.proto - -package io.confluent.protobuf.type; - -/** - * Protobuf type {@code confluent.type.Decimal} - */ -public final class Decimal extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:confluent.type.Decimal) - DecimalOrBuilder { -private static final long serialVersionUID = 0L; - // Use Decimal.newBuilder() to construct. - private Decimal(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Decimal() { - value_ = com.google.protobuf.ByteString.EMPTY; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Decimal(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private Decimal( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - this(); - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - com.google.protobuf.UnknownFieldSet.Builder unknownFields = - com.google.protobuf.UnknownFieldSet.newBuilder(); - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - - value_ = input.readBytes(); - break; - } - case 16: { - - precision_ = input.readUInt32(); - break; - } - case 24: { - - scale_ = input.readInt32(); - break; - } - default: { - if (!parseUnknownField( - input, unknownFields, extensionRegistry, tag)) { - done = true; - } - break; - } - } - } - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(this); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException( - e).setUnfinishedMessage(this); - } finally { - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.protobuf.type.DecimalProto.internal_static_confluent_type_Decimal_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.protobuf.type.DecimalProto.internal_static_confluent_type_Decimal_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.protobuf.type.Decimal.class, io.confluent.protobuf.type.Decimal.Builder.class); - } - - public static final int VALUE_FIELD_NUMBER = 1; - private com.google.protobuf.ByteString value_; - /** - *
-   * The two's-complement representation of the unscaled integer value in big-endian byte order
-   * 
- * - * bytes value = 1; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - - public static final int PRECISION_FIELD_NUMBER = 2; - private int precision_; - /** - *
-   * The precision
-   * 
- * - * uint32 precision = 2; - * @return The precision. - */ - @java.lang.Override - public int getPrecision() { - return precision_; - } - - public static final int SCALE_FIELD_NUMBER = 3; - private int scale_; - /** - *
-   * The scale
-   * 
- * - * int32 scale = 3; - * @return The scale. - */ - @java.lang.Override - public int getScale() { - return scale_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!value_.isEmpty()) { - output.writeBytes(1, value_); - } - if (precision_ != 0) { - output.writeUInt32(2, precision_); - } - if (scale_ != 0) { - output.writeInt32(3, scale_); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!value_.isEmpty()) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(1, value_); - } - if (precision_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeUInt32Size(2, precision_); - } - if (scale_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(3, scale_); - } - size += unknownFields.getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.protobuf.type.Decimal)) { - return super.equals(obj); - } - io.confluent.protobuf.type.Decimal other = (io.confluent.protobuf.type.Decimal) obj; - - if (!getValue() - .equals(other.getValue())) return false; - if (getPrecision() - != other.getPrecision()) return false; - if (getScale() - != other.getScale()) return false; - if (!unknownFields.equals(other.unknownFields)) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + VALUE_FIELD_NUMBER; - hash = (53 * hash) + getValue().hashCode(); - hash = (37 * hash) + PRECISION_FIELD_NUMBER; - hash = (53 * hash) + getPrecision(); - hash = (37 * hash) + SCALE_FIELD_NUMBER; - hash = (53 * hash) + getScale(); - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.protobuf.type.Decimal parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.protobuf.type.Decimal parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.protobuf.type.Decimal parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.protobuf.type.Decimal parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.protobuf.type.Decimal parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.protobuf.type.Decimal parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.protobuf.type.Decimal prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code confluent.type.Decimal} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:confluent.type.Decimal) - io.confluent.protobuf.type.DecimalOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.protobuf.type.DecimalProto.internal_static_confluent_type_Decimal_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.protobuf.type.DecimalProto.internal_static_confluent_type_Decimal_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.protobuf.type.Decimal.class, io.confluent.protobuf.type.Decimal.Builder.class); - } - - // Construct using io.confluent.protobuf.type.Decimal.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3 - .alwaysUseFieldBuilders) { - } - } - @java.lang.Override - public Builder clear() { - super.clear(); - value_ = com.google.protobuf.ByteString.EMPTY; - - precision_ = 0; - - scale_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.protobuf.type.DecimalProto.internal_static_confluent_type_Decimal_descriptor; - } - - @java.lang.Override - public io.confluent.protobuf.type.Decimal getDefaultInstanceForType() { - return io.confluent.protobuf.type.Decimal.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.protobuf.type.Decimal build() { - io.confluent.protobuf.type.Decimal result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.protobuf.type.Decimal buildPartial() { - io.confluent.protobuf.type.Decimal result = new io.confluent.protobuf.type.Decimal(this); - result.value_ = value_; - result.precision_ = precision_; - result.scale_ = scale_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.protobuf.type.Decimal) { - return mergeFrom((io.confluent.protobuf.type.Decimal)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.protobuf.type.Decimal other) { - if (other == io.confluent.protobuf.type.Decimal.getDefaultInstance()) return this; - if (other.getValue() != com.google.protobuf.ByteString.EMPTY) { - setValue(other.getValue()); - } - if (other.getPrecision() != 0) { - setPrecision(other.getPrecision()); - } - if (other.getScale() != 0) { - setScale(other.getScale()); - } - this.mergeUnknownFields(other.unknownFields); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - io.confluent.protobuf.type.Decimal parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (io.confluent.protobuf.type.Decimal) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY; - /** - *
-     * The two's-complement representation of the unscaled integer value in big-endian byte order
-     * 
- * - * bytes value = 1; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - /** - *
-     * The two's-complement representation of the unscaled integer value in big-endian byte order
-     * 
- * - * bytes value = 1; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - - value_ = value; - onChanged(); - return this; - } - /** - *
-     * The two's-complement representation of the unscaled integer value in big-endian byte order
-     * 
- * - * bytes value = 1; - * @return This builder for chaining. - */ - public Builder clearValue() { - - value_ = getDefaultInstance().getValue(); - onChanged(); - return this; - } - - private int precision_ ; - /** - *
-     * The precision
-     * 
- * - * uint32 precision = 2; - * @return The precision. - */ - @java.lang.Override - public int getPrecision() { - return precision_; - } - /** - *
-     * The precision
-     * 
- * - * uint32 precision = 2; - * @param value The precision to set. - * @return This builder for chaining. - */ - public Builder setPrecision(int value) { - - precision_ = value; - onChanged(); - return this; - } - /** - *
-     * The precision
-     * 
- * - * uint32 precision = 2; - * @return This builder for chaining. - */ - public Builder clearPrecision() { - - precision_ = 0; - onChanged(); - return this; - } - - private int scale_ ; - /** - *
-     * The scale
-     * 
- * - * int32 scale = 3; - * @return The scale. - */ - @java.lang.Override - public int getScale() { - return scale_; - } - /** - *
-     * The scale
-     * 
- * - * int32 scale = 3; - * @param value The scale to set. - * @return This builder for chaining. - */ - public Builder setScale(int value) { - - scale_ = value; - onChanged(); - return this; - } - /** - *
-     * The scale
-     * 
- * - * int32 scale = 3; - * @return This builder for chaining. - */ - public Builder clearScale() { - - scale_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:confluent.type.Decimal) - } - - // @@protoc_insertion_point(class_scope:confluent.type.Decimal) - private static final io.confluent.protobuf.type.Decimal DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.protobuf.type.Decimal(); - } - - public static io.confluent.protobuf.type.Decimal getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Decimal parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new Decimal(input, extensionRegistry); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.protobuf.type.Decimal getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - -} - diff --git a/protobuf-types/src/main/java/io/confluent/protobuf/type/DecimalOrBuilder.java b/protobuf-types/src/main/java/io/confluent/protobuf/type/DecimalOrBuilder.java deleted file mode 100644 index 256560bfea2..00000000000 --- a/protobuf-types/src/main/java/io/confluent/protobuf/type/DecimalOrBuilder.java +++ /dev/null @@ -1,39 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: decimal.proto - -package io.confluent.protobuf.type; - -public interface DecimalOrBuilder extends - // @@protoc_insertion_point(interface_extends:confluent.type.Decimal) - com.google.protobuf.MessageOrBuilder { - - /** - *
-   * The two's-complement representation of the unscaled integer value in big-endian byte order
-   * 
- * - * bytes value = 1; - * @return The value. - */ - com.google.protobuf.ByteString getValue(); - - /** - *
-   * The precision
-   * 
- * - * uint32 precision = 2; - * @return The precision. - */ - int getPrecision(); - - /** - *
-   * The scale
-   * 
- * - * int32 scale = 3; - * @return The scale. - */ - int getScale(); -} diff --git a/protobuf-types/src/main/java/io/confluent/protobuf/type/DecimalProto.java b/protobuf-types/src/main/java/io/confluent/protobuf/type/DecimalProto.java deleted file mode 100644 index 43430af9296..00000000000 --- a/protobuf-types/src/main/java/io/confluent/protobuf/type/DecimalProto.java +++ /dev/null @@ -1,49 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: decimal.proto - -package io.confluent.protobuf.type; - -public final class DecimalProto { - private DecimalProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - static final com.google.protobuf.Descriptors.Descriptor - internal_static_confluent_type_Decimal_descriptor; - static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_confluent_type_Decimal_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\rdecimal.proto\022\016confluent.type\":\n\007Decim" + - "al\022\r\n\005value\030\001 \001(\014\022\021\n\tprecision\030\002 \001(\r\022\r\n\005" + - "scale\030\003 \001(\005B,\n\032io.confluent.protobuf.typ" + - "eB\014DecimalProtoP\001b\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_confluent_type_Decimal_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_confluent_type_Decimal_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_confluent_type_Decimal_descriptor, - new java.lang.String[] { "Value", "Precision", "Scale", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/protobuf-types/src/main/proto/BUILD.bazel b/protobuf-types/src/main/proto/BUILD.bazel new file mode 100644 index 00000000000..493fbb84b63 --- /dev/null +++ b/protobuf-types/src/main/proto/BUILD.bazel @@ -0,0 +1,31 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@io_bazel_rules_go//go:def.bzl", "go_library") +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "confluent_proto", + srcs = ["confluent/meta.proto"], + strip_import_prefix = "/protobuf-types/src/main/proto", + visibility = ["//visibility:public"], + deps = ["@com_google_protobuf//:descriptor_proto"], +) + +java_proto_library( + name = "confluent_java_proto", + deps = [":confluent_proto"], +) + +java_library( + name = "confluent_java_library", + visibility = ["//:__subpackages__"], + exports = [":confluent_java_proto"], +) + +filegroup( + name = "proto_files", + srcs = [ + "confluent/meta.proto", + ], + visibility = ["//visibility:public"], +) diff --git a/protobuf-types/src/main/proto/confluent/type/BUILD.bazel b/protobuf-types/src/main/proto/confluent/type/BUILD.bazel new file mode 100644 index 00000000000..8adfb4c147f --- /dev/null +++ b/protobuf-types/src/main/proto/confluent/type/BUILD.bazel @@ -0,0 +1,30 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@io_bazel_rules_go//go:def.bzl", "go_library") +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "confluent_type_proto", + srcs = ["decimal.proto"], + strip_import_prefix = "/protobuf-types/src/main/proto", + visibility = ["//visibility:public"], +) + +java_proto_library( + name = "confluent_type_java_proto", + deps = [":confluent_type_proto"], +) + +java_library( + name = "confluent_type_java_library", + visibility = ["//:__subpackages__"], + exports = [":confluent_type_java_proto"], +) + +filegroup( + name = "proto_files", + srcs = [ + "decimal.proto", + ], + visibility = ["//visibility:public"], +) diff --git a/publish-local-m2.sh b/publish-local-m2.sh new file mode 100755 index 00000000000..b81b6b7c059 --- /dev/null +++ b/publish-local-m2.sh @@ -0,0 +1,5 @@ +bazel run --define "maven_repo=file://$HOME/.m2/repository" //avro-serializer:avro-serializer.publish +bazel run --define "maven_repo=file://$HOME/.m2/repository" //client:client.publish +bazel run --define "maven_repo=file://$HOME/.m2/repository" //json-schema-provider:json-schema-provider.publish +bazel run --define "maven_repo=file://$HOME/.m2/repository" //protobuf-provider:protobuf-provider.publish +bazel run --define "maven_repo=file://$HOME/.m2/repository" //protobuf-serializer:protobuf-serializer.publish diff --git a/schema-converter/BUILD.bazel b/schema-converter/BUILD.bazel new file mode 100644 index 00000000000..5ba8be6468b --- /dev/null +++ b/schema-converter/BUILD.bazel @@ -0,0 +1,19 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library") + +java_library( + name = "schema-converter", + srcs = [ + "src/main/java/io/confluent/connect/schema/AbstractDataConfig.java", + "src/main/java/io/confluent/connect/schema/ConnectEnum.java", + "src/main/java/io/confluent/connect/schema/ConnectUnion.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "@maven//:org_apache_kafka_connect_api", + "@maven//:org_apache_kafka_kafka_clients", + ], +) diff --git a/schema-registry-console-scripts/BUILD.bazel b/schema-registry-console-scripts/BUILD.bazel new file mode 100644 index 00000000000..3325eb5773b --- /dev/null +++ b/schema-registry-console-scripts/BUILD.bazel @@ -0,0 +1,8 @@ +load("@rules_pkg//pkg:zip.bzl", "pkg_zip") + +pkg_zip( + name = "schema_registry_console_scripts_resources", + srcs = [ + "//bin:schema_registry_console_scripts_src", + ], +) diff --git a/schema-rules/BUILD.bazel b/schema-rules/BUILD.bazel new file mode 100644 index 00000000000..827c384cf47 --- /dev/null +++ b/schema-rules/BUILD.bazel @@ -0,0 +1,90 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library", "java_test_suite") +load("@io_bazel_rules_avro//avro:avro.bzl", "avro_java_library") +# gazelle:java_module_granularity module + +avro_java_library( + name = "avro-resources", + srcs = glob( + [ + "src/test/avro/*.avsc", + ], + ), + avro_libs = { + "core": "@maven//:org_apache_avro_avro", + "tools": "@avro//:org_apache_avro_avro_tools", + }, +) + +java_library( + name = "schema-rules", + srcs = [ + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/CelExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/CelFieldExecutor.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroEnumDescription.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroEnumValue.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroFieldType.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroObjectT.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroRegistry.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroTypeDescription.java", + "src/main/java/io/confluent/kafka/schemaregistry/rules/jsonata/JsonataExecutor.java", + ], + visibility = ["//:__subpackages__"], + exports = [ + "@maven//:org_apache_avro_avro", + "@maven//:org_projectnessie_cel_cel_core", + "@maven//:org_projectnessie_cel_cel_generated_pb", + ], + deps = [ + "//client", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_ibm_jsonata4java_JSONata4Java", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_projectnessie_cel_cel_core", + "@maven//:org_projectnessie_cel_cel_generated_pb", + "@maven//:org_projectnessie_cel_cel_jackson", + "@maven//:org_projectnessie_cel_cel_tools", + ], +) + +java_test_suite( + name = "schema-rules-tests", + srcs = glob(["src/test/**/*.java"]), +# srcs = [ +# "src/test/java/io/confluent/kafka/schemaregistry/rules/cel/CelExecutorTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rules/cel/avro/AvroScriptHostTest.java", +# "src/test/java/io/confluent/kafka/schemaregistry/rules/jsonata/JsonataExecutorTest.java", +# ], + deps = [ + ":avro-resources", + ":schema-rules", + "//avro-serializer", + "//client", + "//core", + "//json-schema-provider", + "//json-schema-serializer", + "//protobuf-provider", + "//protobuf-serializer", + "//protobuf-types", + "//schema-rules/src/test/proto:io_confluent_kafka_schemaregistry_rules_java_library", + "@maven//:com_fasterxml_jackson_core_jackson_annotations", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_dataformat_jackson_dataformat_csv", + "@maven//:com_google_guava_guava", + "@maven//:com_google_protobuf_protobuf_java", + "@maven//:com_squareup_okio_okio", + "@maven//:com_squareup_okio_okio_jvm", + "@maven//:junit_junit", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_mockito_mockito_core", + "@maven//:org_projectnessie_cel_cel_core", + "@maven//:org_projectnessie_cel_cel_jackson", + "@maven//:org_projectnessie_cel_cel_tools", + ], + tags = ["no-java-spotbugs"], +) diff --git a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/NewWidgetProto.java b/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/NewWidgetProto.java deleted file mode 100644 index 2662be6db77..00000000000 --- a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/NewWidgetProto.java +++ /dev/null @@ -1,2218 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: NewWidget.proto - -package io.confluent.kafka.schemaregistry.rules; - -public final class NewWidgetProto { - private NewWidgetProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface NewWidgetOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.schemaregistry.rules.NewWidget) - com.google.protobuf.MessageOrBuilder { - - /** - * string name = 1; - * @return The name. - */ - java.lang.String getName(); - /** - * string name = 1; - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - * repeated string ssn = 2; - * @return A list containing the ssn. - */ - java.util.List - getSsnList(); - /** - * repeated string ssn = 2; - * @return The count of ssn. - */ - int getSsnCount(); - /** - * repeated string ssn = 2; - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - java.lang.String getSsn(int index); - /** - * repeated string ssn = 2; - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - com.google.protobuf.ByteString - getSsnBytes(int index); - - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - java.util.List - getPiiArrayList(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiArray(int index); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - int getPiiArrayCount(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - java.util.List - getPiiArrayOrBuilderList(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder getPiiArrayOrBuilder( - int index); - - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - int getPiiMapCount(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - boolean containsPiiMap( - java.lang.String key); - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getPiiMap(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - java.util.Map - getPiiMapMap(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii defaultValue); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiMapOrThrow( - java.lang.String key); - - /** - * int32 height = 5; - * @return The height. - */ - int getHeight(); - - /** - * int32 version = 6; - * @return The version. - */ - int getVersion(); - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.NewWidget} - */ - public static final class NewWidget extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.schemaregistry.rules.NewWidget) - NewWidgetOrBuilder { - private static final long serialVersionUID = 0L; - // Use NewWidget.newBuilder() to construct. - private NewWidget(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private NewWidget() { - name_ = ""; - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - piiArray_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new NewWidget(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 4: - return internalGetPiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.class, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.Builder.class); - } - - public static final int NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object name_; - /** - * string name = 1; - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } - } - /** - * string name = 1; - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SSN_FIELD_NUMBER = 2; - private com.google.protobuf.LazyStringList ssn_; - /** - * repeated string ssn = 2; - * @return A list containing the ssn. - */ - public com.google.protobuf.ProtocolStringList - getSsnList() { - return ssn_; - } - /** - * repeated string ssn = 2; - * @return The count of ssn. - */ - public int getSsnCount() { - return ssn_.size(); - } - /** - * repeated string ssn = 2; - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - public java.lang.String getSsn(int index) { - return ssn_.get(index); - } - /** - * repeated string ssn = 2; - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - public com.google.protobuf.ByteString - getSsnBytes(int index) { - return ssn_.getByteString(index); - } - - public static final int PII_ARRAY_FIELD_NUMBER = 3; - private java.util.List piiArray_; - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public java.util.List getPiiArrayList() { - return piiArray_; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public java.util.List - getPiiArrayOrBuilderList() { - return piiArray_; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public int getPiiArrayCount() { - return piiArray_.size(); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiArray(int index) { - return piiArray_.get(index); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder getPiiArrayOrBuilder( - int index) { - return piiArray_.get(index); - } - - public static final int PII_MAP_FIELD_NUMBER = 4; - private static final class PiiMapDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.String, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_PiiMapEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.getDefaultInstance()); - } - private com.google.protobuf.MapField< - java.lang.String, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii> piiMap_; - private com.google.protobuf.MapField - internalGetPiiMap() { - if (piiMap_ == null) { - return com.google.protobuf.MapField.emptyMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - return piiMap_; - } - - public int getPiiMapCount() { - return internalGetPiiMap().getMap().size(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - @java.lang.Override - public boolean containsPiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetPiiMap().getMap().containsKey(key); - } - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getPiiMap() { - return getPiiMapMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public java.util.Map getPiiMapMap() { - return internalGetPiiMap().getMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiMapOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int HEIGHT_FIELD_NUMBER = 5; - private int height_; - /** - * int32 height = 5; - * @return The height. - */ - @java.lang.Override - public int getHeight() { - return height_; - } - - public static final int VERSION_FIELD_NUMBER = 6; - private int version_; - /** - * int32 version = 6; - * @return The version. - */ - @java.lang.Override - public int getVersion() { - return version_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); - } - for (int i = 0; i < ssn_.size(); i++) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, ssn_.getRaw(i)); - } - for (int i = 0; i < piiArray_.size(); i++) { - output.writeMessage(3, piiArray_.get(i)); - } - com.google.protobuf.GeneratedMessageV3 - .serializeStringMapTo( - output, - internalGetPiiMap(), - PiiMapDefaultEntryHolder.defaultEntry, - 4); - if (height_ != 0) { - output.writeInt32(5, height_); - } - if (version_ != 0) { - output.writeInt32(6, version_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); - } - { - int dataSize = 0; - for (int i = 0; i < ssn_.size(); i++) { - dataSize += computeStringSizeNoTag(ssn_.getRaw(i)); - } - size += dataSize; - size += 1 * getSsnList().size(); - } - for (int i = 0; i < piiArray_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, piiArray_.get(i)); - } - for (java.util.Map.Entry entry - : internalGetPiiMap().getMap().entrySet()) { - com.google.protobuf.MapEntry - piiMap__ = PiiMapDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, piiMap__); - } - if (height_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(5, height_); - } - if (version_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(6, version_); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget)) { - return super.equals(obj); - } - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget other = (io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget) obj; - - if (!getName() - .equals(other.getName())) return false; - if (!getSsnList() - .equals(other.getSsnList())) return false; - if (!getPiiArrayList() - .equals(other.getPiiArrayList())) return false; - if (!internalGetPiiMap().equals( - other.internalGetPiiMap())) return false; - if (getHeight() - != other.getHeight()) return false; - if (getVersion() - != other.getVersion()) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + NAME_FIELD_NUMBER; - hash = (53 * hash) + getName().hashCode(); - if (getSsnCount() > 0) { - hash = (37 * hash) + SSN_FIELD_NUMBER; - hash = (53 * hash) + getSsnList().hashCode(); - } - if (getPiiArrayCount() > 0) { - hash = (37 * hash) + PII_ARRAY_FIELD_NUMBER; - hash = (53 * hash) + getPiiArrayList().hashCode(); - } - if (!internalGetPiiMap().getMap().isEmpty()) { - hash = (37 * hash) + PII_MAP_FIELD_NUMBER; - hash = (53 * hash) + internalGetPiiMap().hashCode(); - } - hash = (37 * hash) + HEIGHT_FIELD_NUMBER; - hash = (53 * hash) + getHeight(); - hash = (37 * hash) + VERSION_FIELD_NUMBER; - hash = (53 * hash) + getVersion(); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.NewWidget} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.schemaregistry.rules.NewWidget) - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidgetOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 4: - return internalGetPiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 4: - return internalGetMutablePiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.class, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.Builder.class); - } - - // Construct using io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - name_ = ""; - - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - if (piiArrayBuilder_ == null) { - piiArray_ = java.util.Collections.emptyList(); - } else { - piiArray_ = null; - piiArrayBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000002); - internalGetMutablePiiMap().clear(); - height_ = 0; - - version_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget getDefaultInstanceForType() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget build() { - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget buildPartial() { - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget result = new io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget(this); - int from_bitField0_ = bitField0_; - result.name_ = name_; - if (((bitField0_ & 0x00000001) != 0)) { - ssn_ = ssn_.getUnmodifiableView(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.ssn_ = ssn_; - if (piiArrayBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0)) { - piiArray_ = java.util.Collections.unmodifiableList(piiArray_); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.piiArray_ = piiArray_; - } else { - result.piiArray_ = piiArrayBuilder_.build(); - } - result.piiMap_ = internalGetPiiMap(); - result.piiMap_.makeImmutable(); - result.height_ = height_; - result.version_ = version_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget) { - return mergeFrom((io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget other) { - if (other == io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget.getDefaultInstance()) return this; - if (!other.getName().isEmpty()) { - name_ = other.name_; - onChanged(); - } - if (!other.ssn_.isEmpty()) { - if (ssn_.isEmpty()) { - ssn_ = other.ssn_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureSsnIsMutable(); - ssn_.addAll(other.ssn_); - } - onChanged(); - } - if (piiArrayBuilder_ == null) { - if (!other.piiArray_.isEmpty()) { - if (piiArray_.isEmpty()) { - piiArray_ = other.piiArray_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensurePiiArrayIsMutable(); - piiArray_.addAll(other.piiArray_); - } - onChanged(); - } - } else { - if (!other.piiArray_.isEmpty()) { - if (piiArrayBuilder_.isEmpty()) { - piiArrayBuilder_.dispose(); - piiArrayBuilder_ = null; - piiArray_ = other.piiArray_; - bitField0_ = (bitField0_ & ~0x00000002); - piiArrayBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getPiiArrayFieldBuilder() : null; - } else { - piiArrayBuilder_.addAllMessages(other.piiArray_); - } - } - } - internalGetMutablePiiMap().mergeFrom( - other.internalGetPiiMap()); - if (other.getHeight() != 0) { - setHeight(other.getHeight()); - } - if (other.getVersion() != 0) { - setVersion(other.getVersion()); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - name_ = input.readStringRequireUtf8(); - - break; - } // case 10 - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - ensureSsnIsMutable(); - ssn_.add(s); - break; - } // case 18 - case 26: { - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii m = - input.readMessage( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.parser(), - extensionRegistry); - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(m); - } else { - piiArrayBuilder_.addMessage(m); - } - break; - } // case 26 - case 34: { - com.google.protobuf.MapEntry - piiMap__ = input.readMessage( - PiiMapDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - internalGetMutablePiiMap().getMutableMap().put( - piiMap__.getKey(), piiMap__.getValue()); - break; - } // case 34 - case 40: { - height_ = input.readInt32(); - - break; - } // case 40 - case 48: { - version_ = input.readInt32(); - - break; - } // case 48 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - private int bitField0_; - - private java.lang.Object name_ = ""; - /** - * string name = 1; - * @return The name. - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string name = 1; - * @return The bytes for name. - */ - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string name = 1; - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - name_ = value; - onChanged(); - return this; - } - /** - * string name = 1; - * @return This builder for chaining. - */ - public Builder clearName() { - - name_ = getDefaultInstance().getName(); - onChanged(); - return this; - } - /** - * string name = 1; - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.LazyStringList ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureSsnIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - ssn_ = new com.google.protobuf.LazyStringArrayList(ssn_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated string ssn = 2; - * @return A list containing the ssn. - */ - public com.google.protobuf.ProtocolStringList - getSsnList() { - return ssn_.getUnmodifiableView(); - } - /** - * repeated string ssn = 2; - * @return The count of ssn. - */ - public int getSsnCount() { - return ssn_.size(); - } - /** - * repeated string ssn = 2; - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - public java.lang.String getSsn(int index) { - return ssn_.get(index); - } - /** - * repeated string ssn = 2; - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - public com.google.protobuf.ByteString - getSsnBytes(int index) { - return ssn_.getByteString(index); - } - /** - * repeated string ssn = 2; - * @param index The index to set the value at. - * @param value The ssn to set. - * @return This builder for chaining. - */ - public Builder setSsn( - int index, java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureSsnIsMutable(); - ssn_.set(index, value); - onChanged(); - return this; - } - /** - * repeated string ssn = 2; - * @param value The ssn to add. - * @return This builder for chaining. - */ - public Builder addSsn( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureSsnIsMutable(); - ssn_.add(value); - onChanged(); - return this; - } - /** - * repeated string ssn = 2; - * @param values The ssn to add. - * @return This builder for chaining. - */ - public Builder addAllSsn( - java.lang.Iterable values) { - ensureSsnIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, ssn_); - onChanged(); - return this; - } - /** - * repeated string ssn = 2; - * @return This builder for chaining. - */ - public Builder clearSsn() { - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - * repeated string ssn = 2; - * @param value The bytes of the ssn to add. - * @return This builder for chaining. - */ - public Builder addSsnBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - ensureSsnIsMutable(); - ssn_.add(value); - onChanged(); - return this; - } - - private java.util.List piiArray_ = - java.util.Collections.emptyList(); - private void ensurePiiArrayIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - piiArray_ = new java.util.ArrayList(piiArray_); - bitField0_ |= 0x00000002; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder> piiArrayBuilder_; - - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List getPiiArrayList() { - if (piiArrayBuilder_ == null) { - return java.util.Collections.unmodifiableList(piiArray_); - } else { - return piiArrayBuilder_.getMessageList(); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public int getPiiArrayCount() { - if (piiArrayBuilder_ == null) { - return piiArray_.size(); - } else { - return piiArrayBuilder_.getCount(); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiArray(int index) { - if (piiArrayBuilder_ == null) { - return piiArray_.get(index); - } else { - return piiArrayBuilder_.getMessage(index); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder setPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.set(index, value); - onChanged(); - } else { - piiArrayBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder setPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.set(index, builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray(io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.add(value); - onChanged(); - } else { - piiArrayBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.add(index, value); - onChanged(); - } else { - piiArrayBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(index, builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addAllPiiArray( - java.lang.Iterable values) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, piiArray_); - onChanged(); - } else { - piiArrayBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder clearPiiArray() { - if (piiArrayBuilder_ == null) { - piiArray_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - } else { - piiArrayBuilder_.clear(); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder removePiiArray(int index) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.remove(index); - onChanged(); - } else { - piiArrayBuilder_.remove(index); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder getPiiArrayBuilder( - int index) { - return getPiiArrayFieldBuilder().getBuilder(index); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder getPiiArrayOrBuilder( - int index) { - if (piiArrayBuilder_ == null) { - return piiArray_.get(index); } else { - return piiArrayBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List - getPiiArrayOrBuilderList() { - if (piiArrayBuilder_ != null) { - return piiArrayBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(piiArray_); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder addPiiArrayBuilder() { - return getPiiArrayFieldBuilder().addBuilder( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder addPiiArrayBuilder( - int index) { - return getPiiArrayFieldBuilder().addBuilder( - index, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List - getPiiArrayBuilderList() { - return getPiiArrayFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder> - getPiiArrayFieldBuilder() { - if (piiArrayBuilder_ == null) { - piiArrayBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder>( - piiArray_, - ((bitField0_ & 0x00000002) != 0), - getParentForChildren(), - isClean()); - piiArray_ = null; - } - return piiArrayBuilder_; - } - - private com.google.protobuf.MapField< - java.lang.String, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii> piiMap_; - private com.google.protobuf.MapField - internalGetPiiMap() { - if (piiMap_ == null) { - return com.google.protobuf.MapField.emptyMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - return piiMap_; - } - private com.google.protobuf.MapField - internalGetMutablePiiMap() { - onChanged();; - if (piiMap_ == null) { - piiMap_ = com.google.protobuf.MapField.newMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - if (!piiMap_.isMutable()) { - piiMap_ = piiMap_.copy(); - } - return piiMap_; - } - - public int getPiiMapCount() { - return internalGetPiiMap().getMap().size(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - @java.lang.Override - public boolean containsPiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetPiiMap().getMap().containsKey(key); - } - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getPiiMap() { - return getPiiMapMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public java.util.Map getPiiMapMap() { - return internalGetPiiMap().getMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getPiiMapOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearPiiMap() { - internalGetMutablePiiMap().getMutableMap() - .clear(); - return this; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - public Builder removePiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - internalGetMutablePiiMap().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutablePiiMap() { - return internalGetMutablePiiMap().getMutableMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - public Builder putPiiMap( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii value) { - if (key == null) { throw new NullPointerException("map key"); } - if (value == null) { - throw new NullPointerException("map value"); -} - - internalGetMutablePiiMap().getMutableMap() - .put(key, value); - return this; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - public Builder putAllPiiMap( - java.util.Map values) { - internalGetMutablePiiMap().getMutableMap() - .putAll(values); - return this; - } - - private int height_ ; - /** - * int32 height = 5; - * @return The height. - */ - @java.lang.Override - public int getHeight() { - return height_; - } - /** - * int32 height = 5; - * @param value The height to set. - * @return This builder for chaining. - */ - public Builder setHeight(int value) { - - height_ = value; - onChanged(); - return this; - } - /** - * int32 height = 5; - * @return This builder for chaining. - */ - public Builder clearHeight() { - - height_ = 0; - onChanged(); - return this; - } - - private int version_ ; - /** - * int32 version = 6; - * @return The version. - */ - @java.lang.Override - public int getVersion() { - return version_; - } - /** - * int32 version = 6; - * @param value The version to set. - * @return This builder for chaining. - */ - public Builder setVersion(int value) { - - version_ = value; - onChanged(); - return this; - } - /** - * int32 version = 6; - * @return This builder for chaining. - */ - public Builder clearVersion() { - - version_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.schemaregistry.rules.NewWidget) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.schemaregistry.rules.NewWidget) - private static final io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget(); - } - - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public NewWidget parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.NewWidget getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface PiiOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.schemaregistry.rules.Pii) - com.google.protobuf.MessageOrBuilder { - - /** - * string pii = 1; - * @return The pii. - */ - java.lang.String getPii(); - /** - * string pii = 1; - * @return The bytes for pii. - */ - com.google.protobuf.ByteString - getPiiBytes(); - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Pii} - */ - public static final class Pii extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.schemaregistry.rules.Pii) - PiiOrBuilder { - private static final long serialVersionUID = 0L; - // Use Pii.newBuilder() to construct. - private Pii(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Pii() { - pii_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Pii(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.class, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder.class); - } - - public static final int PII_FIELD_NUMBER = 1; - private volatile java.lang.Object pii_; - /** - * string pii = 1; - * @return The pii. - */ - @java.lang.Override - public java.lang.String getPii() { - java.lang.Object ref = pii_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - pii_ = s; - return s; - } - } - /** - * string pii = 1; - * @return The bytes for pii. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getPiiBytes() { - java.lang.Object ref = pii_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - pii_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pii_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, pii_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pii_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, pii_); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii)) { - return super.equals(obj); - } - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii other = (io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii) obj; - - if (!getPii() - .equals(other.getPii())) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + PII_FIELD_NUMBER; - hash = (53 * hash) + getPii().hashCode(); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Pii} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.schemaregistry.rules.Pii) - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.PiiOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.class, io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.Builder.class); - } - - // Construct using io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - pii_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getDefaultInstanceForType() { - return io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii build() { - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii buildPartial() { - io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii result = new io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii(this); - result.pii_ = pii_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii) { - return mergeFrom((io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii other) { - if (other == io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii.getDefaultInstance()) return this; - if (!other.getPii().isEmpty()) { - pii_ = other.pii_; - onChanged(); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - pii_ = input.readStringRequireUtf8(); - - break; - } // case 10 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - - private java.lang.Object pii_ = ""; - /** - * string pii = 1; - * @return The pii. - */ - public java.lang.String getPii() { - java.lang.Object ref = pii_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - pii_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string pii = 1; - * @return The bytes for pii. - */ - public com.google.protobuf.ByteString - getPiiBytes() { - java.lang.Object ref = pii_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - pii_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string pii = 1; - * @param value The pii to set. - * @return This builder for chaining. - */ - public Builder setPii( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - pii_ = value; - onChanged(); - return this; - } - /** - * string pii = 1; - * @return This builder for chaining. - */ - public Builder clearPii() { - - pii_ = getDefaultInstance().getPii(); - onChanged(); - return this; - } - /** - * string pii = 1; - * @param value The bytes for pii to set. - * @return This builder for chaining. - */ - public Builder setPiiBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - pii_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.schemaregistry.rules.Pii) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.schemaregistry.rules.Pii) - private static final io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii(); - } - - public static io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Pii parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.NewWidgetProto.Pii getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_PiiMapEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_PiiMapEntry_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\017NewWidget.proto\022\'io.confluent.kafka.sc" + - "hemaregistry.rules\"\266\002\n\tNewWidget\022\014\n\004name" + - "\030\001 \001(\t\022\013\n\003ssn\030\002 \003(\t\022?\n\tpii_array\030\003 \003(\0132," + - ".io.confluent.kafka.schemaregistry.rules" + - ".Pii\022O\n\007pii_map\030\004 \003(\0132>.io.confluent.kaf" + - "ka.schemaregistry.rules.NewWidget.PiiMap" + - "Entry\022\016\n\006height\030\005 \001(\005\022\017\n\007version\030\006 \001(\005\032[" + - "\n\013PiiMapEntry\022\013\n\003key\030\001 \001(\t\022;\n\005value\030\002 \001(" + - "\0132,.io.confluent.kafka.schemaregistry.ru" + - "les.Pii:\0028\001\"\022\n\003Pii\022\013\n\003pii\030\001 \001(\tB;\n\'io.co" + - "nfluent.kafka.schemaregistry.rulesB\016NewW" + - "idgetProtoP\000b\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - }); - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor, - new java.lang.String[] { "Name", "Ssn", "PiiArray", "PiiMap", "Height", "Version", }); - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_PiiMapEntry_descriptor = - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_descriptor.getNestedTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_PiiMapEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_NewWidget_PiiMapEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor, - new java.lang.String[] { "Pii", }); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/PiiProto.java b/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/PiiProto.java deleted file mode 100644 index 91160e08dcc..00000000000 --- a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/PiiProto.java +++ /dev/null @@ -1,606 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: Pii.proto - -package io.confluent.kafka.schemaregistry.rules; - -public final class PiiProto { - private PiiProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface PiiOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.schemaregistry.rules.Pii) - com.google.protobuf.MessageOrBuilder { - - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The pii. - */ - java.lang.String getPii(); - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for pii. - */ - com.google.protobuf.ByteString - getPiiBytes(); - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Pii} - */ - public static final class Pii extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.schemaregistry.rules.Pii) - PiiOrBuilder { - private static final long serialVersionUID = 0L; - // Use Pii.newBuilder() to construct. - private Pii(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Pii() { - pii_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Pii(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.PiiProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.PiiProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.class, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder.class); - } - - public static final int PII_FIELD_NUMBER = 1; - private volatile java.lang.Object pii_; - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The pii. - */ - @java.lang.Override - public java.lang.String getPii() { - java.lang.Object ref = pii_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - pii_ = s; - return s; - } - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for pii. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getPiiBytes() { - java.lang.Object ref = pii_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - pii_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pii_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, pii_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pii_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, pii_); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.schemaregistry.rules.PiiProto.Pii)) { - return super.equals(obj); - } - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii other = (io.confluent.kafka.schemaregistry.rules.PiiProto.Pii) obj; - - if (!getPii() - .equals(other.getPii())) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + PII_FIELD_NUMBER; - hash = (53 * hash) + getPii().hashCode(); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.schemaregistry.rules.PiiProto.Pii prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Pii} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.schemaregistry.rules.Pii) - io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.PiiProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.PiiProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.class, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder.class); - } - - // Construct using io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - pii_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.schemaregistry.rules.PiiProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getDefaultInstanceForType() { - return io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii build() { - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii buildPartial() { - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii result = new io.confluent.kafka.schemaregistry.rules.PiiProto.Pii(this); - result.pii_ = pii_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.schemaregistry.rules.PiiProto.Pii) { - return mergeFrom((io.confluent.kafka.schemaregistry.rules.PiiProto.Pii)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.schemaregistry.rules.PiiProto.Pii other) { - if (other == io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.getDefaultInstance()) return this; - if (!other.getPii().isEmpty()) { - pii_ = other.pii_; - onChanged(); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - pii_ = input.readStringRequireUtf8(); - - break; - } // case 10 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - - private java.lang.Object pii_ = ""; - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The pii. - */ - public java.lang.String getPii() { - java.lang.Object ref = pii_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - pii_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for pii. - */ - public com.google.protobuf.ByteString - getPiiBytes() { - java.lang.Object ref = pii_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - pii_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @param value The pii to set. - * @return This builder for chaining. - */ - public Builder setPii( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - pii_ = value; - onChanged(); - return this; - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearPii() { - - pii_ = getDefaultInstance().getPii(); - onChanged(); - return this; - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @param value The bytes for pii to set. - * @return This builder for chaining. - */ - public Builder setPiiBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - pii_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.schemaregistry.rules.Pii) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.schemaregistry.rules.Pii) - private static final io.confluent.kafka.schemaregistry.rules.PiiProto.Pii DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.schemaregistry.rules.PiiProto.Pii(); - } - - public static io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Pii parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\tPii.proto\022\'io.confluent.kafka.schemare" + - "gistry.rules\032\024confluent/meta.proto\"\034\n\003Pi" + - "i\022\025\n\003pii\030\001 \001(\tB\010\202D\005\032\003PIIB5\n\'io.confluent" + - ".kafka.schemaregistry.rulesB\010PiiProtoP\000b" + - "\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - }); - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor, - new java.lang.String[] { "Pii", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetProto.java b/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetProto.java deleted file mode 100644 index 26db75e09c2..00000000000 --- a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetProto.java +++ /dev/null @@ -1,2227 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: Widget.proto - -package io.confluent.kafka.schemaregistry.rules; - -public final class WidgetProto { - private WidgetProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface WidgetOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.schemaregistry.rules.Widget) - com.google.protobuf.MessageOrBuilder { - - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The name. - */ - java.lang.String getName(); - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return A list containing the ssn. - */ - java.util.List - getSsnList(); - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return The count of ssn. - */ - int getSsnCount(); - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - java.lang.String getSsn(int index); - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - com.google.protobuf.ByteString - getSsnBytes(int index); - - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - java.util.List - getPiiArrayList(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiArray(int index); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - int getPiiArrayCount(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - java.util.List - getPiiArrayOrBuilderList(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder getPiiArrayOrBuilder( - int index); - - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - int getPiiMapCount(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - boolean containsPiiMap( - java.lang.String key); - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getPiiMap(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - java.util.Map - getPiiMapMap(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii defaultValue); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiMapOrThrow( - java.lang.String key); - - /** - * int32 size = 5; - * @return The size. - */ - int getSize(); - - /** - * int32 version = 6; - * @return The version. - */ - int getVersion(); - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Widget} - */ - public static final class Widget extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.schemaregistry.rules.Widget) - WidgetOrBuilder { - private static final long serialVersionUID = 0L; - // Use Widget.newBuilder() to construct. - private Widget(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Widget() { - name_ = ""; - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - piiArray_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Widget(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 4: - return internalGetPiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Widget_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.class, io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.Builder.class); - } - - public static final int NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object name_; - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SSN_FIELD_NUMBER = 2; - private com.google.protobuf.LazyStringList ssn_; - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return A list containing the ssn. - */ - public com.google.protobuf.ProtocolStringList - getSsnList() { - return ssn_; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return The count of ssn. - */ - public int getSsnCount() { - return ssn_.size(); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - public java.lang.String getSsn(int index) { - return ssn_.get(index); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - public com.google.protobuf.ByteString - getSsnBytes(int index) { - return ssn_.getByteString(index); - } - - public static final int PII_ARRAY_FIELD_NUMBER = 3; - private java.util.List piiArray_; - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public java.util.List getPiiArrayList() { - return piiArray_; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public java.util.List - getPiiArrayOrBuilderList() { - return piiArray_; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public int getPiiArrayCount() { - return piiArray_.size(); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiArray(int index) { - return piiArray_.get(index); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder getPiiArrayOrBuilder( - int index) { - return piiArray_.get(index); - } - - public static final int PII_MAP_FIELD_NUMBER = 4; - private static final class PiiMapDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.String, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Widget_PiiMapEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.getDefaultInstance()); - } - private com.google.protobuf.MapField< - java.lang.String, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii> piiMap_; - private com.google.protobuf.MapField - internalGetPiiMap() { - if (piiMap_ == null) { - return com.google.protobuf.MapField.emptyMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - return piiMap_; - } - - public int getPiiMapCount() { - return internalGetPiiMap().getMap().size(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - @java.lang.Override - public boolean containsPiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetPiiMap().getMap().containsKey(key); - } - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getPiiMap() { - return getPiiMapMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public java.util.Map getPiiMapMap() { - return internalGetPiiMap().getMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiMapOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int SIZE_FIELD_NUMBER = 5; - private int size_; - /** - * int32 size = 5; - * @return The size. - */ - @java.lang.Override - public int getSize() { - return size_; - } - - public static final int VERSION_FIELD_NUMBER = 6; - private int version_; - /** - * int32 version = 6; - * @return The version. - */ - @java.lang.Override - public int getVersion() { - return version_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); - } - for (int i = 0; i < ssn_.size(); i++) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, ssn_.getRaw(i)); - } - for (int i = 0; i < piiArray_.size(); i++) { - output.writeMessage(3, piiArray_.get(i)); - } - com.google.protobuf.GeneratedMessageV3 - .serializeStringMapTo( - output, - internalGetPiiMap(), - PiiMapDefaultEntryHolder.defaultEntry, - 4); - if (size_ != 0) { - output.writeInt32(5, size_); - } - if (version_ != 0) { - output.writeInt32(6, version_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); - } - { - int dataSize = 0; - for (int i = 0; i < ssn_.size(); i++) { - dataSize += computeStringSizeNoTag(ssn_.getRaw(i)); - } - size += dataSize; - size += 1 * getSsnList().size(); - } - for (int i = 0; i < piiArray_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, piiArray_.get(i)); - } - for (java.util.Map.Entry entry - : internalGetPiiMap().getMap().entrySet()) { - com.google.protobuf.MapEntry - piiMap__ = PiiMapDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, piiMap__); - } - if (size_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(5, size_); - } - if (version_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(6, version_); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget)) { - return super.equals(obj); - } - io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget other = (io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget) obj; - - if (!getName() - .equals(other.getName())) return false; - if (!getSsnList() - .equals(other.getSsnList())) return false; - if (!getPiiArrayList() - .equals(other.getPiiArrayList())) return false; - if (!internalGetPiiMap().equals( - other.internalGetPiiMap())) return false; - if (getSize() - != other.getSize()) return false; - if (getVersion() - != other.getVersion()) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + NAME_FIELD_NUMBER; - hash = (53 * hash) + getName().hashCode(); - if (getSsnCount() > 0) { - hash = (37 * hash) + SSN_FIELD_NUMBER; - hash = (53 * hash) + getSsnList().hashCode(); - } - if (getPiiArrayCount() > 0) { - hash = (37 * hash) + PII_ARRAY_FIELD_NUMBER; - hash = (53 * hash) + getPiiArrayList().hashCode(); - } - if (!internalGetPiiMap().getMap().isEmpty()) { - hash = (37 * hash) + PII_MAP_FIELD_NUMBER; - hash = (53 * hash) + internalGetPiiMap().hashCode(); - } - hash = (37 * hash) + SIZE_FIELD_NUMBER; - hash = (53 * hash) + getSize(); - hash = (37 * hash) + VERSION_FIELD_NUMBER; - hash = (53 * hash) + getVersion(); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Widget} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.schemaregistry.rules.Widget) - io.confluent.kafka.schemaregistry.rules.WidgetProto.WidgetOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 4: - return internalGetPiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 4: - return internalGetMutablePiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Widget_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.class, io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.Builder.class); - } - - // Construct using io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - name_ = ""; - - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - if (piiArrayBuilder_ == null) { - piiArray_ = java.util.Collections.emptyList(); - } else { - piiArray_ = null; - piiArrayBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000002); - internalGetMutablePiiMap().clear(); - size_ = 0; - - version_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget getDefaultInstanceForType() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget build() { - io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget buildPartial() { - io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget result = new io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget(this); - int from_bitField0_ = bitField0_; - result.name_ = name_; - if (((bitField0_ & 0x00000001) != 0)) { - ssn_ = ssn_.getUnmodifiableView(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.ssn_ = ssn_; - if (piiArrayBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0)) { - piiArray_ = java.util.Collections.unmodifiableList(piiArray_); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.piiArray_ = piiArray_; - } else { - result.piiArray_ = piiArrayBuilder_.build(); - } - result.piiMap_ = internalGetPiiMap(); - result.piiMap_.makeImmutable(); - result.size_ = size_; - result.version_ = version_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget) { - return mergeFrom((io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget other) { - if (other == io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget.getDefaultInstance()) return this; - if (!other.getName().isEmpty()) { - name_ = other.name_; - onChanged(); - } - if (!other.ssn_.isEmpty()) { - if (ssn_.isEmpty()) { - ssn_ = other.ssn_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureSsnIsMutable(); - ssn_.addAll(other.ssn_); - } - onChanged(); - } - if (piiArrayBuilder_ == null) { - if (!other.piiArray_.isEmpty()) { - if (piiArray_.isEmpty()) { - piiArray_ = other.piiArray_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensurePiiArrayIsMutable(); - piiArray_.addAll(other.piiArray_); - } - onChanged(); - } - } else { - if (!other.piiArray_.isEmpty()) { - if (piiArrayBuilder_.isEmpty()) { - piiArrayBuilder_.dispose(); - piiArrayBuilder_ = null; - piiArray_ = other.piiArray_; - bitField0_ = (bitField0_ & ~0x00000002); - piiArrayBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getPiiArrayFieldBuilder() : null; - } else { - piiArrayBuilder_.addAllMessages(other.piiArray_); - } - } - } - internalGetMutablePiiMap().mergeFrom( - other.internalGetPiiMap()); - if (other.getSize() != 0) { - setSize(other.getSize()); - } - if (other.getVersion() != 0) { - setVersion(other.getVersion()); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - name_ = input.readStringRequireUtf8(); - - break; - } // case 10 - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - ensureSsnIsMutable(); - ssn_.add(s); - break; - } // case 18 - case 26: { - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii m = - input.readMessage( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.parser(), - extensionRegistry); - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(m); - } else { - piiArrayBuilder_.addMessage(m); - } - break; - } // case 26 - case 34: { - com.google.protobuf.MapEntry - piiMap__ = input.readMessage( - PiiMapDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - internalGetMutablePiiMap().getMutableMap().put( - piiMap__.getKey(), piiMap__.getValue()); - break; - } // case 34 - case 40: { - size_ = input.readInt32(); - - break; - } // case 40 - case 48: { - version_ = input.readInt32(); - - break; - } // case 48 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - private int bitField0_; - - private java.lang.Object name_ = ""; - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The name. - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for name. - */ - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - name_ = value; - onChanged(); - return this; - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearName() { - - name_ = getDefaultInstance().getName(); - onChanged(); - return this; - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.LazyStringList ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureSsnIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - ssn_ = new com.google.protobuf.LazyStringArrayList(ssn_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return A list containing the ssn. - */ - public com.google.protobuf.ProtocolStringList - getSsnList() { - return ssn_.getUnmodifiableView(); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return The count of ssn. - */ - public int getSsnCount() { - return ssn_.size(); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - public java.lang.String getSsn(int index) { - return ssn_.get(index); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - public com.google.protobuf.ByteString - getSsnBytes(int index) { - return ssn_.getByteString(index); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index to set the value at. - * @param value The ssn to set. - * @return This builder for chaining. - */ - public Builder setSsn( - int index, java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureSsnIsMutable(); - ssn_.set(index, value); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param value The ssn to add. - * @return This builder for chaining. - */ - public Builder addSsn( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureSsnIsMutable(); - ssn_.add(value); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param values The ssn to add. - * @return This builder for chaining. - */ - public Builder addAllSsn( - java.lang.Iterable values) { - ensureSsnIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, ssn_); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearSsn() { - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param value The bytes of the ssn to add. - * @return This builder for chaining. - */ - public Builder addSsnBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - ensureSsnIsMutable(); - ssn_.add(value); - onChanged(); - return this; - } - - private java.util.List piiArray_ = - java.util.Collections.emptyList(); - private void ensurePiiArrayIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - piiArray_ = new java.util.ArrayList(piiArray_); - bitField0_ |= 0x00000002; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder> piiArrayBuilder_; - - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List getPiiArrayList() { - if (piiArrayBuilder_ == null) { - return java.util.Collections.unmodifiableList(piiArray_); - } else { - return piiArrayBuilder_.getMessageList(); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public int getPiiArrayCount() { - if (piiArrayBuilder_ == null) { - return piiArray_.size(); - } else { - return piiArrayBuilder_.getCount(); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiArray(int index) { - if (piiArrayBuilder_ == null) { - return piiArray_.get(index); - } else { - return piiArrayBuilder_.getMessage(index); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder setPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.set(index, value); - onChanged(); - } else { - piiArrayBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder setPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.set(index, builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray(io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.add(value); - onChanged(); - } else { - piiArrayBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.add(index, value); - onChanged(); - } else { - piiArrayBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(index, builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addAllPiiArray( - java.lang.Iterable values) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, piiArray_); - onChanged(); - } else { - piiArrayBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder clearPiiArray() { - if (piiArrayBuilder_ == null) { - piiArray_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - } else { - piiArrayBuilder_.clear(); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder removePiiArray(int index) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.remove(index); - onChanged(); - } else { - piiArrayBuilder_.remove(index); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder getPiiArrayBuilder( - int index) { - return getPiiArrayFieldBuilder().getBuilder(index); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder getPiiArrayOrBuilder( - int index) { - if (piiArrayBuilder_ == null) { - return piiArray_.get(index); } else { - return piiArrayBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List - getPiiArrayOrBuilderList() { - if (piiArrayBuilder_ != null) { - return piiArrayBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(piiArray_); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder addPiiArrayBuilder() { - return getPiiArrayFieldBuilder().addBuilder( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder addPiiArrayBuilder( - int index) { - return getPiiArrayFieldBuilder().addBuilder( - index, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List - getPiiArrayBuilderList() { - return getPiiArrayFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder> - getPiiArrayFieldBuilder() { - if (piiArrayBuilder_ == null) { - piiArrayBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder>( - piiArray_, - ((bitField0_ & 0x00000002) != 0), - getParentForChildren(), - isClean()); - piiArray_ = null; - } - return piiArrayBuilder_; - } - - private com.google.protobuf.MapField< - java.lang.String, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii> piiMap_; - private com.google.protobuf.MapField - internalGetPiiMap() { - if (piiMap_ == null) { - return com.google.protobuf.MapField.emptyMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - return piiMap_; - } - private com.google.protobuf.MapField - internalGetMutablePiiMap() { - onChanged();; - if (piiMap_ == null) { - piiMap_ = com.google.protobuf.MapField.newMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - if (!piiMap_.isMutable()) { - piiMap_ = piiMap_.copy(); - } - return piiMap_; - } - - public int getPiiMapCount() { - return internalGetPiiMap().getMap().size(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - @java.lang.Override - public boolean containsPiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetPiiMap().getMap().containsKey(key); - } - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getPiiMap() { - return getPiiMapMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public java.util.Map getPiiMapMap() { - return internalGetPiiMap().getMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getPiiMapOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearPiiMap() { - internalGetMutablePiiMap().getMutableMap() - .clear(); - return this; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - public Builder removePiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - internalGetMutablePiiMap().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutablePiiMap() { - return internalGetMutablePiiMap().getMutableMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - public Builder putPiiMap( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii value) { - if (key == null) { throw new NullPointerException("map key"); } - if (value == null) { - throw new NullPointerException("map value"); -} - - internalGetMutablePiiMap().getMutableMap() - .put(key, value); - return this; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - public Builder putAllPiiMap( - java.util.Map values) { - internalGetMutablePiiMap().getMutableMap() - .putAll(values); - return this; - } - - private int size_ ; - /** - * int32 size = 5; - * @return The size. - */ - @java.lang.Override - public int getSize() { - return size_; - } - /** - * int32 size = 5; - * @param value The size to set. - * @return This builder for chaining. - */ - public Builder setSize(int value) { - - size_ = value; - onChanged(); - return this; - } - /** - * int32 size = 5; - * @return This builder for chaining. - */ - public Builder clearSize() { - - size_ = 0; - onChanged(); - return this; - } - - private int version_ ; - /** - * int32 version = 6; - * @return The version. - */ - @java.lang.Override - public int getVersion() { - return version_; - } - /** - * int32 version = 6; - * @param value The version to set. - * @return This builder for chaining. - */ - public Builder setVersion(int value) { - - version_ = value; - onChanged(); - return this; - } - /** - * int32 version = 6; - * @return This builder for chaining. - */ - public Builder clearVersion() { - - version_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.schemaregistry.rules.Widget) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.schemaregistry.rules.Widget) - private static final io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget(); - } - - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Widget parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Widget getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - public interface PiiOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.schemaregistry.rules.Pii) - com.google.protobuf.MessageOrBuilder { - - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The pii. - */ - java.lang.String getPii(); - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for pii. - */ - com.google.protobuf.ByteString - getPiiBytes(); - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Pii} - */ - public static final class Pii extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.schemaregistry.rules.Pii) - PiiOrBuilder { - private static final long serialVersionUID = 0L; - // Use Pii.newBuilder() to construct. - private Pii(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private Pii() { - pii_ = ""; - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new Pii(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.class, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder.class); - } - - public static final int PII_FIELD_NUMBER = 1; - private volatile java.lang.Object pii_; - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The pii. - */ - @java.lang.Override - public java.lang.String getPii() { - java.lang.Object ref = pii_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - pii_ = s; - return s; - } - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for pii. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getPiiBytes() { - java.lang.Object ref = pii_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - pii_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pii_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, pii_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(pii_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, pii_); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii)) { - return super.equals(obj); - } - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii other = (io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii) obj; - - if (!getPii() - .equals(other.getPii())) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + PII_FIELD_NUMBER; - hash = (53 * hash) + getPii().hashCode(); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.Pii} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.schemaregistry.rules.Pii) - io.confluent.kafka.schemaregistry.rules.WidgetProto.PiiOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.class, io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.Builder.class); - } - - // Construct using io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - pii_ = ""; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getDefaultInstanceForType() { - return io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii build() { - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii buildPartial() { - io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii result = new io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii(this); - result.pii_ = pii_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii) { - return mergeFrom((io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii other) { - if (other == io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii.getDefaultInstance()) return this; - if (!other.getPii().isEmpty()) { - pii_ = other.pii_; - onChanged(); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - pii_ = input.readStringRequireUtf8(); - - break; - } // case 10 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - - private java.lang.Object pii_ = ""; - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The pii. - */ - public java.lang.String getPii() { - java.lang.Object ref = pii_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - pii_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for pii. - */ - public com.google.protobuf.ByteString - getPiiBytes() { - java.lang.Object ref = pii_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - pii_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @param value The pii to set. - * @return This builder for chaining. - */ - public Builder setPii( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - pii_ = value; - onChanged(); - return this; - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearPii() { - - pii_ = getDefaultInstance().getPii(); - onChanged(); - return this; - } - /** - * string pii = 1 [(.confluent.field_meta) = { ... } - * @param value The bytes for pii to set. - * @return This builder for chaining. - */ - public Builder setPiiBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - pii_ = value; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.schemaregistry.rules.Pii) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.schemaregistry.rules.Pii) - private static final io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii(); - } - - public static io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public Pii parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetProto.Pii getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_PiiMapEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_PiiMapEntry_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\014Widget.proto\022\'io.confluent.kafka.schem" + - "aregistry.rules\032\024confluent/meta.proto\"\331\002" + - "\n\006Widget\022!\n\004name\030\001 \001(\tB\023\202D\005\032\003PII\202D\010\032\006PUB" + - "LIC\022!\n\003ssn\030\002 \003(\tB\024\202D\005\032\003PII\202D\t\032\007PRIVATE\022?" + - "\n\tpii_array\030\003 \003(\0132,.io.confluent.kafka.s" + - "chemaregistry.rules.Pii\022L\n\007pii_map\030\004 \003(\013" + - "2;.io.confluent.kafka.schemaregistry.rul" + - "es.Widget.PiiMapEntry\022\014\n\004size\030\005 \001(\005\022\017\n\007v" + - "ersion\030\006 \001(\005\032[\n\013PiiMapEntry\022\013\n\003key\030\001 \001(\t" + - "\022;\n\005value\030\002 \001(\0132,.io.confluent.kafka.sch" + - "emaregistry.rules.Pii:\0028\001\"\034\n\003Pii\022\025\n\003pii\030" + - "\001 \001(\tB\010\202D\005\032\003PIIB8\n\'io.confluent.kafka.sc" + - "hemaregistry.rulesB\013WidgetProtoP\000b\006proto" + - "3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - }); - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor, - new java.lang.String[] { "Name", "Ssn", "PiiArray", "PiiMap", "Size", "Version", }); - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_PiiMapEntry_descriptor = - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_descriptor.getNestedTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_PiiMapEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_Widget_PiiMapEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor = - getDescriptor().getMessageTypes().get(1); - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_Pii_descriptor, - new java.lang.String[] { "Pii", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetWithRefProto.java b/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetWithRefProto.java deleted file mode 100644 index b04acef7da0..00000000000 --- a/schema-rules/src/test/java/io/confluent/kafka/schemaregistry/rules/WidgetWithRefProto.java +++ /dev/null @@ -1,1669 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: WidgetWithRef.proto - -package io.confluent.kafka.schemaregistry.rules; - -public final class WidgetWithRefProto { - private WidgetWithRefProto() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions( - (com.google.protobuf.ExtensionRegistryLite) registry); - } - public interface WidgetWithRefOrBuilder extends - // @@protoc_insertion_point(interface_extends:io.confluent.kafka.schemaregistry.rules.WidgetWithRef) - com.google.protobuf.MessageOrBuilder { - - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The name. - */ - java.lang.String getName(); - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return A list containing the ssn. - */ - java.util.List - getSsnList(); - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return The count of ssn. - */ - int getSsnCount(); - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - java.lang.String getSsn(int index); - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - com.google.protobuf.ByteString - getSsnBytes(int index); - - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - java.util.List - getPiiArrayList(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiArray(int index); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - int getPiiArrayCount(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - java.util.List - getPiiArrayOrBuilderList(); - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder getPiiArrayOrBuilder( - int index); - - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - int getPiiMapCount(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - boolean containsPiiMap( - java.lang.String key); - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getPiiMap(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - java.util.Map - getPiiMapMap(); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii defaultValue); - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiMapOrThrow( - java.lang.String key); - - /** - * int32 size = 5; - * @return The size. - */ - int getSize(); - - /** - * int32 version = 6; - * @return The version. - */ - int getVersion(); - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.WidgetWithRef} - */ - public static final class WidgetWithRef extends - com.google.protobuf.GeneratedMessageV3 implements - // @@protoc_insertion_point(message_implements:io.confluent.kafka.schemaregistry.rules.WidgetWithRef) - WidgetWithRefOrBuilder { - private static final long serialVersionUID = 0L; - // Use WidgetWithRef.newBuilder() to construct. - private WidgetWithRef(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - private WidgetWithRef() { - name_ = ""; - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - piiArray_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance( - UnusedPrivateParameter unused) { - return new WidgetWithRef(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - @java.lang.Override - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 4: - return internalGetPiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.class, io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.Builder.class); - } - - public static final int NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object name_; - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int SSN_FIELD_NUMBER = 2; - private com.google.protobuf.LazyStringList ssn_; - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return A list containing the ssn. - */ - public com.google.protobuf.ProtocolStringList - getSsnList() { - return ssn_; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return The count of ssn. - */ - public int getSsnCount() { - return ssn_.size(); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - public java.lang.String getSsn(int index) { - return ssn_.get(index); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - public com.google.protobuf.ByteString - getSsnBytes(int index) { - return ssn_.getByteString(index); - } - - public static final int PII_ARRAY_FIELD_NUMBER = 3; - private java.util.List piiArray_; - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public java.util.List getPiiArrayList() { - return piiArray_; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public java.util.List - getPiiArrayOrBuilderList() { - return piiArray_; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public int getPiiArrayCount() { - return piiArray_.size(); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiArray(int index) { - return piiArray_.get(index); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder getPiiArrayOrBuilder( - int index) { - return piiArray_.get(index); - } - - public static final int PII_MAP_FIELD_NUMBER = 4; - private static final class PiiMapDefaultEntryHolder { - static final com.google.protobuf.MapEntry< - java.lang.String, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii> defaultEntry = - com.google.protobuf.MapEntry - .newDefaultInstance( - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_PiiMapEntry_descriptor, - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.MESSAGE, - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.getDefaultInstance()); - } - private com.google.protobuf.MapField< - java.lang.String, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii> piiMap_; - private com.google.protobuf.MapField - internalGetPiiMap() { - if (piiMap_ == null) { - return com.google.protobuf.MapField.emptyMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - return piiMap_; - } - - public int getPiiMapCount() { - return internalGetPiiMap().getMap().size(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - @java.lang.Override - public boolean containsPiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetPiiMap().getMap().containsKey(key); - } - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getPiiMap() { - return getPiiMapMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public java.util.Map getPiiMapMap() { - return internalGetPiiMap().getMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiMapOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public static final int SIZE_FIELD_NUMBER = 5; - private int size_; - /** - * int32 size = 5; - * @return The size. - */ - @java.lang.Override - public int getSize() { - return size_; - } - - public static final int VERSION_FIELD_NUMBER = 6; - private int version_; - /** - * int32 version = 6; - * @return The version. - */ - @java.lang.Override - public int getVersion() { - return version_; - } - - private byte memoizedIsInitialized = -1; - @java.lang.Override - public final boolean isInitialized() { - byte isInitialized = memoizedIsInitialized; - if (isInitialized == 1) return true; - if (isInitialized == 0) return false; - - memoizedIsInitialized = 1; - return true; - } - - @java.lang.Override - public void writeTo(com.google.protobuf.CodedOutputStream output) - throws java.io.IOException { - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); - } - for (int i = 0; i < ssn_.size(); i++) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, ssn_.getRaw(i)); - } - for (int i = 0; i < piiArray_.size(); i++) { - output.writeMessage(3, piiArray_.get(i)); - } - com.google.protobuf.GeneratedMessageV3 - .serializeStringMapTo( - output, - internalGetPiiMap(), - PiiMapDefaultEntryHolder.defaultEntry, - 4); - if (size_ != 0) { - output.writeInt32(5, size_); - } - if (version_ != 0) { - output.writeInt32(6, version_); - } - getUnknownFields().writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); - } - { - int dataSize = 0; - for (int i = 0; i < ssn_.size(); i++) { - dataSize += computeStringSizeNoTag(ssn_.getRaw(i)); - } - size += dataSize; - size += 1 * getSsnList().size(); - } - for (int i = 0; i < piiArray_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, piiArray_.get(i)); - } - for (java.util.Map.Entry entry - : internalGetPiiMap().getMap().entrySet()) { - com.google.protobuf.MapEntry - piiMap__ = PiiMapDefaultEntryHolder.defaultEntry.newBuilderForType() - .setKey(entry.getKey()) - .setValue(entry.getValue()) - .build(); - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(4, piiMap__); - } - if (size_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(5, size_); - } - if (version_ != 0) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(6, version_); - } - size += getUnknownFields().getSerializedSize(); - memoizedSize = size; - return size; - } - - @java.lang.Override - public boolean equals(final java.lang.Object obj) { - if (obj == this) { - return true; - } - if (!(obj instanceof io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef)) { - return super.equals(obj); - } - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef other = (io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef) obj; - - if (!getName() - .equals(other.getName())) return false; - if (!getSsnList() - .equals(other.getSsnList())) return false; - if (!getPiiArrayList() - .equals(other.getPiiArrayList())) return false; - if (!internalGetPiiMap().equals( - other.internalGetPiiMap())) return false; - if (getSize() - != other.getSize()) return false; - if (getVersion() - != other.getVersion()) return false; - if (!getUnknownFields().equals(other.getUnknownFields())) return false; - return true; - } - - @java.lang.Override - public int hashCode() { - if (memoizedHashCode != 0) { - return memoizedHashCode; - } - int hash = 41; - hash = (19 * hash) + getDescriptor().hashCode(); - hash = (37 * hash) + NAME_FIELD_NUMBER; - hash = (53 * hash) + getName().hashCode(); - if (getSsnCount() > 0) { - hash = (37 * hash) + SSN_FIELD_NUMBER; - hash = (53 * hash) + getSsnList().hashCode(); - } - if (getPiiArrayCount() > 0) { - hash = (37 * hash) + PII_ARRAY_FIELD_NUMBER; - hash = (53 * hash) + getPiiArrayList().hashCode(); - } - if (!internalGetPiiMap().getMap().isEmpty()) { - hash = (37 * hash) + PII_MAP_FIELD_NUMBER; - hash = (53 * hash) + internalGetPiiMap().hashCode(); - } - hash = (37 * hash) + SIZE_FIELD_NUMBER; - hash = (53 * hash) + getSize(); - hash = (37 * hash) + VERSION_FIELD_NUMBER; - hash = (53 * hash) + getVersion(); - hash = (29 * hash) + getUnknownFields().hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseDelimitedWithIOException(PARSER, input, extensionRegistry); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input); - } - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3 - .parseWithIOException(PARSER, input, extensionRegistry); - } - - @java.lang.Override - public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder() { - return DEFAULT_INSTANCE.toBuilder(); - } - public static Builder newBuilder(io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef prototype) { - return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); - } - @java.lang.Override - public Builder toBuilder() { - return this == DEFAULT_INSTANCE - ? new Builder() : new Builder().mergeFrom(this); - } - - @java.lang.Override - protected Builder newBuilderForType( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - Builder builder = new Builder(parent); - return builder; - } - /** - * Protobuf type {@code io.confluent.kafka.schemaregistry.rules.WidgetWithRef} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageV3.Builder implements - // @@protoc_insertion_point(builder_implements:io.confluent.kafka.schemaregistry.rules.WidgetWithRef) - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRefOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor; - } - - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMapField( - int number) { - switch (number) { - case 4: - return internalGetPiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @SuppressWarnings({"rawtypes"}) - protected com.google.protobuf.MapField internalGetMutableMapField( - int number) { - switch (number) { - case 4: - return internalGetMutablePiiMap(); - default: - throw new RuntimeException( - "Invalid map field number: " + number); - } - } - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_fieldAccessorTable - .ensureFieldAccessorsInitialized( - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.class, io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.Builder.class); - } - - // Construct using io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.newBuilder() - private Builder() { - - } - - private Builder( - com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - - } - @java.lang.Override - public Builder clear() { - super.clear(); - name_ = ""; - - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - if (piiArrayBuilder_ == null) { - piiArray_ = java.util.Collections.emptyList(); - } else { - piiArray_ = null; - piiArrayBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000002); - internalGetMutablePiiMap().clear(); - size_ = 0; - - version_ = 0; - - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor - getDescriptorForType() { - return io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef getDefaultInstanceForType() { - return io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.getDefaultInstance(); - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef build() { - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef buildPartial() { - io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef result = new io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef(this); - int from_bitField0_ = bitField0_; - result.name_ = name_; - if (((bitField0_ & 0x00000001) != 0)) { - ssn_ = ssn_.getUnmodifiableView(); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.ssn_ = ssn_; - if (piiArrayBuilder_ == null) { - if (((bitField0_ & 0x00000002) != 0)) { - piiArray_ = java.util.Collections.unmodifiableList(piiArray_); - bitField0_ = (bitField0_ & ~0x00000002); - } - result.piiArray_ = piiArray_; - } else { - result.piiArray_ = piiArrayBuilder_.build(); - } - result.piiMap_ = internalGetPiiMap(); - result.piiMap_.makeImmutable(); - result.size_ = size_; - result.version_ = version_; - onBuilt(); - return result; - } - - @java.lang.Override - public Builder clone() { - return super.clone(); - } - @java.lang.Override - public Builder setField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.setField(field, value); - } - @java.lang.Override - public Builder clearField( - com.google.protobuf.Descriptors.FieldDescriptor field) { - return super.clearField(field); - } - @java.lang.Override - public Builder clearOneof( - com.google.protobuf.Descriptors.OneofDescriptor oneof) { - return super.clearOneof(oneof); - } - @java.lang.Override - public Builder setRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - int index, java.lang.Object value) { - return super.setRepeatedField(field, index, value); - } - @java.lang.Override - public Builder addRepeatedField( - com.google.protobuf.Descriptors.FieldDescriptor field, - java.lang.Object value) { - return super.addRepeatedField(field, value); - } - @java.lang.Override - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef) { - return mergeFrom((io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef other) { - if (other == io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef.getDefaultInstance()) return this; - if (!other.getName().isEmpty()) { - name_ = other.name_; - onChanged(); - } - if (!other.ssn_.isEmpty()) { - if (ssn_.isEmpty()) { - ssn_ = other.ssn_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureSsnIsMutable(); - ssn_.addAll(other.ssn_); - } - onChanged(); - } - if (piiArrayBuilder_ == null) { - if (!other.piiArray_.isEmpty()) { - if (piiArray_.isEmpty()) { - piiArray_ = other.piiArray_; - bitField0_ = (bitField0_ & ~0x00000002); - } else { - ensurePiiArrayIsMutable(); - piiArray_.addAll(other.piiArray_); - } - onChanged(); - } - } else { - if (!other.piiArray_.isEmpty()) { - if (piiArrayBuilder_.isEmpty()) { - piiArrayBuilder_.dispose(); - piiArrayBuilder_ = null; - piiArray_ = other.piiArray_; - bitField0_ = (bitField0_ & ~0x00000002); - piiArrayBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? - getPiiArrayFieldBuilder() : null; - } else { - piiArrayBuilder_.addAllMessages(other.piiArray_); - } - } - } - internalGetMutablePiiMap().mergeFrom( - other.internalGetPiiMap()); - if (other.getSize() != 0) { - setSize(other.getSize()); - } - if (other.getVersion() != 0) { - setVersion(other.getVersion()); - } - this.mergeUnknownFields(other.getUnknownFields()); - onChanged(); - return this; - } - - @java.lang.Override - public final boolean isInitialized() { - return true; - } - - @java.lang.Override - public Builder mergeFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - if (extensionRegistry == null) { - throw new java.lang.NullPointerException(); - } - try { - boolean done = false; - while (!done) { - int tag = input.readTag(); - switch (tag) { - case 0: - done = true; - break; - case 10: { - name_ = input.readStringRequireUtf8(); - - break; - } // case 10 - case 18: { - java.lang.String s = input.readStringRequireUtf8(); - ensureSsnIsMutable(); - ssn_.add(s); - break; - } // case 18 - case 26: { - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii m = - input.readMessage( - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.parser(), - extensionRegistry); - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(m); - } else { - piiArrayBuilder_.addMessage(m); - } - break; - } // case 26 - case 34: { - com.google.protobuf.MapEntry - piiMap__ = input.readMessage( - PiiMapDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); - internalGetMutablePiiMap().getMutableMap().put( - piiMap__.getKey(), piiMap__.getValue()); - break; - } // case 34 - case 40: { - size_ = input.readInt32(); - - break; - } // case 40 - case 48: { - version_ = input.readInt32(); - - break; - } // case 48 - default: { - if (!super.parseUnknownField(input, extensionRegistry, tag)) { - done = true; // was an endgroup tag - } - break; - } // default: - } // switch (tag) - } // while (!done) - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.unwrapIOException(); - } finally { - onChanged(); - } // finally - return this; - } - private int bitField0_; - - private java.lang.Object name_ = ""; - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The name. - */ - public java.lang.String getName() { - java.lang.Object ref = name_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - name_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return The bytes for name. - */ - public com.google.protobuf.ByteString - getNameBytes() { - java.lang.Object ref = name_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - name_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - name_ = value; - onChanged(); - return this; - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearName() { - - name_ = getDefaultInstance().getName(); - onChanged(); - return this; - } - /** - * string name = 1 [(.confluent.field_meta) = { ... } - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - name_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.LazyStringList ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureSsnIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - ssn_ = new com.google.protobuf.LazyStringArrayList(ssn_); - bitField0_ |= 0x00000001; - } - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return A list containing the ssn. - */ - public com.google.protobuf.ProtocolStringList - getSsnList() { - return ssn_.getUnmodifiableView(); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return The count of ssn. - */ - public int getSsnCount() { - return ssn_.size(); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the element to return. - * @return The ssn at the given index. - */ - public java.lang.String getSsn(int index) { - return ssn_.get(index); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index of the value to return. - * @return The bytes of the ssn at the given index. - */ - public com.google.protobuf.ByteString - getSsnBytes(int index) { - return ssn_.getByteString(index); - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param index The index to set the value at. - * @param value The ssn to set. - * @return This builder for chaining. - */ - public Builder setSsn( - int index, java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureSsnIsMutable(); - ssn_.set(index, value); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param value The ssn to add. - * @return This builder for chaining. - */ - public Builder addSsn( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - ensureSsnIsMutable(); - ssn_.add(value); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param values The ssn to add. - * @return This builder for chaining. - */ - public Builder addAllSsn( - java.lang.Iterable values) { - ensureSsnIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, ssn_); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @return This builder for chaining. - */ - public Builder clearSsn() { - ssn_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - return this; - } - /** - * repeated string ssn = 2 [(.confluent.field_meta) = { ... } - * @param value The bytes of the ssn to add. - * @return This builder for chaining. - */ - public Builder addSsnBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - ensureSsnIsMutable(); - ssn_.add(value); - onChanged(); - return this; - } - - private java.util.List piiArray_ = - java.util.Collections.emptyList(); - private void ensurePiiArrayIsMutable() { - if (!((bitField0_ & 0x00000002) != 0)) { - piiArray_ = new java.util.ArrayList(piiArray_); - bitField0_ |= 0x00000002; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder> piiArrayBuilder_; - - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List getPiiArrayList() { - if (piiArrayBuilder_ == null) { - return java.util.Collections.unmodifiableList(piiArray_); - } else { - return piiArrayBuilder_.getMessageList(); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public int getPiiArrayCount() { - if (piiArrayBuilder_ == null) { - return piiArray_.size(); - } else { - return piiArrayBuilder_.getCount(); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiArray(int index) { - if (piiArrayBuilder_ == null) { - return piiArray_.get(index); - } else { - return piiArrayBuilder_.getMessage(index); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder setPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.set(index, value); - onChanged(); - } else { - piiArrayBuilder_.setMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder setPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.set(index, builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray(io.confluent.kafka.schemaregistry.rules.PiiProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.add(value); - onChanged(); - } else { - piiArrayBuilder_.addMessage(value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii value) { - if (piiArrayBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensurePiiArrayIsMutable(); - piiArray_.add(index, value); - onChanged(); - } else { - piiArrayBuilder_.addMessage(index, value); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addPiiArray( - int index, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder builderForValue) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.add(index, builderForValue.build()); - onChanged(); - } else { - piiArrayBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder addAllPiiArray( - java.lang.Iterable values) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll( - values, piiArray_); - onChanged(); - } else { - piiArrayBuilder_.addAllMessages(values); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder clearPiiArray() { - if (piiArrayBuilder_ == null) { - piiArray_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000002); - onChanged(); - } else { - piiArrayBuilder_.clear(); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public Builder removePiiArray(int index) { - if (piiArrayBuilder_ == null) { - ensurePiiArrayIsMutable(); - piiArray_.remove(index); - onChanged(); - } else { - piiArrayBuilder_.remove(index); - } - return this; - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder getPiiArrayBuilder( - int index) { - return getPiiArrayFieldBuilder().getBuilder(index); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder getPiiArrayOrBuilder( - int index) { - if (piiArrayBuilder_ == null) { - return piiArray_.get(index); } else { - return piiArrayBuilder_.getMessageOrBuilder(index); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List - getPiiArrayOrBuilderList() { - if (piiArrayBuilder_ != null) { - return piiArrayBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(piiArray_); - } - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder addPiiArrayBuilder() { - return getPiiArrayFieldBuilder().addBuilder( - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder addPiiArrayBuilder( - int index) { - return getPiiArrayFieldBuilder().addBuilder( - index, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.getDefaultInstance()); - } - /** - * repeated .io.confluent.kafka.schemaregistry.rules.Pii pii_array = 3; - */ - public java.util.List - getPiiArrayBuilderList() { - return getPiiArrayFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder> - getPiiArrayFieldBuilder() { - if (piiArrayBuilder_ == null) { - piiArrayBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii.Builder, io.confluent.kafka.schemaregistry.rules.PiiProto.PiiOrBuilder>( - piiArray_, - ((bitField0_ & 0x00000002) != 0), - getParentForChildren(), - isClean()); - piiArray_ = null; - } - return piiArrayBuilder_; - } - - private com.google.protobuf.MapField< - java.lang.String, io.confluent.kafka.schemaregistry.rules.PiiProto.Pii> piiMap_; - private com.google.protobuf.MapField - internalGetPiiMap() { - if (piiMap_ == null) { - return com.google.protobuf.MapField.emptyMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - return piiMap_; - } - private com.google.protobuf.MapField - internalGetMutablePiiMap() { - onChanged();; - if (piiMap_ == null) { - piiMap_ = com.google.protobuf.MapField.newMapField( - PiiMapDefaultEntryHolder.defaultEntry); - } - if (!piiMap_.isMutable()) { - piiMap_ = piiMap_.copy(); - } - return piiMap_; - } - - public int getPiiMapCount() { - return internalGetPiiMap().getMap().size(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - @java.lang.Override - public boolean containsPiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - return internalGetPiiMap().getMap().containsKey(key); - } - /** - * Use {@link #getPiiMapMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getPiiMap() { - return getPiiMapMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public java.util.Map getPiiMapMap() { - return internalGetPiiMap().getMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiMapOrDefault( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii defaultValue) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - @java.lang.Override - - public io.confluent.kafka.schemaregistry.rules.PiiProto.Pii getPiiMapOrThrow( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - java.util.Map map = - internalGetPiiMap().getMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - - public Builder clearPiiMap() { - internalGetMutablePiiMap().getMutableMap() - .clear(); - return this; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - public Builder removePiiMap( - java.lang.String key) { - if (key == null) { throw new NullPointerException("map key"); } - internalGetMutablePiiMap().getMutableMap() - .remove(key); - return this; - } - /** - * Use alternate mutation accessors instead. - */ - @java.lang.Deprecated - public java.util.Map - getMutablePiiMap() { - return internalGetMutablePiiMap().getMutableMap(); - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - public Builder putPiiMap( - java.lang.String key, - io.confluent.kafka.schemaregistry.rules.PiiProto.Pii value) { - if (key == null) { throw new NullPointerException("map key"); } - if (value == null) { - throw new NullPointerException("map value"); -} - - internalGetMutablePiiMap().getMutableMap() - .put(key, value); - return this; - } - /** - * map<string, .io.confluent.kafka.schemaregistry.rules.Pii> pii_map = 4; - */ - - public Builder putAllPiiMap( - java.util.Map values) { - internalGetMutablePiiMap().getMutableMap() - .putAll(values); - return this; - } - - private int size_ ; - /** - * int32 size = 5; - * @return The size. - */ - @java.lang.Override - public int getSize() { - return size_; - } - /** - * int32 size = 5; - * @param value The size to set. - * @return This builder for chaining. - */ - public Builder setSize(int value) { - - size_ = value; - onChanged(); - return this; - } - /** - * int32 size = 5; - * @return This builder for chaining. - */ - public Builder clearSize() { - - size_ = 0; - onChanged(); - return this; - } - - private int version_ ; - /** - * int32 version = 6; - * @return The version. - */ - @java.lang.Override - public int getVersion() { - return version_; - } - /** - * int32 version = 6; - * @param value The version to set. - * @return This builder for chaining. - */ - public Builder setVersion(int value) { - - version_ = value; - onChanged(); - return this; - } - /** - * int32 version = 6; - * @return This builder for chaining. - */ - public Builder clearVersion() { - - version_ = 0; - onChanged(); - return this; - } - @java.lang.Override - public final Builder setUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.setUnknownFields(unknownFields); - } - - @java.lang.Override - public final Builder mergeUnknownFields( - final com.google.protobuf.UnknownFieldSet unknownFields) { - return super.mergeUnknownFields(unknownFields); - } - - - // @@protoc_insertion_point(builder_scope:io.confluent.kafka.schemaregistry.rules.WidgetWithRef) - } - - // @@protoc_insertion_point(class_scope:io.confluent.kafka.schemaregistry.rules.WidgetWithRef) - private static final io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef DEFAULT_INSTANCE; - static { - DEFAULT_INSTANCE = new io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef(); - } - - public static io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser - PARSER = new com.google.protobuf.AbstractParser() { - @java.lang.Override - public WidgetWithRef parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - Builder builder = newBuilder(); - try { - builder.mergeFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - throw e.setUnfinishedMessage(builder.buildPartial()); - } catch (com.google.protobuf.UninitializedMessageException e) { - throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); - } catch (java.io.IOException e) { - throw new com.google.protobuf.InvalidProtocolBufferException(e) - .setUnfinishedMessage(builder.buildPartial()); - } - return builder.buildPartial(); - } - }; - - public static com.google.protobuf.Parser parser() { - return PARSER; - } - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - @java.lang.Override - public io.confluent.kafka.schemaregistry.rules.WidgetWithRefProto.WidgetWithRef getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } - - } - - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_fieldAccessorTable; - private static final com.google.protobuf.Descriptors.Descriptor - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_PiiMapEntry_descriptor; - private static final - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_PiiMapEntry_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor - getDescriptor() { - return descriptor; - } - private static com.google.protobuf.Descriptors.FileDescriptor - descriptor; - static { - java.lang.String[] descriptorData = { - "\n\023WidgetWithRef.proto\022\'io.confluent.kafk" + - "a.schemaregistry.rules\032\024confluent/meta.p" + - "roto\032\tPii.proto\"\347\002\n\rWidgetWithRef\022!\n\004nam" + - "e\030\001 \001(\tB\023\202D\005\032\003PII\202D\010\032\006PUBLIC\022!\n\003ssn\030\002 \003(" + - "\tB\024\202D\005\032\003PII\202D\t\032\007PRIVATE\022?\n\tpii_array\030\003 \003" + - "(\0132,.io.confluent.kafka.schemaregistry.r" + - "ules.Pii\022S\n\007pii_map\030\004 \003(\0132B.io.confluent" + - ".kafka.schemaregistry.rules.WidgetWithRe" + - "f.PiiMapEntry\022\014\n\004size\030\005 \001(\005\022\017\n\007version\030\006" + - " \001(\005\032[\n\013PiiMapEntry\022\013\n\003key\030\001 \001(\t\022;\n\005valu" + - "e\030\002 \001(\0132,.io.confluent.kafka.schemaregis" + - "try.rules.Pii:\0028\001B?\n\'io.confluent.kafka." + - "schemaregistry.rulesB\022WidgetWithRefProto" + - "P\000b\006proto3" - }; - descriptor = com.google.protobuf.Descriptors.FileDescriptor - .internalBuildGeneratedFileFrom(descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - io.confluent.protobuf.MetaProto.getDescriptor(), - io.confluent.kafka.schemaregistry.rules.PiiProto.getDescriptor(), - }); - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor = - getDescriptor().getMessageTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor, - new java.lang.String[] { "Name", "Ssn", "PiiArray", "PiiMap", "Size", "Version", }); - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_PiiMapEntry_descriptor = - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_descriptor.getNestedTypes().get(0); - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_PiiMapEntry_fieldAccessorTable = new - com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_io_confluent_kafka_schemaregistry_rules_WidgetWithRef_PiiMapEntry_descriptor, - new java.lang.String[] { "Key", "Value", }); - com.google.protobuf.ExtensionRegistry registry = - com.google.protobuf.ExtensionRegistry.newInstance(); - registry.add(io.confluent.protobuf.MetaProto.fieldMeta); - com.google.protobuf.Descriptors.FileDescriptor - .internalUpdateFileDescriptor(descriptor, registry); - io.confluent.protobuf.MetaProto.getDescriptor(); - io.confluent.kafka.schemaregistry.rules.PiiProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/schema-rules/src/test/proto/BUILD.bazel b/schema-rules/src/test/proto/BUILD.bazel new file mode 100644 index 00000000000..547d83dfe9c --- /dev/null +++ b/schema-rules/src/test/proto/BUILD.bazel @@ -0,0 +1,53 @@ +load("@rules_proto//proto:defs.bzl", "proto_library") +load("@io_bazel_rules_go//go:def.bzl", "go_library") +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") +load("@rules_java//java:defs.bzl", "java_library", "java_proto_library") + +proto_library( + name = "io_confluent_kafka_schemaregistry_rules_proto", + srcs = [ + "Pii.proto", + "WidgetWithRef.proto", + ], + strip_import_prefix = "/schema-rules/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "//protobuf-types/src/main/proto:confluent_proto", + ], +) + +proto_library( + name = "io_confluent_kafka_schemaregistry_rules_proto_2", + srcs = [ + "NewWidget.proto", + ], + strip_import_prefix = "/schema-rules/src/test/proto", + visibility = ["//visibility:public"], +) + +proto_library( + name = "io_confluent_kafka_schemaregistry_rules_proto_3", + srcs = [ + "Widget.proto", + ], + strip_import_prefix = "/schema-rules/src/test/proto", + visibility = ["//visibility:public"], + deps = [ + "//protobuf-types/src/main/proto:confluent_proto", + ], +) + +java_proto_library( + name = "io_confluent_kafka_schemaregistry_rules_java_proto", + deps = [ + ":io_confluent_kafka_schemaregistry_rules_proto", + ":io_confluent_kafka_schemaregistry_rules_proto_2", + ":io_confluent_kafka_schemaregistry_rules_proto_3", + ], +) + +java_library( + name = "io_confluent_kafka_schemaregistry_rules_java_library", + visibility = ["//:__subpackages__"], + exports = [":io_confluent_kafka_schemaregistry_rules_java_proto"], +) diff --git a/schema-serializer/BUILD.bazel b/schema-serializer/BUILD.bazel new file mode 100644 index 00000000000..2a9f632adae --- /dev/null +++ b/schema-serializer/BUILD.bazel @@ -0,0 +1,45 @@ +load("@contrib_rules_jvm//java:defs.bzl", "java_library") + +java_library( + name = "schema-serializer", + srcs = [ + "src/main/java/io/confluent/kafka/formatter/SchemaMessageDeserializer.java", + "src/main/java/io/confluent/kafka/formatter/SchemaMessageFormatter.java", + "src/main/java/io/confluent/kafka/formatter/SchemaMessageReader.java", + "src/main/java/io/confluent/kafka/formatter/SchemaMessageSerializer.java", + "src/main/java/io/confluent/kafka/serializers/AbstractKafkaSchemaSerDe.java", + "src/main/java/io/confluent/kafka/serializers/AbstractKafkaSchemaSerDeConfig.java", + "src/main/java/io/confluent/kafka/serializers/WrapperKeyDeserializer.java", + "src/main/java/io/confluent/kafka/serializers/WrapperKeyDeserializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/WrapperKeySerializer.java", + "src/main/java/io/confluent/kafka/serializers/WrapperKeySerializerConfig.java", + "src/main/java/io/confluent/kafka/serializers/context/NullContextNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/context/strategy/ContextNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/DefaultReferenceSubjectNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/RecordNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/SubjectNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/TopicNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/TopicRecordNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/strategy/ReferenceSubjectNameStrategy.java", + "src/main/java/io/confluent/kafka/serializers/subject/strategy/SubjectNameStrategy.java", + ], + tags = ["no-java-spotbugs"], + visibility = ["//:__subpackages__"], + exports = [ + "//client", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_clients", + ], + deps = [ + "//client", + "@maven//:com_fasterxml_jackson_core_jackson_core", + "@maven//:com_fasterxml_jackson_core_jackson_databind", + "@maven//:com_fasterxml_jackson_dataformat_jackson_dataformat_csv", + "@maven//:com_google_guava_guava", + "@maven//:org_apache_avro_avro", + "@maven//:org_apache_kafka_kafka_2_13", + "@maven//:org_apache_kafka_kafka_clients", + "@maven//:org_slf4j_slf4j_api", + ], +) diff --git a/variables.bzl b/variables.bzl new file mode 100644 index 00000000000..3de22ac0b22 --- /dev/null +++ b/variables.bzl @@ -0,0 +1,3 @@ +# TODO bazel: This is only here as a stub until https://confluentinc.atlassian.net/browse/DP-10234 is figured out. +# This file will probably be updated with the release process or it will read from the version file. +SCHEMA_REGISTRY_VERSION = "7.5.999-0"