Package org.tmatesoft.svn.core.io
Interface ISVNWorkspaceMediator
- All Known Implementing Classes:
SVNCommitMediator
,SVNCommitMediator17
,SVNImportMediator
public interface 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.
- Since:
- 1.2
- Version:
- 1.3
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetWorkspaceProperty
(java.lang.String path, java.lang.String name) Retrieves an item's WC property from a".svn/wcprops"
administrative subdirectory.void
setWorkspaceProperty
(java.lang.String path, java.lang.String name, SVNPropertyValue value) Sets a new value for an item's WC property in a".svn/wcprops"
administrative subdirectory.
-
Method Details
-
getWorkspaceProperty
SVNPropertyValue getWorkspaceProperty(java.lang.String path, java.lang.String name) throws SVNException Retrieves an item's WC property from a".svn/wcprops"
administrative subdirectory.- Parameters:
path
- a WC item's pathname
- a property name- Returns:
- the value for the property
- Throws:
SVNException
- See Also:
-
setWorkspaceProperty
void setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value) throws SVNException Sets a new value for an item's WC property in a".svn/wcprops"
administrative subdirectory.- Parameters:
path
- a WC item's pathname
- a property namevalue
- a value for the property- Throws:
SVNException
- See Also:
-