Interface ISVNConnector
-
- All Known Implementing Classes:
SVNAbstractTunnelConnector,SVNPlainConnector,SVNSSHConnector,SVNTunnelConnector
public interface ISVNConnector- Version:
- 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose(SVNRepositoryImpl repository)java.io.InputStreamgetInputStream()java.io.OutputStreamgetOutputStream()voidhandleExceptionOnOpen(SVNRepositoryImpl repository, SVNException exception)booleanisConnected(SVNRepositoryImpl repository)booleanisStale()voidopen(SVNRepositoryImpl repository)
-
-
-
Method Detail
-
open
void open(SVNRepositoryImpl repository) throws SVNException
- Throws:
SVNException
-
handleExceptionOnOpen
void handleExceptionOnOpen(SVNRepositoryImpl repository, SVNException exception) throws SVNException
- Throws:
SVNException
-
isConnected
boolean isConnected(SVNRepositoryImpl repository) throws SVNException
- Throws:
SVNException
-
close
void close(SVNRepositoryImpl repository) throws SVNException
- Throws:
SVNException
-
isStale
boolean isStale()
-
getOutputStream
java.io.OutputStream getOutputStream() throws java.io.IOException- Throws:
java.io.IOException
-
getInputStream
java.io.InputStream getInputStream() throws java.io.IOException- Throws:
java.io.IOException
-
-