org.jumpmind.symmetric.service.IConfigurationService 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.service;
import java.util.List;
import org.jumpmind.symmetric.model.Channel;
import org.jumpmind.symmetric.model.ChannelMap;
import org.jumpmind.symmetric.model.NodeChannel;
import org.jumpmind.symmetric.model.NodeGroupChannelWindow;
import org.jumpmind.symmetric.model.NodeGroupLink;
import org.jumpmind.symmetric.model.NodeGroupLinkAction;
/**
* Provides an API to configure data synchronizations.
*
* ,
*/
public interface IConfigurationService {
public List getGroupLinks();
public List getGroupLinksFor(String sourceGroupId);
public List getGroupLinksFor(String sourceNodeGroupId, String targetNodeGroupId);
public void saveChannel(Channel channel, boolean reloadChannels);
public void saveChannel(NodeChannel channel, boolean reloadChannels);
public void saveNodeChannel(NodeChannel channel, boolean reloadChannels);
public void saveNodeChannelControl(NodeChannel channel, boolean reloadChannels);
public void deleteChannel(Channel channel);
public List getNodeGroupChannelWindows(String nodeGroupId, String channelId);
public NodeGroupLinkAction getDataEventActionsByGroupId(String sourceGroupId, String targetGroupId);
public List getNodeChannels(boolean refreshExtractMillis);
public List getNodeChannels(String nodeId, boolean refreshExtractMillis);
public NodeChannel getNodeChannel(String channelId, boolean refreshExtractMillis);
public NodeChannel getNodeChannel(String channelId, String nodeId, boolean refreshExtractMillis);
public void reloadChannels();
public void autoConfigDatabase(boolean force);
/**
* Returns two sets of channel names, one for suspended channels and one for
* ignored.
*
* @param nodeId
* @return A Map with two entries, the sets of which will always be defined
* but may be empty.
*/
public ChannelMap getSuspendIgnoreChannelLists(String nodeId);
public ChannelMap getSuspendIgnoreChannelLists();
}