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 void
close(SVNRepositoryImpl repository)
java.io.InputStream
getInputStream()
java.io.OutputStream
getOutputStream()
void
handleExceptionOnOpen(SVNRepositoryImpl repository, SVNException exception)
boolean
isConnected(SVNRepositoryImpl repository)
boolean
isStale()
void
open(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
-
-