String xml = new String( input, IoUtils.UTF8_CHARSET );
GuidedDecisionTree model = GuidedDecisionTreeXMLPersistence.getInstance().unmarshal( xml );
String drl = new StringBuilder().append( GuidedDecisionTreeDRLPersistence.getInstance().marshal( model ) ).toString();
return new FormatConversionResult( getDestinationName( name,
hasDSLSentences( model ) ),
drl.getBytes( IoUtils.UTF8_CHARSET ) );
}