You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by bu...@apache.org on 2015/11/10 15:52:28 UTC

svn commit: r971992 - in /websites/staging/olingo/trunk/content: ./ doc/odata4/tutorials/batch/tutorial_batch.html

Author: buildbot
Date: Tue Nov 10 14:52:28 2015
New Revision: 971992

Log:
Staging update by buildbot for olingo

Modified:
    websites/staging/olingo/trunk/content/   (props changed)
    websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html

Propchange: websites/staging/olingo/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Nov 10 14:52:28 2015
@@ -1 +1 @@
-1713658
+1713660

Modified: websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html
==============================================================================
--- websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html (original)
+++ websites/staging/olingo/trunk/content/doc/odata4/tutorials/batch/tutorial_batch.html Tue Nov 10 14:52:28 2015
@@ -134,7 +134,7 @@ To do so, we will implement a new proces
 </ul>
 <h2 id="add-transactional-behaviour-to-the-data-store">Add transactional behaviour to the data store<a class="headerlink" href="#add-transactional-behaviour-to-the-data-store" title="Permanent link">&para;</a></h2>
 <p>Before we start with the actual processor implementation the data store has to be modified to provide transactional behavior. In real world service the underlaying database may supports transactional handling. This tutorial is not based on a database so we have implement a simple transaction handling by ourself.</p>
-<p>Add the folling methods to the class <code>myservice.mynamespace.data.Storage</code>. When a new transaction has been begun the data of the service is copied and stored in an instance variable. If <code>rollbackTransaction</code> has been called the current data is replaced with the previous copied one.</p>
+<p>Add the following methods to the class <code>myservice.mynamespace.data.Storage</code>. When a new transaction has been begun the data of the service is copied and stored in an instance variable. If <code>rollbackTransaction</code> has been called the current data is replaced with the previous copied one.</p>
 <div class="codehilite"><pre><span class="kd">private</span> <span class="n">List</span><span class="o">&lt;</span><span class="n">Entity</span><span class="o">&gt;</span> <span class="n">productListBeforeTransaction</span><span class="o">;</span>
 
 <span class="kd">public</span> <span class="kt">void</span> <span class="nf">beginTransaction</span><span class="o">()</span> <span class="o">{</span>