From f89aee7cc51238c3232646c00926346f9f8a4c03 Mon Sep 17 00:00:00 2001
From: jakubs <jakubs>
Date: Fri, 18 May 2012 09:18:19 +0000
Subject: [PATCH] SP-45, BIS-21 add unsupported method from the interface

SVN: 25296
---
 .../java/ch/systemsx/cisd/datamover/FileScannedStore.java   | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/datamover/source/java/ch/systemsx/cisd/datamover/FileScannedStore.java b/datamover/source/java/ch/systemsx/cisd/datamover/FileScannedStore.java
index 795e8002c41..02643640ac7 100644
--- a/datamover/source/java/ch/systemsx/cisd/datamover/FileScannedStore.java
+++ b/datamover/source/java/ch/systemsx/cisd/datamover/FileScannedStore.java
@@ -15,6 +15,7 @@
  */
 package ch.systemsx.cisd.datamover;
 
+import java.io.File;
 import java.util.ArrayList;
 import java.util.List;
 
@@ -129,4 +130,9 @@ final class FileScannedStore implements IScannedStore
     {
         return fileStore.toString();
     }
+
+    public File asFile(StoreItem item) throws UnsupportedOperationException
+    {
+        throw new UnsupportedOperationException("This operation is unsupported in this implementation");
+    }
 }
\ No newline at end of file
-- 
GitLab