diff --git a/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java b/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java index 7ac550dac1b0fefbfa39d17fe1494a602a03a37a..89fc427369e62ce5673fcda7f94d433772858c44 100644 --- a/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java +++ b/java/org/slub/rosetta/dps/repository/plugin/storage/nfs/SLUBStoragePlugin.java @@ -459,7 +459,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler { /** copied from NFS Storage Plugin, enhanced with debugging info, * this combines full file path and creates parent directories if needed {@inheritDoc} */ - private File getStreamDirectory(String path, String fileName) { + File getStreamDirectory(String path, String fileName) { log.info("SLUBStoragePlugin.getStreamDirectory path='" + path + "' fileName='" + fileName + "'"); File newDir = new File(parameters.get(DIR_ROOT) + File.separator + path); log.debug("SLUBStoragePlugin.getStreamDirectory newDir.getAbsolutePath()=" + newDir.getAbsolutePath()); @@ -476,7 +476,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler { * @return calculated relative path as String * returns the path as string */ - private String getStreamRelativePath(StoredEntityMetaData storedEntityMetaData ) throws Exception { + String getStreamRelativePath(StoredEntityMetaData storedEntityMetaData) throws Exception { log.info("SLUBStoragePlugin.getStreamRelativePath()"); if ((null == storedEntityMetaData)) throw new AssertionError(); log.debug("SLUBStoragePlugin.getStreamRelativePath() assert fine");