org.apache.subversion.javahl.remote.JavaHLRemoteAccessUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svnkit-javahl16 Show documentation
Show all versions of svnkit-javahl16 Show documentation
SVNKit Java(tm) Subversion JavaHL API implementation
package org.apache.subversion.javahl.remote;
import org.apache.subversion.javahl.ISVNEditor;
import org.apache.subversion.javahl.callback.RemoteStatus;
public class JavaHLRemoteAccessUtil {
public static ISVNEditor remoteStatusCallbackAsEditor(RemoteStatus callback) {
return new StatusEditor(callback);
}
}