Skip to content

Commit 565b740

Browse files
committed
Update README.md
1 parent a0e9803 commit 565b740

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,9 @@ Table of Contents
117117
15. [Bundles service](#bundles-service).
118118
16. [Asynchronous API](#asynchronous-api).
119119
17. [Getting serialized content from response](#getting-serialized-content-from-response).
120-
18.
121-
19.
122-
20. [Possible issues](#possible-issues).
123-
21. [Maven dependency to add jasperserver-rest-client to your app](#maven-dependency-to-add-jasperserver-rest-client-to-your-app).
124-
22. [License](#license).
120+
18. [Possible issues](#possible-issues).
121+
19. [Maven dependency to add jasperserver-rest-client to your app](#maven-dependency-to-add-jasperserver-rest-client-to-your-app).
122+
20. [License](#license).
125123

126124
Introduction
127125
-------------
@@ -246,15 +244,15 @@ In configuration file:
246244
```java
247245
logHttp=true
248246
logHttpEntity=true
249-
247+
```
250248
####Switching between JSON and XML
251249
You can configure a client to make request either with JSON or XML content.
252250
```java
253251
RestClientConfiguration configuration = new RestClientConfiguration("http://localhost:4444/jasperserver");
254252
configuration.setContentMimeType(MimeType.XML);
255253
configuration.setAcceptMimeType(MimeType.XML);
256254
```
257-
Or in configuration.properties:
255+
Or in `configuration.properties`:
258256
```
259257
contentMimeType=JSON
260258
acceptMimeType=JSON

0 commit comments

Comments
 (0)