Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Commit 32ea97c

Browse files
Highlight features
1 parent 3e42f8b commit 32ea97c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
A simple Java API for handling cookies
44

5+
* [Unobstrusive](#json-data-binding) JSON Data Binding support
6+
* [RFC 6265](http://www.rfc-editor.org/rfc/rfc6265.txt) compliant
7+
* Enable [custom decoding](#converter)
8+
59
## Basic Usage
610

711
Create a cookie, valid across the entire site
@@ -65,9 +69,9 @@ cookies.remove( "name", Attributes.empty().path( "path" ) ); // removed!
6569

6670
*IMPORTANT! when deleting a cookie, you must pass the exact same path, domain and secure attributes that were used to set the cookie, unless you're relying on the [default attributes](#cookie-attributes).*
6771

68-
## JSON and Data Binding
72+
## JSON Data Binding
6973

70-
java-cookie provides unobstrusive JSON storage for cookies and data binding.
74+
java-cookie provides unobstrusive JSON storage for cookies with data binding.
7175

7276
When creating a cookie, you can pass a few supported types instead of String in the value. If you do so, java-cookie will store the stringified JSON representation of the value using [jackson databind](https://github.com/FasterXML/jackson-databind/#use-it).
7377

0 commit comments

Comments
 (0)