<cfcomponent extendsjava="org.tmatesoft.svn.core.wc.ISVNConflictHandler">
<cffunction name="init" returntype="any">
<cfargument name="classLoader" type="any" required="true">
<cfset variables.instance.classLoader = arguments.classLoader />
<cfreturn this />
</cffunction>
<cffunction name="handleConflict" returntype="any">
<cfset var svnConflictChoice = variables.instance.classLoader.create("org.tmatesoft.svn.core.wc.SVNConflictChoice") />
<cfset var svnConflictResult = variables.instance.classLoader.create("org.tmatesoft.svn.core.wc.SVNConflictResult").init(svnConflictChoice.THEIRS_FULL, null) />
<cfreturn svnConflictResult />
</cffunction>