org.jumpmind.symmetric.model.NodeChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symmetric-ds Show documentation
Show all versions of symmetric-ds Show documentation
SymmetricDS is an open source database synchronization solution. It is platform-independent,
web-enabled, and database-agnostic. SymmetricDS was first built to replicate changes between 'retail store'
databases and ad centralized 'corporate' database.
The newest version!
/*
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU Lesser General Public License (the
* "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* .
*
* 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 org.jumpmind.symmetric.model;
import java.util.Date;
/**
*
*/
public class NodeChannel {
private static final long serialVersionUID = -2493052366767513160L;
private Channel channel;
private NodeChannelControl nodeChannelControl;
public NodeChannel() {
channel = new Channel();
nodeChannelControl = new NodeChannelControl();
}
public NodeChannel(String channelId) {
channel = new Channel();
nodeChannelControl = new NodeChannelControl();
nodeChannelControl.setChannelId(channelId);
channel.setChannelId(channelId);
}
public String getChannelId() {
return channel.getChannelId();
}
public int getMaxBatchSize() {
return channel.getMaxBatchSize();
}
public void setMaxBatchSize(int maxBatchSize) {
channel.setMaxBatchSize(maxBatchSize);
}
public int getMaxBatchToSend() {
return channel.getMaxBatchToSend();
}
public void setMaxBatchToSend(int maxBatchToSend) {
channel.setMaxBatchToSend(maxBatchToSend);
}
public void setMaxDataToRoute(int maxDataToRoute) {
channel.setMaxDataToRoute(maxDataToRoute);
}
public int getMaxDataToRoute() {
return channel.getMaxDataToRoute();
}
public void setUseOldDataToRoute(boolean useOldDataToRoute) {
channel.setUseOldDataToRoute(useOldDataToRoute);
}
public boolean isUseOldDataToRoute() {
return channel.isUseOldDataToRoute();
}
public void setUseRowDataToRoute(boolean useRowDataToRoute) {
channel.setUseRowDataToRoute(useRowDataToRoute);
}
public boolean isUseRowDataToRoute() {
return channel.isUseRowDataToRoute();
}
public void setUsePkDataToRoute(boolean usePkDataToRoute) {
channel.setUsePkDataToRoute(usePkDataToRoute);
}
public boolean isUsePkDataToRoute() {
return channel.isUsePkDataToRoute();
}
public int getProcessingOrder() {
return channel.getProcessingOrder();
}
public String getBatchAlgorithm() {
return channel.getBatchAlgorithm();
}
public void setBatchAlgorithm(String batchAlgorithm) {
channel.setBatchAlgorithm(batchAlgorithm);
}
public void setEnabled(boolean enabled) {
channel.setEnabled(enabled);
}
public boolean isEnabled() {
return channel.isEnabled();
}
public boolean isSuspendEnabled() {
return nodeChannelControl.isSuspendEnabled();
}
public boolean isIgnoreEnabled() {
return nodeChannelControl.isIgnoreEnabled();
}
public String getNodeId() {
return nodeChannelControl.getNodeId();
}
public void setNodeId(String nodeId) {
nodeChannelControl.setNodeId(nodeId);
}
public void setLastExtractedTime(Date lastExtractedTime) {
nodeChannelControl.setLastExtractTime(lastExtractedTime);
}
public Date getLastExtractedTime() {
return nodeChannelControl.getLastExtractTime();
}
public void setIgnoreEnabled(boolean ignored) {
nodeChannelControl.setIgnoreEnabled(ignored);
}
public void setProcessingOrder(int priority) {
channel.setProcessingOrder(priority);
}
public void setChannelId(String id) {
channel.setChannelId(id);
nodeChannelControl.setChannelId(id);
}
public void setSuspendEnabled(boolean suspended) {
nodeChannelControl.setSuspendEnabled(suspended);
}
public Channel getChannel() {
return channel;
}
public NodeChannelControl getNodeChannelControl() {
return nodeChannelControl;
}
public long getExtractPeriodMillis() {
return channel.getExtractPeriodMillis();
}
public void setExtractPeriodMillis(long extractPeriodMillis) {
channel.setExtractPeriodMillis(extractPeriodMillis);
}
public void setContainsBigLobs(boolean containsBigLobs) {
this.channel.setContainsBigLob(containsBigLobs);
}
public boolean isContainsBigLob() {
return this.channel.isContainsBigLob();
}
}