Class SVNAbstractTunnelConnector
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.io.svn.SVNAbstractTunnelConnector
-
- All Implemented Interfaces:
ISVNConnector
- Direct Known Subclasses:
SVNTunnelConnector
public abstract class SVNAbstractTunnelConnector extends java.lang.Object implements ISVNConnector
- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Constructor Summary
Constructors Constructor Description SVNAbstractTunnelConnector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close(SVNRepositoryImpl repository)
void
free()
java.io.InputStream
getInputStream()
java.io.OutputStream
getOutputStream()
boolean
isConnected(SVNRepositoryImpl repos)
boolean
isStale()
boolean
occupy()
void
open(SVNRepositoryImpl repository, java.lang.String process)
void
open(SVNRepositoryImpl repository, java.lang.String[] command)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.tmatesoft.svn.core.internal.io.svn.ISVNConnector
handleExceptionOnOpen, open
-
-
-
-
Method Detail
-
open
public void open(SVNRepositoryImpl repository, java.lang.String process) throws SVNException
- Throws:
SVNException
-
open
public void open(SVNRepositoryImpl repository, java.lang.String[] command) throws SVNException
- Throws:
SVNException
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOException
- Specified by:
getInputStream
in interfaceISVNConnector
- Throws:
java.io.IOException
-
getOutputStream
public java.io.OutputStream getOutputStream() throws java.io.IOException
- Specified by:
getOutputStream
in interfaceISVNConnector
- Throws:
java.io.IOException
-
isConnected
public boolean isConnected(SVNRepositoryImpl repos) throws SVNException
- Specified by:
isConnected
in interfaceISVNConnector
- Throws:
SVNException
-
isStale
public boolean isStale()
- Specified by:
isStale
in interfaceISVNConnector
-
close
public void close(SVNRepositoryImpl repository) throws SVNException
- Specified by:
close
in interfaceISVNConnector
- Throws:
SVNException
-
free
public void free()
-
occupy
public boolean occupy()
-
-