Skip to content

Commit bb5aab3

Browse files
committed
Update CBOR Jackson codec Javadoc
See spring-projectsgh-20513
1 parent 97cd9dd commit bb5aab3

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

spring-web/src/main/java/org/springframework/http/codec/cbor/Jackson2CborDecoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434

3535
/**
3636
* Decode bytes into CBOR and convert to Object's with Jackson 2.x.
37-
* Stream decoding is not supported yet.
37+
*
38+
* <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Stream decoding is currently not supported</a>.
3839
*
3940
* @author Sebastien Deleuze
4041
* @since 5.2
4142
* @see Jackson2CborEncoder
42-
* @see <a href="https://github.com/spring-projects/spring-framework/issues/20513">Add CBOR support to WebFlux</a>
4343
* @deprecated since 7.0 in favor of {@link JacksonCborDecoder}
4444
*/
4545
@Deprecated(since = "7.0", forRemoval = true)

spring-web/src/main/java/org/springframework/http/codec/cbor/Jackson2CborEncoder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535

3636
/**
3737
* Encode from an {@code Object} to bytes of CBOR objects using Jackson 2.x.
38-
* Stream encoding is not supported yet.
38+
*
39+
* <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Stream encoding is currently not supported</a>.
3940
*
4041
* @author Sebastien Deleuze
4142
* @since 5.2

spring-web/src/main/java/org/springframework/http/codec/cbor/JacksonCborDecoder.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@
3333
/**
3434
* Decode bytes into CBOR and convert to Objects with Jackson 3.x.
3535
*
36-
* <p>Stream decoding is currently not supported.
36+
* <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Stream decoding is currently not supported</a>.
3737
*
3838
* @author Sebastien Deleuze
3939
* @since 7.0
4040
* @see JacksonCborEncoder
41-
* @see <a href="https://github.com/spring-projects/spring-framework/issues/20513">Add CBOR support to WebFlux</a>
4241
*/
4342
public class JacksonCborDecoder extends AbstractJacksonDecoder<CBORMapper> {
4443

spring-web/src/main/java/org/springframework/http/codec/cbor/JacksonCborEncoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
/**
3535
* Encode from an {@code Object} to bytes of CBOR objects using Jackson 3.x.
3636
*
37-
* <p>Stream encoding is currently not supported.
37+
* <p><a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Stream encoding is currently not supported</a>.
3838
*
3939
* @author Sebastien Deleuze
4040
* @since 7.0
4141
* @see JacksonCborDecoder
42-
* @see <a href="https://github.com/spring-projects/spring-framework/issues/20513">Add CBOR support to WebFlux</a>
42+
* @see <a href="https://github.com/FasterXML/jackson-dataformats-binary/issues/110">Add support for non-blocking ("async") CBOR parsing</a>
4343
*/
4444
public class JacksonCborEncoder extends AbstractJacksonEncoder<CBORMapper> {
4545

0 commit comments

Comments
 (0)