io.prestosql.plugin.kafka.KafkaTopicDescription Maven / Gradle / Ivy
/*
* Licensed 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.
*/
package io.prestosql.plugin.kafka;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Optional;
import static com.google.common.base.MoreObjects.toStringHelper;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Strings.isNullOrEmpty;
import static java.util.Objects.requireNonNull;
/**
* Json description to parse a row on a Kafka topic. A row contains a message and an optional key. See the documentation for the exact JSON syntax.
*/
public class KafkaTopicDescription
{
private final String tableName;
private final String topicName;
private final Optional schemaName;
private final Optional key;
private final Optional message;
@JsonCreator
public KafkaTopicDescription(
@JsonProperty("tableName") String tableName,
@JsonProperty("schemaName") Optional schemaName,
@JsonProperty("topicName") String topicName,
@JsonProperty("key") Optional key,
@JsonProperty("message") Optional message)
{
checkArgument(!isNullOrEmpty(tableName), "tableName is null or is empty");
this.tableName = tableName;
this.topicName = requireNonNull(topicName, "topicName is null");
this.schemaName = requireNonNull(schemaName, "schemaName is null");
this.key = requireNonNull(key, "key is null");
this.message = requireNonNull(message, "message is null");
}
@JsonProperty
public String getTableName()
{
return tableName;
}
@JsonProperty
public String getTopicName()
{
return topicName;
}
@JsonProperty
public Optional getSchemaName()
{
return schemaName;
}
@JsonProperty
public Optional getKey()
{
return key;
}
@JsonProperty
public Optional getMessage()
{
return message;
}
@Override
public String toString()
{
return toStringHelper(this)
.add("tableName", tableName)
.add("topicName", topicName)
.add("schemaName", schemaName)
.add("key", key)
.add("message", message)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy