Skip to content

Commit

Permalink
Removed SSLContainerAbstractTestCast until build is modified to support
Browse files Browse the repository at this point in the history
use of appropriate/necessary keystore.

Change-Id: I4541e6bdee982af0aad178f4520862bd4bc2b0e7
  • Loading branch information
scottslewis committed Aug 6, 2015
1 parent 8e33f78 commit 6d1f56c
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -12,8 +12,11 @@
package org.eclipse.ecf.tests.connect;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.eclipse.ecf.core.ContainerFactory;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.IContainerListener;
import org.eclipse.ecf.core.events.IContainerConnectedEvent;
Expand Down Expand Up @@ -56,6 +59,13 @@ public void handleEvent(IContainerEvent event) {
});
}

protected IContainer createServer() throws Exception {
Map props = new HashMap();
props.put("id",serverID);
props.put("needClientAuth", Boolean.TRUE);
return ContainerFactory.getDefault().createContainer(getServerContainerName(), props);
}

/*
* (non-Javadoc)
*
Expand Down

0 comments on commit 6d1f56c

Please sign in to comment.