Author: buildbot
Date: Wed Oct 25 06:18:35 2017
New Revision: 1020011
Log:
Staging update by buildbot for olingo
Modified:
websites/staging/olingo/trunk/content/ (props changed)
websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html
Propchange: websites/staging/olingo/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Oct 25 06:18:35 2017
@@ -1 +1 @@
-1813249
+1813251
Modified:
websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html
==============================================================================
---
websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html
(original)
+++
websites/staging/olingo/trunk/content/doc/odata4/tutorials/action/tutorial_bound_action.html
Wed Oct 25 06:18:35 2017
@@ -99,12 +99,12 @@
}
h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink,
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink,
dt:hover > .elementid-permalink { visibility: visible }</style>
<h1 id="how-to-build-an-odata-service-with-olingo-v4">How to build an OData
Service with Olingo V4<a class="headerlink"
href="#how-to-build-an-odata-service-with-olingo-v4" title="Permanent
link">¶</a></h1>
-<h1 id="part-6-bound-actions">Part 6: Bound Actions<a class="headerlink"
href="#part-6-bound-actions" title="Permanent link">¶</a></h1>
+<h1 id="part-10-bound-actions">Part 10: Bound Actions<a class="headerlink"
href="#part-10-bound-actions" title="Permanent link">¶</a></h1>
<p><strong>Table of Contents</strong></p>
<div class="toc">
<ul>
<li><a href="#how-to-build-an-odata-service-with-olingo-v4">How to build an
OData Service with Olingo V4</a></li>
-<li><a href="#part-6-bound-actions">Part 6: Bound Actions</a><ul>
+<li><a href="#part-10-bound-actions">Part 10: Bound Actions</a><ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#preparation">Preparation</a></li>
<li><a href="#implementation">Implementation</a><ul>
@@ -339,7 +339,6 @@ After finishing the implementation the d
<p>In the second method, we are returning a custom object
DemoEntityActionResult. This holds the entity and the status as to whether the
entity is created or just returned. This information is used to set the
response status</p>
<div class="codehilite"><pre> <span class="p">::::</span><span
class="n">java</span>
-
<span class="n">public</span> <span class="n">class</span> <span
class="n">DemoEntityActionResult</span> <span class="p">{</span>
<span class="n">private</span> <span class="n">Entity</span> <span
class="n">entity</span><span class="p">;</span>
<span class="n">private</span> <span class="n">boolean</span> <span
class="n">created</span> <span class="p">=</span> <span
class="n">false</span><span class="p">;</span>