You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by de...@apache.org on 2014/07/01 08:48:50 UTC

svn commit: r1606993 - /olingo/site/trunk/content/doc/tutorials/CustomODataJPAProcessor.mdtext

Author: deepa
Date: Tue Jul  1 06:48:49 2014
New Revision: 1606993

URL: http://svn.apache.org/r1606993
Log:
CMS commit to olingo by deepa

Modified:
    olingo/site/trunk/content/doc/tutorials/CustomODataJPAProcessor.mdtext

Modified: olingo/site/trunk/content/doc/tutorials/CustomODataJPAProcessor.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/tutorials/CustomODataJPAProcessor.mdtext?rev=1606993&r1=1606992&r2=1606993&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/tutorials/CustomODataJPAProcessor.mdtext (original)
+++ olingo/site/trunk/content/doc/tutorials/CustomODataJPAProcessor.mdtext Tue Jul  1 06:48:49 2014
@@ -45,9 +45,7 @@ a. Write a Custom OData JPA Processor by
           }
 
          }
-b. Write a Custom OData JPA Service Factory 
-Implement an OData JPA service factory to create an OData service with custom OData JPA Processor. The default service factory `org.apache.olingo.odata2.jpa.processor.api.ODataJPAServiceFactory` part of the library cannot be used. Hence, create a class by extending `org.apache.olingo.odata2.api.ODataServiceFactory`. Follow the steps below to hook an existing flow to a custom OData JPA Processor. Copy the entire code from `ODataJPAServiceFactory` and replace the code as shown below. 
-
+b. Write a Custom OData JPA Service Factory. Implement an OData JPA service factory to create an OData service with custom OData JPA Processor. The default service factory `org.apache.olingo.odata2.jpa.processor.api.ODataJPAServiceFactory` part of the library cannot be used. Hence, create a class by extending `org.apache.olingo.odata2.api.ODataServiceFactory`. Follow the steps below to hook an existing flow to a custom OData JPA Processor. Copy the entire code from `ODataJPAServiceFactory` and replace the code as shown below. 
 
 		  ODataSingleProcessor odataJPAProcessor = accessFactory.createODataProcessor(oDataJPAContext);