public void proceed() throws IOException {
WriterInterceptor nextInterceptor = getNextInterceptor();
if (nextInterceptor == null) {
throw new ProcessingException(LocalizationMessages.ERROR_INTERCEPTOR_WRITER_PROCEED());
}
nextInterceptor.aroundWriteTo(this);
}
@Override
public Object getEntity() {
return entity;