This repository was archived by the owner on Nov 11, 2022. It is now read-only.
File tree 6 files changed +27
-5
lines changed
javadoc/jackson-databind-docs
src/main/java/com/google/cloud/dataflow/sdk/coders
6 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 276
276
<location >${basedir} /../javadoc/guava-docs</location >
277
277
</offlineLink >
278
278
<offlineLink >
279
- <url >http://fasterxml.github.io/jackson-annotations/javadoc/2.4 /</url >
279
+ <url >http://fasterxml.github.io/jackson-annotations/javadoc/2.7 /</url >
280
280
<location >${basedir} /../javadoc/jackson-annotations-docs</location >
281
281
</offlineLink >
282
282
<offlineLink >
283
- <url >http://fasterxml.github.io/jackson-databind/javadoc/2.4 /</url >
283
+ <url >http://fasterxml.github.io/jackson-databind/javadoc/2.7 /</url >
284
284
<location >${basedir} /../javadoc/jackson-databind-docs</location >
285
285
</offlineLink >
286
286
<offlineLink >
Original file line number Diff line number Diff line change 1
1
com.fasterxml.jackson.databind
2
2
com.fasterxml.jackson.databind.annotation
3
+ com.fasterxml.jackson.databind.cfg
4
+ com.fasterxml.jackson.databind.deser
5
+ com.fasterxml.jackson.databind.deser.impl
6
+ com.fasterxml.jackson.databind.deser.std
7
+ com.fasterxml.jackson.databind.exc
8
+ com.fasterxml.jackson.databind.ext
9
+ com.fasterxml.jackson.databind.introspect
10
+ com.fasterxml.jackson.databind.jsonFormatVisitors
11
+ com.fasterxml.jackson.databind.jsonschema
12
+ com.fasterxml.jackson.databind.jsontype
13
+ com.fasterxml.jackson.databind.jsontype.impl
14
+ com.fasterxml.jackson.databind.module
15
+ com.fasterxml.jackson.databind.node
16
+ com.fasterxml.jackson.databind.ser
17
+ com.fasterxml.jackson.databind.ser.impl
18
+ com.fasterxml.jackson.databind.ser.std
19
+ com.fasterxml.jackson.databind.type
20
+ com.fasterxml.jackson.databind.util
Original file line number Diff line number Diff line change 74
74
<google-clients .version>1.21.0</google-clients .version>
75
75
<guava .version>19.0</guava .version>
76
76
<hamcrest .version>1.3</hamcrest .version>
77
- <jackson .version>2.4.2 </jackson .version>
77
+ <jackson .version>2.7.0 </jackson .version>
78
78
<joda .version>2.4</joda .version>
79
79
<junit .version>4.11</junit .version>
80
80
<protobuf .version>2.5.0</protobuf .version>
Original file line number Diff line number Diff line change 253
253
<location >${basedir} /../javadoc/hamcrest-docs</location >
254
254
</offlineLink >
255
255
<offlineLink >
256
- <url >http://fasterxml.github.io/jackson-annotations/javadoc/2.4 /</url >
256
+ <url >http://fasterxml.github.io/jackson-annotations/javadoc/2.7 /</url >
257
257
<location >${basedir} /../javadoc/jackson-annotations-docs</location >
258
258
</offlineLink >
259
259
<offlineLink >
260
- <url >http://fasterxml.github.io/jackson-databind/javadoc/2.4 /</url >
260
+ <url >http://fasterxml.github.io/jackson-databind/javadoc/2.7 /</url >
261
261
<location >${basedir} /../javadoc/jackson-databind-docs</location >
262
262
</offlineLink >
263
263
<offlineLink >
Original file line number Diff line number Diff line change 31
31
*
32
32
* @param <T> the type of values being transcoded
33
33
*/
34
+ @ Deprecated
34
35
public abstract class KvCoderBase <T > extends StandardCoder <T > {
35
36
/**
36
37
* A constructor used only for decoding from JSON.
37
38
*
38
39
* @param typeId present in the JSON encoding, but unused
39
40
* @param isPairLike present in the JSON encoding, but unused
40
41
*/
42
+ @ Deprecated
41
43
@ JsonCreator
42
44
public static KvCoderBase <?> of (
43
45
// N.B. typeId is a required parameter here, since a field named "@type"
Original file line number Diff line number Diff line change 30
30
* parameters). This should be removed in favor of a better workaround.
31
31
* @param <T> the type of values being transcoded
32
32
*/
33
+ @ Deprecated
33
34
public abstract class MapCoderBase <T > extends StandardCoder <T > {
35
+ @ Deprecated
34
36
@ JsonCreator
35
37
public static MapCoderBase <?> of (
36
38
// N.B. typeId is a required parameter here, since a field named "@type"
You can’t perform that action at this time.
0 commit comments