Skip to content
Snippets Groups Projects
Commit 599efba5 authored by Björn Vonheiden's avatar Björn Vonheiden
Browse files

Replace spesb with theodolite at all places

The Project is renamed to theodolite and therefore all packages
should be renamed likewise.
parent c9a56f5b
No related branches found
No related tags found
No related merge requests found
Showing
with 30 additions and 30 deletions
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
/**
* A key consisting of the identifier of a sensor and an identifier of parent sensor.
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import org.apache.kafka.common.serialization.Serde;
import titan.ccp.common.kafka.simpleserdes.BufferSerde;
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import com.google.common.math.StatsAccumulator;
import java.time.Duration;
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import java.time.Duration;
import java.util.Objects;
import org.apache.kafka.streams.Topology;
import spesb.commons.kafkastreams.KafkaStreamsBuilder;
import theodolite.commons.kafkastreams.KafkaStreamsBuilder;
/**
* Builder for the Kafka Streams configuration.
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import java.util.Optional;
import java.util.Set;
import org.junit.Test;
import spesb.uc2.streamprocessing.OptionalParentsSerde;
import theodolite.uc2.streamprocessing.OptionalParentsSerde;
public class OptionalParentsSerdeTest {
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import java.util.Set;
import org.junit.Test;
import spesb.uc2.streamprocessing.ParentsSerde;
import theodolite.uc2.streamprocessing.ParentsSerde;
public class ParentsSerdeTest {
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import org.junit.Test;
import spesb.uc2.streamprocessing.SensorParentKey;
import spesb.uc2.streamprocessing.SensorParentKeySerde;
import theodolite.uc2.streamprocessing.SensorParentKey;
import theodolite.uc2.streamprocessing.SensorParentKeySerde;
public class SensorParentKeySerdeTest {
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import static org.junit.Assert.assertEquals;
import java.util.function.Function;
......
......
package spesb.uc2.streamprocessing;
package theodolite.uc2.streamprocessing;
import org.apache.kafka.common.serialization.Serde;
......
......
mainClassName = "spesb.uc2.workloadgenerator.LoadGenerator"
mainClassName = "theodolite.uc2.workloadgenerator.LoadGenerator"
package spesb.kafkasender;
package theodolite.kafkasender;
import java.util.Properties;
import java.util.function.Function;
......
......
package spesb.uc2.workloadgenerator;
package theodolite.uc2.workloadgenerator;
import java.util.Properties;
import java.util.concurrent.ExecutionException;
......
......
package spesb.uc2.workloadgenerator;
package theodolite.uc2.workloadgenerator;
import java.io.IOException;
import java.util.List;
......@@ -12,7 +12,7 @@ import java.util.stream.Collectors;
import org.apache.kafka.clients.producer.ProducerConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import spesb.kafkasender.KafkaRecordSender;
import theodolite.kafkasender.KafkaRecordSender;
import titan.ccp.configuration.events.Event;
import titan.ccp.model.sensorregistry.MutableAggregatedSensor;
import titan.ccp.model.sensorregistry.MutableSensorRegistry;
......
......
package spesb.uc2.workloadgenerator;
package theodolite.uc2.workloadgenerator;
import java.io.IOException;
import java.lang.management.ManagementFactory;
......@@ -10,7 +10,7 @@ import java.util.Properties;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.apache.kafka.clients.producer.ProducerConfig;
import spesb.kafkasender.KafkaRecordSender;
import theodolite.kafkasender.KafkaRecordSender;
import titan.ccp.configuration.events.Event;
import titan.ccp.model.sensorregistry.MutableAggregatedSensor;
import titan.ccp.model.sensorregistry.MutableSensorRegistry;
......
......
......@@ -10,4 +10,4 @@ dependencies {
compile('org.industrial-devops:titan-ccp-common-kafka:0.1.0-SNAPSHOT')
}
mainClassName = "spesb.uc3.application.HistoryService"
mainClassName = "theodolite.uc3.application.HistoryService"
package spesb.uc3.application;
package theodolite.uc3.application;
/**
* Keys to access configuration parameters.
......
......
package spesb.uc3.application;
package theodolite.uc3.application;
import java.time.Duration;
import java.util.Objects;
import java.util.concurrent.CompletableFuture;
import org.apache.commons.configuration2.Configuration;
import org.apache.kafka.streams.KafkaStreams;
import spesb.uc3.streamprocessing.Uc3KafkaStreamsBuilder;
import theodolite.uc3.streamprocessing.Uc3KafkaStreamsBuilder;
import titan.ccp.common.configuration.Configurations;
/**
......
......
package spesb.uc3.streamprocessing;
package theodolite.uc3.streamprocessing;
import com.google.common.math.Stats;
import java.time.Duration;
......@@ -12,7 +12,7 @@ import org.apache.kafka.streams.kstream.Produced;
import org.apache.kafka.streams.kstream.TimeWindows;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import spesb.uc3.streamprocessing.util.StatsFactory;
import theodolite.uc3.streamprocessing.util.StatsFactory;
import titan.ccp.common.kafka.GenericSerde;
import titan.ccp.common.kieker.kafka.IMonitoringRecordSerde;
import titan.ccp.models.records.ActivePowerRecordFactory;
......
......
package spesb.uc3.streamprocessing;
package theodolite.uc3.streamprocessing;
import java.time.Duration;
import java.util.Objects;
import org.apache.kafka.streams.Topology;
import spesb.commons.kafkastreams.KafkaStreamsBuilder;
import theodolite.commons.kafkastreams.KafkaStreamsBuilder;
/**
* Builder for the Kafka Streams configuration.
......
......
package spesb.uc4.streamprocessing.util;
package theodolite.uc3.streamprocessing.util;
import com.google.common.math.Stats;
import com.google.common.math.StatsAccumulator;
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment