org.apache.subversion.javahl.JavaHLObjectFactory 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;
import java.util.List;
import org.apache.subversion.javahl.types.NodeKind;
public class JavaHLObjectFactory {
public static CommitItem createCommitItem(String p, NodeKind nk, int sf, String u, String cu, long r, String mf) {
return new CommitItem(p, nk, sf, u, cu, r, mf);
}
public static ClientException createClientException(String message, Throwable cause, String source,
int aprError, List messageStack) {
return new ClientException(message, cause, source, aprError, messageStack);
}
}