Author: ramyav
Date: Tue May 28 07:15:04 2019
New Revision: 1860184
URL: http://svn.apache.org/viewvc?rev=1860184&view=rev
Log:
Changing hyperlinks
Modified:
olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext
Modified:
olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext
URL:
http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext?rev=1860184&r1=1860183&r2=1860184&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext
(original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/od4_basic_client_read.mdtext
Tue May 28 07:15:04 2019
@@ -33,8 +33,8 @@ With this Quickstart guide the runnable
project.
3. Create a class OlingoSampleApp.java under package
org.apache.olingo.samples.client.
- 4. Copy the entire [sample client code][1] into this class.
- 5. Copy the [sample pom file][1] into this projects pom.xml file.
+ 4. Copy the entire [sample client code](#sample) into this class.
+ 5. Copy [this sample pom into](#pom) into this projects pom.xml file.
6. Run OlingoSampleApp against sample Service
7. In order to fetch all the dependencies in the pom.xml file run
eclipse:eclipse command on the sample client project
@@ -157,7 +157,7 @@ For deletion of an entry just a DELETE r
final ODataDeleteResponse response = request.execute();
So the code for delete of an entry the DELETE request URI is an Entity for
which a key value is required for creation of the absolut uri. Via execute()
method the request is done against the uri and the responding http status code
is returned, which is, if the entry was deleted successfully, an HTTP Status:
204 No content.
-
+<a name="pom"></a>
##Sample pom.xml file
<?xml version="1.0" encoding="UTF-8"?>
@@ -262,7 +262,7 @@ So the code for delete of an entry the
</profile>
</profiles>
</project>
-
+<a name="sample"></a>
## OlingoSampleApp.java
/*