*/
public OutboundVariable convertOutbound(Object data, OutboundContext outctx) throws ConversionException
{
// We don't actually need to cast to RawData, but we want to make sure
// that that's was we've really been given
RawData raw = (RawData) data;
return new NonNestedOutboundVariable(raw.toString());
}