You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ch...@apache.org on 2015/09/17 12:39:41 UTC

svn commit: r1703561 - /olingo/site/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.mdtext

Author: chrish
Date: Thu Sep 17 10:39:41 2015
New Revision: 1703561

URL: http://svn.apache.org/r1703561
Log:
CMS commit to olingo by chrish

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.mdtext?rev=1703561&r1=1703560&r2=1703561&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/navigation/tutorial_navigation.mdtext Thu Sep 17 10:39:41 2015
@@ -580,9 +580,9 @@ The following snippet shows the implemen
         SerializerResult serializerResult = serializer.entityCollection(this.srvMetadata, edmEntityType, responseEntityCollection, opts);
 	
         // 4th: configure the response object: set the body, headers and status code
-	response.setContent(serializerResult.getContent());
-	response.setStatusCode(HttpStatusCode.OK.getStatusCode());
-	response.setHeader(HttpHeader.CONTENT_TYPE, responseFormat.toContentTypeString());   
+        response.setContent(serializerResult.getContent());
+        response.setStatusCode(HttpStatusCode.OK.getStatusCode());
+        response.setHeader(HttpHeader.CONTENT_TYPE, responseFormat.toContentTypeString());   
     }
 
 ## 3.3. Implement the to-one navigation