Skip to content
Snippets Groups Projects
Commit 7f26fe96 authored by felmer's avatar felmer
Browse files

minor bug at DSS startup fixed

SVN: 20269
parent cf9d73c8
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ import org.apache.log4j.Logger;
import ch.systemsx.cisd.common.exceptions.InvalidAuthenticationException;
import ch.systemsx.cisd.common.spring.IInvocationLoggerContext;
import ch.systemsx.cisd.common.utilities.IInitializable;
import ch.systemsx.cisd.openbis.generic.shared.IDataStoreService;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ExternalData;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.LinkModel;
......@@ -33,7 +34,7 @@ import ch.systemsx.cisd.openbis.generic.shared.dto.DatasetDescription;
/**
* @author Franz-Josef Elmer
*/
class DataStoreServiceLogger implements IDataStoreService
class DataStoreServiceLogger implements IDataStoreService, IInitializable
{
private static final String RESULT_SUCCESS = "";
......@@ -72,6 +73,11 @@ class DataStoreServiceLogger implements IDataStoreService
invocationStatusMessage, loggerContext.getElapsedTime()));
}
public void initialize()
{
log("initialize", "");
}
public int getVersion(String sessionToken)
{
log("getVersion", "SESSION(%s)", sessionToken);
......
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