Skip to content
Snippets Groups Projects
Commit 79cd7d3c authored by buczekp's avatar buczekp
Browse files

[LMS-2172] dependencies

SVN: 20830
parent c0894ae5
No related branches found
No related tags found
No related merge requests found
Showing
with 14 additions and 10 deletions
...@@ -24,6 +24,7 @@ import ch.systemsx.cisd.common.mail.IMailClient; ...@@ -24,6 +24,7 @@ import ch.systemsx.cisd.common.mail.IMailClient;
import ch.systemsx.cisd.common.utilities.PropertyUtils; import ch.systemsx.cisd.common.utilities.PropertyUtils;
import ch.systemsx.cisd.etlserver.AbstractStorageProcessor; import ch.systemsx.cisd.etlserver.AbstractStorageProcessor;
import ch.systemsx.cisd.etlserver.ITypeExtractor; import ch.systemsx.cisd.etlserver.ITypeExtractor;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container;
import ch.systemsx.cisd.openbis.dss.generic.shared.dto.DataSetInformation; import ch.systemsx.cisd.openbis.dss.generic.shared.dto.DataSetInformation;
/** /**
......
...@@ -25,6 +25,7 @@ import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel; ...@@ -25,6 +25,7 @@ import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
import ch.systemsx.cisd.base.exceptions.IOExceptionUnchecked; import ch.systemsx.cisd.base.exceptions.IOExceptionUnchecked;
import ch.systemsx.cisd.common.filesystem.FileUtilities; import ch.systemsx.cisd.common.filesystem.FileUtilities;
import ch.systemsx.cisd.hdf5.IHDF5SimpleWriter; import ch.systemsx.cisd.hdf5.IHDF5SimpleWriter;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container;
/** /**
* Takes the hierarchical structure of a file and applies it to an HDF5 container. * Takes the hierarchical structure of a file and applies it to an HDF5 container.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.etlserver.hdf5; package ch.systemsx.cisd.openbis.dss.generic.shared.content;
import java.util.BitSet; import java.util.BitSet;
import java.util.Date; import java.util.Date;
......
...@@ -30,7 +30,6 @@ import ch.systemsx.cisd.common.io.IContent; ...@@ -30,7 +30,6 @@ import ch.systemsx.cisd.common.io.IContent;
import ch.systemsx.cisd.common.io.IHierarchicalContent; import ch.systemsx.cisd.common.io.IHierarchicalContent;
import ch.systemsx.cisd.common.io.IHierarchicalContentFactory; import ch.systemsx.cisd.common.io.IHierarchicalContentFactory;
import ch.systemsx.cisd.common.io.IHierarchicalContentNode; import ch.systemsx.cisd.common.io.IHierarchicalContentNode;
import ch.systemsx.cisd.etlserver.hdf5.Hdf5Container;
import ch.systemsx.cisd.hdf5.IHDF5SimpleReader; import ch.systemsx.cisd.hdf5.IHDF5SimpleReader;
/** /**
...@@ -38,8 +37,7 @@ import ch.systemsx.cisd.hdf5.IHDF5SimpleReader; ...@@ -38,8 +37,7 @@ import ch.systemsx.cisd.hdf5.IHDF5SimpleReader;
* *
* @author Piotr Buczek * @author Piotr Buczek
*/ */
public class HDF5ContainerBasedHierarchicalContentNode extends class HDF5ContainerBasedHierarchicalContentNode extends DefaultFileBasedHierarchicalContentNode
DefaultFileBasedHierarchicalContentNode // TODO make package protected
{ {
private final Hdf5Container hdf5Container; private final Hdf5Container hdf5Container;
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.etlserver.hdf5; package ch.systemsx.cisd.openbis.dss.generic.shared.content;
import java.io.File; import java.io.File;
......
...@@ -22,8 +22,9 @@ import java.util.Properties; ...@@ -22,8 +22,9 @@ import java.util.Properties;
import ch.systemsx.cisd.base.tests.AbstractFileSystemTestCase; import ch.systemsx.cisd.base.tests.AbstractFileSystemTestCase;
import ch.systemsx.cisd.common.filesystem.FileUtilities; import ch.systemsx.cisd.common.filesystem.FileUtilities;
import ch.systemsx.cisd.etlserver.IStorageProcessorTransactional.IStorageProcessorTransaction; import ch.systemsx.cisd.etlserver.IStorageProcessorTransactional.IStorageProcessorTransaction;
import ch.systemsx.cisd.etlserver.hdf5.Hdf5Container.IHdf5ReaderClient;
import ch.systemsx.cisd.hdf5.IHDF5SimpleReader; import ch.systemsx.cisd.hdf5.IHDF5SimpleReader;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container.IHdf5ReaderClient;
/** /**
* Tests for {@link Hdf5StorageProcessor}. * Tests for {@link Hdf5StorageProcessor}.
......
...@@ -22,8 +22,9 @@ import java.io.IOException; ...@@ -22,8 +22,9 @@ import java.io.IOException;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import org.testng.AssertJUnit; import org.testng.AssertJUnit;
import ch.systemsx.cisd.etlserver.hdf5.Hdf5Container.IHdf5ReaderClient;
import ch.systemsx.cisd.hdf5.IHDF5SimpleReader; import ch.systemsx.cisd.hdf5.IHDF5SimpleReader;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container.IHdf5ReaderClient;
/** /**
* Helper class that verifies that a file structure is matched by the HDF5 structure. * Helper class that verifies that a file structure is matched by the HDF5 structure.
......
...@@ -24,10 +24,11 @@ import org.testng.annotations.BeforeMethod; ...@@ -24,10 +24,11 @@ import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import ch.systemsx.cisd.base.tests.AbstractFileSystemTestCase; import ch.systemsx.cisd.base.tests.AbstractFileSystemTestCase;
import ch.systemsx.cisd.etlserver.hdf5.Hdf5Container.IHdf5ReaderClient;
import ch.systemsx.cisd.etlserver.hdf5.Hdf5Container.IHdf5WriterClient;
import ch.systemsx.cisd.hdf5.IHDF5SimpleReader; import ch.systemsx.cisd.hdf5.IHDF5SimpleReader;
import ch.systemsx.cisd.hdf5.IHDF5SimpleWriter; import ch.systemsx.cisd.hdf5.IHDF5SimpleWriter;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container.IHdf5ReaderClient;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container.IHdf5WriterClient;
/** /**
* @author Chandrasekhar Ramakrishnan * @author Chandrasekhar Ramakrishnan
......
...@@ -23,8 +23,9 @@ import org.testng.annotations.BeforeMethod; ...@@ -23,8 +23,9 @@ import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import ch.systemsx.cisd.base.tests.AbstractFileSystemTestCase; import ch.systemsx.cisd.base.tests.AbstractFileSystemTestCase;
import ch.systemsx.cisd.etlserver.hdf5.Hdf5Container.IHdf5ReaderClient;
import ch.systemsx.cisd.hdf5.IHDF5SimpleReader; import ch.systemsx.cisd.hdf5.IHDF5SimpleReader;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container;
import ch.systemsx.cisd.openbis.dss.generic.shared.content.Hdf5Container.IHdf5ReaderClient;
/** /**
* @author Chandrasekhar Ramakrishnan * @author Chandrasekhar Ramakrishnan
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment