125126127128129130131132
@Override public void commit() throws LazyCommitFailedException { try { ((ResponseWrapper) getResponse()).commit(); } catch (IOException e) { throw new LazyCommitFailedException(e); } }
118119120121122123124125
@Override public void commitHeaders() throws LazyCommitFailedException { try { ((ResponseWrapper) getResponse()).commitHeaders(); } catch (IOException e) { throw new LazyCommitFailedException(e); } }
132133134135136137138139
123124125126127128129130