IntegrityScmProviderRepository iRepo = (IntegrityScmProviderRepository) repository;
try
{
Sandbox siSandbox = iRepo.getSandbox();
File memberFile = new File( workingDirectory.getAbsoluteFile() + File.separator + filename );
Response res = siSandbox.unlock( memberFile, filename );
int exitCode = res.getExitCode();
boolean success = ( exitCode == 0 ? true : false );
result = new ScmResult( res.getCommandString(), "", "Exit Code: " + exitCode, success );
}
catch ( APIException aex )