|
1 |
| -/** |
2 |
| - * Copyright 2016 Confluent Inc. |
3 |
| - * <p> |
4 |
| - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
5 |
| - * in compliance with the License. You may obtain a copy of the License at |
6 |
| - * <p> |
7 |
| - * http://www.apache.org/licenses/LICENSE-2.0 |
8 |
| - * <p> |
9 |
| - * Unless required by applicable law or agreed to in writing, software distributed under the License |
10 |
| - * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
11 |
| - * or implied. See the License for the specific language governing permissions and limitations under |
12 |
| - * the License. |
| 1 | +/* |
| 2 | + * Copyright Confluent Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
13 | 15 | */
|
14 | 16 | package io.confluent.examples.streams;
|
15 | 17 |
|
| 18 | +import io.confluent.examples.streams.avro.Customer; |
| 19 | +import io.confluent.examples.streams.avro.EnrichedOrder; |
| 20 | +import io.confluent.examples.streams.avro.Order; |
| 21 | +import io.confluent.examples.streams.avro.Product; |
| 22 | +import io.confluent.kafka.serializers.AbstractKafkaAvroSerDeConfig; |
| 23 | +import io.confluent.kafka.serializers.KafkaAvroDeserializer; |
| 24 | +import io.confluent.kafka.serializers.KafkaAvroDeserializerConfig; |
| 25 | +import io.confluent.kafka.streams.serdes.avro.SpecificAvroSerde; |
16 | 26 | import org.apache.avro.specific.SpecificRecord;
|
17 | 27 | import org.apache.kafka.clients.consumer.ConsumerConfig;
|
18 | 28 | import org.apache.kafka.clients.consumer.ConsumerRecords;
|
|
29 | 39 | import java.util.Properties;
|
30 | 40 | import java.util.Random;
|
31 | 41 |
|
32 |
| -import io.confluent.examples.streams.avro.Customer; |
33 |
| -import io.confluent.examples.streams.avro.EnrichedOrder; |
34 |
| -import io.confluent.examples.streams.avro.Order; |
35 |
| -import io.confluent.examples.streams.avro.Product; |
36 |
| -import io.confluent.kafka.serializers.AbstractKafkaAvroSerDeConfig; |
37 |
| -import io.confluent.kafka.serializers.KafkaAvroDeserializer; |
38 |
| -import io.confluent.kafka.serializers.KafkaAvroDeserializerConfig; |
39 |
| -import io.confluent.kafka.streams.serdes.avro.SpecificAvroSerde; |
40 |
| - |
41 | 42 | import static io.confluent.examples.streams.GlobalKTablesExample.CUSTOMER_TOPIC;
|
42 | 43 | import static io.confluent.examples.streams.GlobalKTablesExample.ENRICHED_ORDER_TOPIC;
|
43 | 44 | import static io.confluent.examples.streams.GlobalKTablesExample.ORDER_TOPIC;
|
|
0 commit comments