use new store-api

This commit is contained in:
Sebastian Sdorra
2010-12-05 19:42:52 +01:00
parent f5e41495c6
commit 49b088723b
8 changed files with 102 additions and 23 deletions

View File

@@ -35,6 +35,7 @@ package sonia.scm.repository;
//~--- non-JDK imports --------------------------------------------------------
import com.google.inject.Inject;
import com.google.inject.Singleton;
import org.tmatesoft.svn.core.SVNException;
@@ -42,6 +43,7 @@ import org.tmatesoft.svn.core.io.SVNRepositoryFactory;
import sonia.scm.Type;
import sonia.scm.plugin.ext.Extension;
import sonia.scm.store.StoreFactory;
//~--- JDK imports ------------------------------------------------------------
@@ -67,6 +69,20 @@ public class SvnRepositoryHandler
/** Field description */
public static final Type TYPE = new Type(TYPE_NAME, TYPE_DISPLAYNAME);
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*
*
* @param storeFactory
*/
@Inject
public SvnRepositoryHandler(StoreFactory storeFactory)
{
super(storeFactory);
}
//~--- get methods ----------------------------------------------------------
/**