SVNKit Home

Package org.tmatesoft.svn.core.io

This package provides a low-level API for direct interacting with a Subversion repository on the SVN protocol level.

See:
          Description

Interface Summary
ISVNDeltaConsumer The ISVNDeltaConsumer interface is implemented by receivers of diff windows.
ISVNEditor The ISVNEditor interface is used by SVNRepository to update versioned files/dirs, check out files/dirs from a repository, commit changes to a repository, take status of files/dirs, get differences between files.
ISVNFileRevisionHandler The ISVNFileRevisionHandler interface should be implemented for handling information about file revisions - that is file path, properties, revision properties against a particular revision.
ISVNLocationEntryHandler This public interface should be implemented for using within SVNRepository.getLocations(String, long, long[], ISVNLocationEntryHandler).
ISVNLockHandler The ISVNLockHandler interface is used to provide some extra processing of locked/unlocked paths.
ISVNReporter The ISVNReporter interface provides methods to describe the state of local paths in order to get the differences in revisions between those local paths and what is actually in the repository.
ISVNReporterBaton The ISVNReporterBaton interface should be implemented by callers of update, checkout, etc. operations of SVNRepository drivers in order to describe the state of local items.
ISVNSession The ISVNSession interface provides some extra handling operations over SVNRepository objects.
ISVNTunnelProvider The ISVNTunnelProvider is the interface for providers of tunnel command lines matching a specific "svn+xxx" tunnel scheme.
ISVNWorkspaceMediator The ISVNWorkspaceMediator interface is used for temporary data storage (mainly instructions and new text data for deltas) as well as for caching and getting some kind of wcprops.
 

Class Summary
SVNFileRevision The SVNFileRevision class represents information on what path a file is located at (in a repository) in a particular revision, contains file properties and revision properties for that revision.
SVNLocationEntry The SVNLocationEntry represents a mapping of a path to its revision.
SVNRepository The abstract class SVNRepository provides an interface for protocol specific drivers used for direct working with a Subversion repository.
SVNRepositoryFactory SVNRepositoryFactory is an abstract factory that is responsible for creating an appropriate SVNRepository driver specific for the protocol to use.
 

Package org.tmatesoft.svn.core.io Description

This package provides a low-level API for direct interacting with a Subversion repository on the SVN protocol level. The main class which manages all the repository access related work is SVNRepository. This class provides a developer a flexible interface which allows the developer not only to perform all basic SVN commands (such as checkout, commit, update, etc.) but to control those commands as well relying upon developer's implementations of ISVNReporter,ISVNEditor and other interfaces which are accepted by most of major methods of SVNRepository.

In the first place SVNRepository as well as the entire low-level API is intended for customizing developer's work with an SVN repository. So it has not the concept of Working Copy in its functionality.


SVNKit Home

Copyright © 2004-2007 TMate Software Ltd. All Rights Reserved.