215216217218219220221222
@Override public void saveTo(final OutputStream out) { try { Util.copy(getInputStream(), out); } catch (IOException e) { throw new MechanizeException(e); } }