com.hazelcast.jet.cdc.impl.DebeziumConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-jet-cdc-debezium Show documentation
Show all versions of hazelcast-jet-cdc-debezium Show documentation
Change Data Capture support for Hazelcast Jet
/*
* Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.jet.cdc.impl;
import javax.annotation.Nonnull;
import java.util.Objects;
import java.util.Properties;
public class DebeziumConfig {
private final Properties properties = new Properties();
public DebeziumConfig(@Nonnull String name, @Nonnull String connectorClass) {
Objects.requireNonNull(name, "name");
Objects.requireNonNull(connectorClass, "connectorClass");
properties.put("name", name);
properties.put(CdcSource.CONNECTOR_CLASS_PROPERTY, connectorClass);
properties.put("database.history", CdcSource.DatabaseHistoryImpl.class.getName());
properties.put("tombstones.on.delete", "false");
}
public void setProperty(String key, Object value) {
Objects.requireNonNull(key, "key");
Objects.requireNonNull(value, "value");
properties.put(key, value);
}
public void setProperty(String key, String value) {
setProperty(key, (Object) value);
}
public void setProperty(String key, int value) {
setProperty(key, Integer.toString(value));
}
public void setProperty(String key, long value) {
setProperty(key, Long.toString(value));
}
public void setProperty(String key, boolean value) {
setProperty(key, Boolean.toString(value));
}
public void setProperty(String key, String... values) {
Objects.requireNonNull(values, "values");
for (int i = 0; i < values.length; i++) {
Objects.requireNonNull(values[i], "values[" + i + "]");
}
setProperty(key, String.join(",", values));
}
public Properties toProperties() {
return properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy