Author: mibo
Date: Mon Apr 18 19:59:49 2016
New Revision: 1739816
URL: http://svn.apache.org/viewvc?rev=1739816&view=rev
Log:
Updated PathInfo
Modified:
olingo/site/trunk/content/doc/odata2/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext
Modified:
olingo/site/trunk/content/doc/odata2/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext
URL:
http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata2/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext?rev=1739816&r1=1739815&r2=1739816&view=diff
==============================================================================
---
olingo/site/trunk/content/doc/odata2/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext
(original)
+++
olingo/site/trunk/content/doc/odata2/tutorials/Olingo_Tutorial_Advanced_Service_Resolution.mdtext
Mon Apr 18 19:59:49 2016
@@ -60,12 +60,13 @@ A service init parameter (`org.apache.ol
</servlet-mapping>
</web-app>
-A processor implementation (e.g. `ODataSingleProcessor`) does have access to
an `ODataContext` object which will deliver a `ODataUriInfo` object. From this
class a processor implementation can access the service resolution information
which is as following:
+A processor implementation (e.g. `ODataSingleProcessor`) does have access to
an `ODataContext` object which will deliver a `PathInfo` object.
+From this class a processor implementation can access the service resolution
information which is as following:
-- URI:
*http://localhost:8080/odata.svc/[namespace]/[system]/Room('1')/Size/$value*
-- preceding path segments: *[namespace], [system]*
-- OData path segments: *Room('1'), Size, $value*
-- base URI: *http://localhost:8080/odata.svc/[namespace]/[system]/*
+ - URI:
*http://localhost:8080/odata.svc/[namespace]/[system]/Room('1')/Size/$value*
+ - preceding path segments: *[namespace], [system]*
+ - OData path segments: *Room('1'), Size, $value*
+ - base URI: *http://localhost:8080/odata.svc/[namespace]/[system]/*
**Sample Code**