72737475767778
if (m_obj instanceof Binary) { return ((Binary)m_obj).getInputStream(); } throw new IntegrationException("err.integration.inputStream"); }
9899100101102103104105106107108
{ return new InputStreamReader(((Binary)m_obj).getInputStream(), m_sEncoding); } catch (UnsupportedEncodingException e) { throw new IntegrationException("err.integration.io", e); } } throw new IntegrationException("err.integration.reader"); }
128129130131132133134135136137138
{ return new Binary(((String)m_obj).getBytes(m_sEncoding)); } catch (UnsupportedEncodingException e) { throw new IntegrationException("err.integration.io", e); } } throw new IntegrationException("err.integration.binary"); }
158159160161162163164165166167168
{ return new String(((Binary)m_obj).getData(), m_sEncoding); } catch (UnsupportedEncodingException e) { throw new IntegrationException("err.integration.io", e); } } throw new IntegrationException("err.integration.string"); }
356357358359360361362363364365366
{ Schema schema = element.getType().getSchema(); if (schema == null) { throw new IntegrationException("err.integration.format.missingEnvelopeHeaderNS", new Object[]{part}); } schema.addItem(element); }
36373839404142
/** * @see nexj.core.integration.Input#getInputStream() */ public InputStream getInputStream() throws IntegrationException { throw new IntegrationException("err.integration.inputStream"); }
52535455565758
/** * @see nexj.core.integration.Input#getBinary() */ public Binary getBinary() throws IntegrationException { throw new IntegrationException("err.integration.binary"); }
68697071727374757677
{ IOUtil.copy(writer, m_reader); } catch (IOException e) { throw new IntegrationException("err.integration.io", e); } return writer.toString(); }
658659660661662663664665
} } } catch (IOException e) { throw new IntegrationException("err.integration.io", e); } }
34353637383940