Skip to content
This repository was archived by the owner on Nov 13, 2019. It is now read-only.

Commit 8755699

Browse files
committed
Updated README
1 parent 8dd4285 commit 8755699

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#### develop-wip Fork
22
This branch (`develop-wip`) contains features not yet merged into the [upstream develop branch](https://github.com/jasminb/jsonapi-converter). Specifically it contains bug fixes for:
33

4-
* detecting and preventing recursions while resolving relationships ([#28](https://github.com/jasminb/jsonapi-converter/issues/28))
5-
* correctly parsing `to-many` and `to-one` responses while resolving relationships ([#30](https://github.com/jasminb/jsonapi-converter/issues/30))
6-
* supports storing relationship urls as string references ([#31](https://github.com/jasminb/jsonapi-converter/issues/31))
4+
* detecting and preventing recursions while resolving relationships ([#28](https://github.com/jasminb/jsonapi-converter/issues/28))
5+
* correctly parsing `to-many` and `to-one` responses while resolving relationships ([#30](https://github.com/jasminb/jsonapi-converter/issues/30))
6+
* supports storing relationship urls as string references ([#31](https://github.com/jasminb/jsonapi-converter/issues/31))
77
<pre>
88
@Types("node")
99
class Node {
@@ -17,20 +17,22 @@ This branch (`develop-wip`) contains features not yet merged into the [upstream
1717
// ...
1818
}
1919
</pre>
20-
* supports the modeling of JSON-API "links" objects using the new `Link` annotation
20+
* supports the modeling of JSON-API "links" objects using the new `Links` annotation
2121
<pre>
2222
@Types("node")
2323
class Node {
2424

2525
@Id
2626
String id;
2727

28-
@Link
28+
@Links
2929
Map&lt;String, ?&gt; links;
3030

3131
// ...
3232
}
33-
</pre>
33+
</pre>
34+
* Collections now expose pagination and meta information via `ResourceList` class
35+
3436
The instructions for building this branch are the same as the upstream, and are documented below.
3537

3638
#### jsonapi-converter

0 commit comments

Comments
 (0)