Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit ff19172

Browse files
author
Luca Marchesini
committed
[doc]
* got rid of doc.sh * redirect root page to first child * fixed errors due to ArrayList<T> being interpreted as invalid markup
1 parent 1d7f107 commit ff19172

8 files changed

Lines changed: 8 additions & 70 deletions

File tree

doc/3/controllers/collection/list/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Returns a `ConcurrentHashMap<String, Object>` containing the following propertie
2929
| Property | Type | Description |
3030
| ------------- | ------------------- | ------------------------------------------------------------------ |
3131
| `type` | <pre>String</pre> | Types of returned collections <br/>(`all`, `realtime` or `stored`) |
32-
| `collections` | <pre>ArrayList<Object></pre> | List of collections |
32+
| `collections` | `ArrayList<Object>` | List of collections |
3333
| `from` | <pre>Integer</pre> | Offset of the first result |
3434
| `size` | <pre>Integer</pre> | Maximum number of returned results |
3535

doc/3/controllers/collection/validate-specifications/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ It contains the following properties:
4343
| Property | Type | Description |
4444
| ------------- | ---------------------------- | ---------------------------- |
4545
| `valid` | <pre>Boolean</pre> | Specifications validity |
46-
| `details` | <pre>ArrayList<String></pre> | Specifications errors |
46+
| `details` | `ArrayList<String>` | Specifications errors |
4747
| `description` | <pre>String</pre> | Global description of errors |
4848

4949
## Usage

doc/3/controllers/document/m-delete/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ throws NotConnectedException, InternalException
2626
| ------------------ | ------------------------------------------------------- | --------------------------------- |
2727
| `index` | <pre>String</pre> | Index name |
2828
| `collection` | <pre>String</pre> | Collection name |
29-
| `ids` | <pre>ArrayList<String></pre> | Document IDs |
29+
| `ids` | `ArrayList<String>` | Document IDs |
3030
---
3131

3232
## Return

doc/3/controllers/document/m-get/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ throws NotConnectedException, InternalException
2626
| ------------------ | ------------------------------------------------------- | --------------------------------- |
2727
| `index` | <pre>String</pre> | Index name |
2828
| `collection` | <pre>String</pre> | Collection name |
29-
| `ids` | <pre>ArrayList<String></pre> | Document IDs |
29+
| `ids` | `ArrayList<String>` | Document IDs |
3030
---
3131

3232
## Return

doc/3/controllers/index/m-delete/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CompletableFuture<ArrayList<String>> mDelete(final ArrayList<String> indexes)
1818

1919
| Argument | Type | Description |
2020
|-----------|-------------------|-----------------------|
21-
| `indexes` | <pre>ArrayList<String></pre> | List of indexes names |
21+
| `indexes` | `ArrayList<String>` | List of indexes names |
2222

2323
## Return
2424

doc/3/controllers/realtime/subscribe/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public CompletableFuture<String> subscribe(
2323

2424
| Argument | Type | Description |
2525
|--------------|-----------------------------------------|----------------------------------------------------------------------------------------------------------------|
26-
| `index` | <pre>String/pre> | Index name |
26+
| `index` | <pre>String</pre> | Index name |
2727
| `collection` | <pre>String</pre> | Collection name |
2828
| `filters` | <pre>ConcurrentHashMap<String, Object></pre> | ConcurrentHashMap representing a set of filters following [Koncorde syntax](/core/2/guides/cookbooks/realtime-api/terms) |
2929
| `handler` | <pre>NotificationHandler</pre> | Handler function to handle notifications |

doc/3/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ order: 9
55
title: JAVA SDK
66
description: JAVA SDK 3.x
77
---
8+
9+
<RedirectToFirstChild />

doc/doc.sh

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)