blob: 985f6f0347ab5e0f59e9e0729cb75bb173cae052 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.orbekk.same;
/**
* An interface that returns a connection for a participant.
*
* When testing, this interface can be mocked to use local participants only.
*/
public interface ConnectionManager {
SameService getConnection(String url);
}
|