From 3d1a2cd47cf3f55f99db012e3502fc6fe84baf51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Wed, 23 Feb 2022 18:19:27 +0100 Subject: [PATCH] Refactor package names for Kafka Streams --- theodolite-benchmarks/uc1-kstreams/build.gradle | 2 +- .../benchmarks/uc1/kstreams}/application/HistoryService.java | 4 ++-- .../uc1/kstreams}/streamprocessing/TopologyBuilder.java | 2 +- .../kstreams}/streamprocessing/Uc1KafkaStreamsBuilder.java | 2 +- theodolite-benchmarks/uc2-kstreams/build.gradle | 2 +- .../theodolite/benchmarks/uc2/kstreams}/HistoryService.java | 3 +-- .../theodolite/benchmarks/uc2/kstreams}/TopologyBuilder.java | 4 ++-- .../benchmarks/uc2/kstreams}/Uc2KafkaStreamsBuilder.java | 2 +- .../benchmarks/uc2/kstreams}/util/StatsFactory.java | 2 +- theodolite-benchmarks/uc3-kstreams/build.gradle | 2 +- .../theodolite/benchmarks/uc3/kstreams}/HistoryService.java | 3 +-- .../theodolite/benchmarks/uc3/kstreams}/HourOfDayKey.java | 2 +- .../benchmarks/uc3/kstreams}/HourOfDayKeyFactory.java | 2 +- .../benchmarks/uc3/kstreams}/HourOfDayKeySerde.java | 2 +- .../benchmarks/uc3/kstreams}/HourOfDayRecordFactory.java | 2 +- .../benchmarks/uc3/kstreams}/RecordDatabaseAdapter.java | 2 +- .../theodolite/benchmarks/uc3/kstreams}/StatsKeyFactory.java | 2 +- .../benchmarks/uc3/kstreams}/StatsRecordFactory.java | 2 +- .../theodolite/benchmarks/uc3/kstreams}/TopologyBuilder.java | 4 ++-- .../benchmarks/uc3/kstreams}/Uc3KafkaStreamsBuilder.java | 2 +- .../benchmarks/uc3/kstreams}/util/StatsFactory.java | 2 +- theodolite-benchmarks/uc4-kstreams/build.gradle | 2 +- .../benchmarks/uc4/kstreams}/AggregationService.java | 3 +-- .../benchmarks/uc4/kstreams}/ChildParentsTransformer.java | 2 +- .../uc4/kstreams}/ChildParentsTransformerSupplier.java | 2 +- .../benchmarks/uc4/kstreams}/JointFlatTransformer.java | 2 +- .../uc4/kstreams}/JointFlatTransformerSupplier.java | 2 +- .../benchmarks/uc4/kstreams}/JointRecordParents.java | 2 +- .../benchmarks/uc4/kstreams}/OptionalParentsSerde.java | 2 +- .../theodolite/benchmarks/uc4/kstreams}/ParentsSerde.java | 2 +- .../theodolite/benchmarks/uc4/kstreams}/RecordAggregator.java | 2 +- .../theodolite/benchmarks/uc4/kstreams}/SensorParentKey.java | 2 +- .../benchmarks/uc4/kstreams}/SensorParentKeySerde.java | 2 +- .../theodolite/benchmarks/uc4/kstreams}/TopologyBuilder.java | 2 +- .../benchmarks/uc4/kstreams}/Uc4KafkaStreamsBuilder.java | 2 +- .../benchmarks/uc4/kstreams}/OptionalParentsSerdeTest.java | 3 ++- .../theodolite/benchmarks/uc4/kstreams}/ParentsSerdeTest.java | 3 ++- .../benchmarks/uc4/kstreams}/SensorParentKeySerdeTest.java | 4 +++- .../theodolite/benchmarks/uc4/kstreams}/SerdeTester.java | 2 +- .../benchmarks/uc4/kstreams}/SerdeTesterFactory.java | 2 +- 40 files changed, 47 insertions(+), 46 deletions(-) rename theodolite-benchmarks/uc1-kstreams/src/main/java/{theodolite/uc1 => rocks/theodolite/benchmarks/uc1/kstreams}/application/HistoryService.java (88%) rename theodolite-benchmarks/uc1-kstreams/src/main/java/{theodolite/uc1 => rocks/theodolite/benchmarks/uc1/kstreams}/streamprocessing/TopologyBuilder.java (96%) rename theodolite-benchmarks/uc1-kstreams/src/main/java/{theodolite/uc1 => rocks/theodolite/benchmarks/uc1/kstreams}/streamprocessing/Uc1KafkaStreamsBuilder.java (92%) rename theodolite-benchmarks/uc2-kstreams/src/main/java/{theodolite/uc2/application => rocks/theodolite/benchmarks/uc2/kstreams}/HistoryService.java (94%) rename theodolite-benchmarks/uc2-kstreams/src/main/java/{theodolite/uc2/streamprocessing => rocks/theodolite/benchmarks/uc2/kstreams}/TopologyBuilder.java (95%) rename theodolite-benchmarks/uc2-kstreams/src/main/java/{theodolite/uc2/streamprocessing => rocks/theodolite/benchmarks/uc2/kstreams}/Uc2KafkaStreamsBuilder.java (96%) rename theodolite-benchmarks/uc2-kstreams/src/main/java/{theodolite/uc2/streamprocessing => rocks/theodolite/benchmarks/uc2/kstreams}/util/StatsFactory.java (90%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/application => rocks/theodolite/benchmarks/uc3/kstreams}/HistoryService.java (94%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/HourOfDayKey.java (95%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/HourOfDayKeyFactory.java (90%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/HourOfDayKeySerde.java (95%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/HourOfDayRecordFactory.java (94%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/RecordDatabaseAdapter.java (98%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/StatsKeyFactory.java (86%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/StatsRecordFactory.java (93%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/TopologyBuilder.java (96%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/Uc3KafkaStreamsBuilder.java (97%) rename theodolite-benchmarks/uc3-kstreams/src/main/java/{theodolite/uc3/streamprocessing => rocks/theodolite/benchmarks/uc3/kstreams}/util/StatsFactory.java (90%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/application => rocks/theodolite/benchmarks/uc4/kstreams}/AggregationService.java (95%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/ChildParentsTransformer.java (98%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/ChildParentsTransformerSupplier.java (96%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/JointFlatTransformer.java (98%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/JointFlatTransformerSupplier.java (96%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/JointRecordParents.java (96%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/OptionalParentsSerde.java (96%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/ParentsSerde.java (95%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/RecordAggregator.java (96%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/SensorParentKey.java (95%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/SensorParentKeySerde.java (95%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/TopologyBuilder.java (99%) rename theodolite-benchmarks/uc4-kstreams/src/main/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/Uc4KafkaStreamsBuilder.java (98%) rename theodolite-benchmarks/uc4-kstreams/src/test/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/OptionalParentsSerdeTest.java (87%) rename theodolite-benchmarks/uc4-kstreams/src/test/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/ParentsSerdeTest.java (79%) rename theodolite-benchmarks/uc4-kstreams/src/test/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/SensorParentKeySerdeTest.java (72%) rename theodolite-benchmarks/uc4-kstreams/src/test/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/SerdeTester.java (92%) rename theodolite-benchmarks/uc4-kstreams/src/test/java/{theodolite/uc4/streamprocessing => rocks/theodolite/benchmarks/uc4/kstreams}/SerdeTesterFactory.java (92%) diff --git a/theodolite-benchmarks/uc1-kstreams/build.gradle b/theodolite-benchmarks/uc1-kstreams/build.gradle index 1460a99a2..15fd13dcd 100644 --- a/theodolite-benchmarks/uc1-kstreams/build.gradle +++ b/theodolite-benchmarks/uc1-kstreams/build.gradle @@ -6,4 +6,4 @@ dependencies { implementation project(':uc1-commons') } -mainClassName = "theodolite.uc1.application.HistoryService" +mainClassName = "rocks.theodolite.benchmarks.uc1.kstreams.HistoryService" diff --git a/theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/application/HistoryService.java b/theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/application/HistoryService.java similarity index 88% rename from theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/application/HistoryService.java rename to theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/application/HistoryService.java index f0d8062a2..fde5d0e53 100644 --- a/theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/application/HistoryService.java +++ b/theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/application/HistoryService.java @@ -1,9 +1,9 @@ -package theodolite.uc1.application; +package rocks.theodolite.benchmarks.uc1.kstreams.application; import java.util.concurrent.CompletableFuture; import org.apache.commons.configuration2.Configuration; import org.apache.kafka.streams.KafkaStreams; -import theodolite.uc1.streamprocessing.Uc1KafkaStreamsBuilder; +import rocks.theodolite.benchmarks.uc1.kstreams.streamprocessing.Uc1KafkaStreamsBuilder; import titan.ccp.common.configuration.ServiceConfigurations; /** diff --git a/theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/streamprocessing/TopologyBuilder.java b/theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/streamprocessing/TopologyBuilder.java similarity index 96% rename from theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/streamprocessing/TopologyBuilder.java rename to theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/streamprocessing/TopologyBuilder.java index 64d6d08c3..043f30540 100644 --- a/theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/streamprocessing/TopologyBuilder.java +++ b/theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/streamprocessing/TopologyBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc1.streamprocessing; +package rocks.theodolite.benchmarks.uc1.kstreams.streamprocessing; import java.util.Properties; import org.apache.kafka.common.serialization.Serdes; diff --git a/theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/streamprocessing/Uc1KafkaStreamsBuilder.java b/theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/streamprocessing/Uc1KafkaStreamsBuilder.java similarity index 92% rename from theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/streamprocessing/Uc1KafkaStreamsBuilder.java rename to theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/streamprocessing/Uc1KafkaStreamsBuilder.java index 3d6235809..8b8b7cfd7 100644 --- a/theodolite-benchmarks/uc1-kstreams/src/main/java/theodolite/uc1/streamprocessing/Uc1KafkaStreamsBuilder.java +++ b/theodolite-benchmarks/uc1-kstreams/src/main/java/rocks/theodolite/benchmarks/uc1/kstreams/streamprocessing/Uc1KafkaStreamsBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc1.streamprocessing; +package rocks.theodolite.benchmarks.uc1.kstreams.streamprocessing; import java.util.Objects; import java.util.Properties; diff --git a/theodolite-benchmarks/uc2-kstreams/build.gradle b/theodolite-benchmarks/uc2-kstreams/build.gradle index 6688f229b..9712c51cc 100644 --- a/theodolite-benchmarks/uc2-kstreams/build.gradle +++ b/theodolite-benchmarks/uc2-kstreams/build.gradle @@ -2,4 +2,4 @@ plugins { id 'theodolite.kstreams' } -mainClassName = "theodolite.uc2.application.HistoryService" +mainClassName = "rocks.theodolite.benchmarks.uc2.kstreams.HistoryService" diff --git a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/application/HistoryService.java b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/HistoryService.java similarity index 94% rename from theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/application/HistoryService.java rename to theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/HistoryService.java index d33a841ae..3b8705350 100644 --- a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/application/HistoryService.java +++ b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/HistoryService.java @@ -1,4 +1,4 @@ -package theodolite.uc2.application; +package rocks.theodolite.benchmarks.uc2.kstreams; import java.time.Duration; import java.util.Objects; @@ -6,7 +6,6 @@ import java.util.concurrent.CompletableFuture; import org.apache.commons.configuration2.Configuration; import org.apache.kafka.streams.KafkaStreams; import rocks.theodolite.benchmarks.commons.kstreams.ConfigurationKeys; -import theodolite.uc2.streamprocessing.Uc2KafkaStreamsBuilder; import titan.ccp.common.configuration.ServiceConfigurations; /** diff --git a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/TopologyBuilder.java b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/TopologyBuilder.java similarity index 95% rename from theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/TopologyBuilder.java rename to theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/TopologyBuilder.java index 21dcf14a9..ae17c83bc 100644 --- a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/TopologyBuilder.java +++ b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/TopologyBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc2.streamprocessing; +package rocks.theodolite.benchmarks.uc2.kstreams; import com.google.common.math.Stats; import java.time.Duration; @@ -13,7 +13,7 @@ import org.apache.kafka.streams.kstream.Produced; import org.apache.kafka.streams.kstream.TimeWindows; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import theodolite.uc2.streamprocessing.util.StatsFactory; +import rocks.theodolite.benchmarks.uc2.kstreams.util.StatsFactory; import titan.ccp.common.kafka.GenericSerde; import titan.ccp.common.kafka.avro.SchemaRegistryAvroSerdeFactory; import titan.ccp.model.records.ActivePowerRecord; diff --git a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/Uc2KafkaStreamsBuilder.java b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/Uc2KafkaStreamsBuilder.java similarity index 96% rename from theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/Uc2KafkaStreamsBuilder.java rename to theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/Uc2KafkaStreamsBuilder.java index 6ec92d702..9db55ef92 100644 --- a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/Uc2KafkaStreamsBuilder.java +++ b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/Uc2KafkaStreamsBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc2.streamprocessing; +package rocks.theodolite.benchmarks.uc2.kstreams; import java.time.Duration; import java.util.Objects; diff --git a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/util/StatsFactory.java b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/util/StatsFactory.java similarity index 90% rename from theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/util/StatsFactory.java rename to theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/util/StatsFactory.java index e4aff4fc8..8e43bf7e7 100644 --- a/theodolite-benchmarks/uc2-kstreams/src/main/java/theodolite/uc2/streamprocessing/util/StatsFactory.java +++ b/theodolite-benchmarks/uc2-kstreams/src/main/java/rocks/theodolite/benchmarks/uc2/kstreams/util/StatsFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc2.streamprocessing.util; +package rocks.theodolite.benchmarks.uc2.kstreams.util; import com.google.common.math.Stats; import com.google.common.math.StatsAccumulator; diff --git a/theodolite-benchmarks/uc3-kstreams/build.gradle b/theodolite-benchmarks/uc3-kstreams/build.gradle index d588d85ae..ee92f6364 100644 --- a/theodolite-benchmarks/uc3-kstreams/build.gradle +++ b/theodolite-benchmarks/uc3-kstreams/build.gradle @@ -2,4 +2,4 @@ plugins { id 'theodolite.kstreams' } -mainClassName = "theodolite.uc3.application.HistoryService" +mainClassName = "rocks.theodolite.benchmarks.uc3.kstreams.HistoryService" diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/application/HistoryService.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HistoryService.java similarity index 94% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/application/HistoryService.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HistoryService.java index f42aa440e..a327d2ecf 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/application/HistoryService.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HistoryService.java @@ -1,11 +1,10 @@ -package theodolite.uc3.application; +package rocks.theodolite.benchmarks.uc3.kstreams; import java.time.Duration; import java.util.concurrent.CompletableFuture; import org.apache.commons.configuration2.Configuration; import org.apache.kafka.streams.KafkaStreams; import rocks.theodolite.benchmarks.commons.kstreams.ConfigurationKeys; -import theodolite.uc3.streamprocessing.Uc3KafkaStreamsBuilder; import titan.ccp.common.configuration.ServiceConfigurations; /** diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKey.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKey.java similarity index 95% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKey.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKey.java index 549674f9f..4e4d97986 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKey.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKey.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import java.util.Objects; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKeyFactory.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKeyFactory.java similarity index 90% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKeyFactory.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKeyFactory.java index 837ca9d32..02fdbaf56 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKeyFactory.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKeyFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import java.time.LocalDateTime; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKeySerde.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKeySerde.java similarity index 95% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKeySerde.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKeySerde.java index 6855907e7..4014e5e30 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayKeySerde.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayKeySerde.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import org.apache.kafka.common.serialization.Serde; import titan.ccp.common.kafka.simpleserdes.BufferSerde; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayRecordFactory.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayRecordFactory.java similarity index 94% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayRecordFactory.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayRecordFactory.java index dfa9b95b0..3d67a6ebe 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/HourOfDayRecordFactory.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/HourOfDayRecordFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import com.google.common.math.Stats; import org.apache.kafka.streams.kstream.Windowed; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/RecordDatabaseAdapter.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/RecordDatabaseAdapter.java similarity index 98% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/RecordDatabaseAdapter.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/RecordDatabaseAdapter.java index 342cb3e04..111e26228 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/RecordDatabaseAdapter.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/RecordDatabaseAdapter.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import java.util.Collection; import java.util.List; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/StatsKeyFactory.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/StatsKeyFactory.java similarity index 86% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/StatsKeyFactory.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/StatsKeyFactory.java index 0e414c4a1..2473665a3 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/StatsKeyFactory.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/StatsKeyFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import java.time.LocalDateTime; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/StatsRecordFactory.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/StatsRecordFactory.java similarity index 93% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/StatsRecordFactory.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/StatsRecordFactory.java index 31935df9d..1cbf031bd 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/StatsRecordFactory.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/StatsRecordFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import com.google.common.math.Stats; import org.apache.avro.specific.SpecificRecord; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/TopologyBuilder.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/TopologyBuilder.java similarity index 96% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/TopologyBuilder.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/TopologyBuilder.java index 4c63e21f3..b956959c5 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/TopologyBuilder.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/TopologyBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import com.google.common.math.Stats; import java.time.Duration; @@ -16,7 +16,7 @@ import org.apache.kafka.streams.kstream.Grouped; import org.apache.kafka.streams.kstream.Materialized; import org.apache.kafka.streams.kstream.Produced; import org.apache.kafka.streams.kstream.TimeWindows; -import theodolite.uc3.streamprocessing.util.StatsFactory; +import rocks.theodolite.benchmarks.uc3.kstreams.util.StatsFactory; import titan.ccp.common.kafka.GenericSerde; import titan.ccp.common.kafka.avro.SchemaRegistryAvroSerdeFactory; import titan.ccp.model.records.ActivePowerRecord; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/Uc3KafkaStreamsBuilder.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/Uc3KafkaStreamsBuilder.java similarity index 97% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/Uc3KafkaStreamsBuilder.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/Uc3KafkaStreamsBuilder.java index a358bd2db..3c80e5eed 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/Uc3KafkaStreamsBuilder.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/Uc3KafkaStreamsBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing; +package rocks.theodolite.benchmarks.uc3.kstreams; import java.time.Duration; import java.util.Objects; diff --git a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/util/StatsFactory.java b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/util/StatsFactory.java similarity index 90% rename from theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/util/StatsFactory.java rename to theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/util/StatsFactory.java index 8099c85d6..f2017073f 100644 --- a/theodolite-benchmarks/uc3-kstreams/src/main/java/theodolite/uc3/streamprocessing/util/StatsFactory.java +++ b/theodolite-benchmarks/uc3-kstreams/src/main/java/rocks/theodolite/benchmarks/uc3/kstreams/util/StatsFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc3.streamprocessing.util; +package rocks.theodolite.benchmarks.uc3.kstreams.util; import com.google.common.math.Stats; import com.google.common.math.StatsAccumulator; diff --git a/theodolite-benchmarks/uc4-kstreams/build.gradle b/theodolite-benchmarks/uc4-kstreams/build.gradle index 83212a499..52d201783 100644 --- a/theodolite-benchmarks/uc4-kstreams/build.gradle +++ b/theodolite-benchmarks/uc4-kstreams/build.gradle @@ -2,4 +2,4 @@ plugins { id 'theodolite.kstreams' } -mainClassName = "theodolite.uc4.application.AggregationService" +mainClassName = "rocks.theodolite.benchmarks.uc4.kstreams.AggregationService" diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/application/AggregationService.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/AggregationService.java similarity index 95% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/application/AggregationService.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/AggregationService.java index 33eee7c07..341c37bc0 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/application/AggregationService.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/AggregationService.java @@ -1,11 +1,10 @@ -package theodolite.uc4.application; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.time.Duration; import java.util.concurrent.CompletableFuture; import org.apache.commons.configuration2.Configuration; import org.apache.kafka.streams.KafkaStreams; import rocks.theodolite.benchmarks.commons.kstreams.ConfigurationKeys; -import theodolite.uc4.streamprocessing.Uc4KafkaStreamsBuilder; import titan.ccp.common.configuration.ServiceConfigurations; /** diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ChildParentsTransformer.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ChildParentsTransformer.java similarity index 98% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ChildParentsTransformer.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ChildParentsTransformer.java index db28c86bc..bdc8fc7d4 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ChildParentsTransformer.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ChildParentsTransformer.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Map; import java.util.Optional; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ChildParentsTransformerSupplier.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ChildParentsTransformerSupplier.java similarity index 96% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ChildParentsTransformerSupplier.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ChildParentsTransformerSupplier.java index d17757d68..538643f0c 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ChildParentsTransformerSupplier.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ChildParentsTransformerSupplier.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Map; import java.util.Optional; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointFlatTransformer.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointFlatTransformer.java similarity index 98% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointFlatTransformer.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointFlatTransformer.java index d3500adff..38cbca81d 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointFlatTransformer.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointFlatTransformer.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import com.google.common.base.MoreObjects; import java.util.ArrayList; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointFlatTransformerSupplier.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointFlatTransformerSupplier.java similarity index 96% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointFlatTransformerSupplier.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointFlatTransformerSupplier.java index 51c7ce1f6..2e635ec36 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointFlatTransformerSupplier.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointFlatTransformerSupplier.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Map; import java.util.Set; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointRecordParents.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointRecordParents.java similarity index 96% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointRecordParents.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointRecordParents.java index e9a5a824e..5892c6d3a 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/JointRecordParents.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/JointRecordParents.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Objects; import java.util.Set; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/OptionalParentsSerde.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/OptionalParentsSerde.java similarity index 96% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/OptionalParentsSerde.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/OptionalParentsSerde.java index a1e9767da..3738fadd5 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/OptionalParentsSerde.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/OptionalParentsSerde.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.HashSet; import java.util.Optional; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ParentsSerde.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ParentsSerde.java similarity index 95% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ParentsSerde.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ParentsSerde.java index df6f848b5..dac58c84b 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/ParentsSerde.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/ParentsSerde.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.HashSet; import java.util.Set; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/RecordAggregator.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/RecordAggregator.java similarity index 96% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/RecordAggregator.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/RecordAggregator.java index 34ef3762d..d107dedbf 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/RecordAggregator.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/RecordAggregator.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import org.apache.kafka.streams.kstream.Windowed; import titan.ccp.model.records.ActivePowerRecord; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/SensorParentKey.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKey.java similarity index 95% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/SensorParentKey.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKey.java index 667cc6d5e..8c700f807 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/SensorParentKey.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKey.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Objects; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/SensorParentKeySerde.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKeySerde.java similarity index 95% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/SensorParentKeySerde.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKeySerde.java index 63b9e44b5..80fd16f64 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/SensorParentKeySerde.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKeySerde.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import org.apache.kafka.common.serialization.Serde; import titan.ccp.common.kafka.simpleserdes.BufferSerde; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/TopologyBuilder.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/TopologyBuilder.java similarity index 99% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/TopologyBuilder.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/TopologyBuilder.java index 712b20cb6..fbd3ed109 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/TopologyBuilder.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/TopologyBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.time.Duration; import java.util.Properties; diff --git a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/Uc4KafkaStreamsBuilder.java b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/Uc4KafkaStreamsBuilder.java similarity index 98% rename from theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/Uc4KafkaStreamsBuilder.java rename to theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/Uc4KafkaStreamsBuilder.java index 3043b49ab..4d2b96ccb 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/main/java/theodolite/uc4/streamprocessing/Uc4KafkaStreamsBuilder.java +++ b/theodolite-benchmarks/uc4-kstreams/src/main/java/rocks/theodolite/benchmarks/uc4/kstreams/Uc4KafkaStreamsBuilder.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.time.Duration; import java.util.Objects; diff --git a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/OptionalParentsSerdeTest.java b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/OptionalParentsSerdeTest.java similarity index 87% rename from theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/OptionalParentsSerdeTest.java rename to theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/OptionalParentsSerdeTest.java index 600fc0b15..0e08e3ddb 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/OptionalParentsSerdeTest.java +++ b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/OptionalParentsSerdeTest.java @@ -1,8 +1,9 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Optional; import java.util.Set; import org.junit.Test; +import rocks.theodolite.benchmarks.uc4.kstreams.OptionalParentsSerde; public class OptionalParentsSerdeTest { diff --git a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/ParentsSerdeTest.java b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/ParentsSerdeTest.java similarity index 79% rename from theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/ParentsSerdeTest.java rename to theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/ParentsSerdeTest.java index 994593e27..a20c75560 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/ParentsSerdeTest.java +++ b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/ParentsSerdeTest.java @@ -1,7 +1,8 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import java.util.Set; import org.junit.Test; +import rocks.theodolite.benchmarks.uc4.kstreams.ParentsSerde; public class ParentsSerdeTest { diff --git a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SensorParentKeySerdeTest.java b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKeySerdeTest.java similarity index 72% rename from theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SensorParentKeySerdeTest.java rename to theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKeySerdeTest.java index 34f87fa98..d66774822 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SensorParentKeySerdeTest.java +++ b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SensorParentKeySerdeTest.java @@ -1,6 +1,8 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import org.junit.Test; +import rocks.theodolite.benchmarks.uc4.kstreams.SensorParentKey; +import rocks.theodolite.benchmarks.uc4.kstreams.SensorParentKeySerde; public class SensorParentKeySerdeTest { diff --git a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SerdeTester.java b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SerdeTester.java similarity index 92% rename from theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SerdeTester.java rename to theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SerdeTester.java index b5d5f942d..bf893c04f 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SerdeTester.java +++ b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SerdeTester.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import static org.junit.Assert.assertEquals; import java.util.function.Function; diff --git a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SerdeTesterFactory.java b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SerdeTesterFactory.java similarity index 92% rename from theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SerdeTesterFactory.java rename to theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SerdeTesterFactory.java index e8083ed77..ade3763fc 100644 --- a/theodolite-benchmarks/uc4-kstreams/src/test/java/theodolite/uc4/streamprocessing/SerdeTesterFactory.java +++ b/theodolite-benchmarks/uc4-kstreams/src/test/java/rocks/theodolite/benchmarks/uc4/kstreams/SerdeTesterFactory.java @@ -1,4 +1,4 @@ -package theodolite.uc4.streamprocessing; +package rocks.theodolite.benchmarks.uc4.kstreams; import org.apache.kafka.common.serialization.Serde; -- GitLab