static OutputXmlWriter getWriter(Version version, File outputFile)
throws JitterbitPluginException {
if ((version.getMajorVersion() == 1) && (version.getMinorVersion() == 0)) {
return new OutputXmlWriter_v10(outputFile);
}
throw new JitterbitPluginException("Cannot create an output writer for version " +
version + " of the Jitterbit Pipeline Plugin Specification.");
}