From 7b74a38e45616c4156f7ae7bc25c5ba82316e763 Mon Sep 17 00:00:00 2001 From: Tarun Annapareddy Date: Mon, 9 Feb 2026 10:20:05 -0800 Subject: [PATCH] Fix Components visibility --- .../deadletterqueue/package-info.java | 20 +++++++++++++++++++ .../deadletterqueue/sinks/package-info.java | 20 +++++++++++++++++++ .../components/throttling/package-info.java | 20 +++++++++++++++++++ settings.gradle.kts | 1 + 4 files changed, 61 insertions(+) create mode 100644 sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/package-info.java create mode 100644 sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/sinks/package-info.java create mode 100644 sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/throttling/package-info.java diff --git a/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/package-info.java b/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/package-info.java new file mode 100644 index 000000000000..eeb6afb035c6 --- /dev/null +++ b/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/package-info.java @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** Defines Dead Letter Queue (DLQ) routers for Beam IO components. */ +package org.apache.beam.sdk.io.components.deadletterqueue; diff --git a/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/sinks/package-info.java b/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/sinks/package-info.java new file mode 100644 index 000000000000..1766ac4599ec --- /dev/null +++ b/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/deadletterqueue/sinks/package-info.java @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** Defines sinks for Dead Letter Queue (DLQ) implementations. */ +package org.apache.beam.sdk.io.components.deadletterqueue.sinks; diff --git a/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/throttling/package-info.java b/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/throttling/package-info.java new file mode 100644 index 000000000000..9543515857a5 --- /dev/null +++ b/sdks/java/io/components/src/main/java/org/apache/beam/sdk/io/components/throttling/package-info.java @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** Defines Throttling utilities for Beam IO components. */ +package org.apache.beam.sdk.io.components.throttling; diff --git a/settings.gradle.kts b/settings.gradle.kts index 1b53cb151a69..add4a9ad216a 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -212,6 +212,7 @@ include(":sdks:java:io:azure-cosmos") include(":sdks:java:io:cassandra") include(":sdks:java:io:clickhouse") include(":sdks:java:io:common") +include(":sdks:java:io:components") include(":sdks:java:io:contextualtextio") include(":sdks:java:io:debezium") include(":sdks:java:io:debezium:expansion-service")