Mercurial > jhg
diff src/org/tmatesoft/hg/internal/remote/Connector.java @ 699:a483b2b68a2e
Provisional APIs and respective implementation for http, https and ssh remote repositories
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 08 Aug 2013 19:18:50 +0200 |
parents | 822f3a83ff57 |
children |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/internal/remote/Connector.java Tue Aug 06 21:18:33 2013 +0200 +++ b/src/org/tmatesoft/hg/internal/remote/Connector.java Thu Aug 08 19:18:50 2013 +0200 @@ -18,14 +18,15 @@ import java.io.InputStream; import java.io.OutputStream; -import java.net.URI; import java.util.Collection; import java.util.List; +import org.tmatesoft.hg.auth.HgAuthFailedException; import org.tmatesoft.hg.core.HgRemoteConnectionException; import org.tmatesoft.hg.core.Nodeid; import org.tmatesoft.hg.core.SessionContext; import org.tmatesoft.hg.repo.HgRemoteRepository.Range; +import org.tmatesoft.hg.repo.HgRemoteRepository.RemoteDescriptor; import org.tmatesoft.hg.repo.HgRuntimeException; /** @@ -46,10 +47,11 @@ static final String NS_BOOKMARKS = "bookmarks"; static final String NS_PHASES = "phases"; - void init(URI uri, SessionContext sessionContext, Object globalConfig) throws HgRuntimeException; + // note, #init shall not assume remote is instanceof RemoteConnectorDescriptor, but Adaptable to it, instead + void init(RemoteDescriptor remote, SessionContext sessionContext, Object globalConfig) throws HgRuntimeException; String getServerLocation(); // - void connect() throws HgRemoteConnectionException, HgRuntimeException; + void connect() throws HgAuthFailedException, HgRemoteConnectionException, HgRuntimeException; void disconnect() throws HgRemoteConnectionException, HgRuntimeException; void sessionBegin() throws HgRemoteConnectionException, HgRuntimeException; void sessionEnd() throws HgRemoteConnectionException, HgRuntimeException;