Skip to content
Snippets Groups Projects
Commit 1660af3e authored by cramakri's avatar cramakri
Browse files

LMS-1465 Comments.

SVN: 15371
parent 8237b2be
No related branches found
No related tags found
No related merge requests found
......@@ -29,9 +29,15 @@ import ch.systemsx.cisd.openbis.dss.rpc.shared.IDssServiceRpc;
*/
public interface IDssServiceRpcFactory
{
/**
* Get an array of RPC service interfaces supported by the server.
*/
public abstract DssServiceRpcInterface[] getSupportedInterfaces(String serverURL,
boolean getServerCertificateFromServer) throws IncompatibleAPIVersionsException;
/**
* Get get RPC service interface specified by <code>iface</code>.
*/
public abstract <T extends IDssServiceRpc> T getService(DssServiceRpcInterface iface,
Class<T> ifaceClazz, String serverURL, boolean getServerCertificateFromServer)
throws IncompatibleAPIVersionsException;
......
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