01: package ru.emdev.EmForge.svn;
02:
03: import org.tmatesoft.svn.core.SVNException;
04: import org.tmatesoft.svn.core.io.SVNRepository;
05:
06: /** Creates Subversion Repository
07: *
08: * @author akakunin
09: *
10: */
11: public interface SvnRepositoryFactory {
12: /** Creates and returns Subversion Repository Connector
13: *
14: * @return
15: */
16: public SVNRepository getSvnRepository() throws SVNException;
17:
18: public Boolean isHasRepository();
19: }
|