summaryrefslogtreecommitdiff
path: root/src/core/src/data/io/AbstractMVDataWriter.java
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2014-10-23 12:31:09 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2015-04-14 07:44:59 +0200
commitbe6a717ea73730d023e8bcb50d96f4c73abaafa0 (patch)
treec55d3bb31484c18c54d2acd2327aa65601352848 /src/core/src/data/io/AbstractMVDataWriter.java
parent2c1f4b89818e018b8677d1d621ab98194b259509 (diff)
downloadsssync-be6a717ea73730d023e8bcb50d96f4c73abaafa0.tar.gz
sssync-be6a717ea73730d023e8bcb50d96f4c73abaafa0.tar.bz2
sssync-be6a717ea73730d023e8bcb50d96f4c73abaafa0.zip
Remove useless AbstractMVDataWriter,
Add a Pair type for Writers.
Diffstat (limited to 'src/core/src/data/io/AbstractMVDataWriter.java')
-rw-r--r--src/core/src/data/io/AbstractMVDataWriter.java70
1 files changed, 0 insertions, 70 deletions
diff --git a/src/core/src/data/io/AbstractMVDataWriter.java b/src/core/src/data/io/AbstractMVDataWriter.java
deleted file mode 100644
index 454e8ce..0000000
--- a/src/core/src/data/io/AbstractMVDataWriter.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * SSSync, a Simple and Stupid Synchronizer for data with multi-valued attributes
- * Copyright (C) 2014 Ludovic Pouzenc <ludovic@pouzenc.fr>
- *
- * This file is part of SSSync.
- *
- * SSSync is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * SSSync is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with SSSync. If not, see <http://www.gnu.org/licenses/>
- */
-
-package data.io;
-
-import java.util.Set;
-
-import data.MVDataEntry;
-
-/**
- * Stream-oriented abstract writer from a particular data source.
- * All derived writers should honor a dry-run mode.
- *
- * @author lpouzenc
- */
-public abstract class AbstractMVDataWriter implements MVDataWriter {
- //TODO : not so useful. Interface extraction was not a good idea ?
-
- /**
- * Dry-run mode flag (disabled by default)
- */
- protected boolean dryRun=false;
-
- /* (non-Javadoc)
- * @see data.io.MVDataWriter#isDryRun()
- */
- public boolean isDryRun() {
- return dryRun;
- }
-
- /* (non-Javadoc)
- * @see data.io.MVDataWriter#setDryRun(boolean)
- */
- public void setDryRun(boolean dryRun) {
- this.dryRun = dryRun;
- }
-
- /* (non-Javadoc)
- * @see data.io.MVDataWriter#insert(data.MVDataEntry)
- */
- @Override
- public abstract void insert(MVDataEntry newEntry) throws Exception;
- /* (non-Javadoc)
- * @see data.io.MVDataWriter#update(data.MVDataEntry, data.MVDataEntry, java.util.Set)
- */
- @Override
- public abstract void update(MVDataEntry updatedEntry, MVDataEntry originalEntry, Set<String> attrToUpdate) throws Exception;
- /* (non-Javadoc)
- * @see data.io.MVDataWriter#delete(data.MVDataEntry)
- */
- @Override
- public abstract void delete(MVDataEntry existingEntry) throws Exception;
-}