Skip to content
Snippets Groups Projects
Commit 2288a9fb authored by buczekp's avatar buczekp
Browse files

fixed unnecessary dependency in AdminConsole

SVN: 22101
parent bba03324
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,6 @@ import ch.systemsx.cisd.common.spring.HttpInvokerUtils; ...@@ -32,7 +32,6 @@ import ch.systemsx.cisd.common.spring.HttpInvokerUtils;
import ch.systemsx.cisd.common.utilities.ExtendedProperties; import ch.systemsx.cisd.common.utilities.ExtendedProperties;
import ch.systemsx.cisd.openbis.generic.shared.ICommonServer; import ch.systemsx.cisd.openbis.generic.shared.ICommonServer;
import ch.systemsx.cisd.openbis.generic.shared.dto.SessionContextDTO; import ch.systemsx.cisd.openbis.generic.shared.dto.SessionContextDTO;
import ch.systemsx.cisd.openbis.plugin.generic.shared.IGenericServer;
/** /**
* @author Franz-Josef Elmer * @author Franz-Josef Elmer
...@@ -64,9 +63,6 @@ public class AdminConsole ...@@ -64,9 +63,6 @@ public class AdminConsole
ICommonServer commonService = ICommonServer commonService =
HttpInvokerUtils.createServiceStub(ICommonServer.class, serverURL + SERVICE_PATH, HttpInvokerUtils.createServiceStub(ICommonServer.class, serverURL + SERVICE_PATH,
5 * DateUtils.MILLIS_PER_MINUTE); 5 * DateUtils.MILLIS_PER_MINUTE);
IGenericServer genericService =
HttpInvokerUtils.createServiceStub(IGenericServer.class, serverURL + SERVICE_PATH,
5 * DateUtils.MILLIS_PER_MINUTE);
SessionContextDTO session = commonService.tryToAuthenticate(userID, password); SessionContextDTO session = commonService.tryToAuthenticate(userID, password);
if (session == null) if (session == null)
......
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