File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,10 @@ public class StdTypeResolverBuilder
3535 * Whether type id should be exposed to deserializers or not
3636 */
3737 protected boolean _typeIdVisible = false ;
38-
38+
39+ /**
40+ * @since 2.16 (backported from Jackson 3.0)
41+ */
3942 protected Boolean _requireTypeIdForSubtypes ;
4043
4144 /**
@@ -56,6 +59,9 @@ public class StdTypeResolverBuilder
5659
5760 public StdTypeResolverBuilder () { }
5861
62+ /**
63+ * @since 2.16 (backported from Jackson 3.0)
64+ */
5965 public StdTypeResolverBuilder (JsonTypeInfo .Value settings ) {
6066 if (settings != null ) {
6167 _idType = settings .getIdType ();
@@ -70,6 +76,9 @@ public StdTypeResolverBuilder(JsonTypeInfo.Value settings) {
7076 }
7177 }
7278
79+ /**
80+ * @since 2.16 (backported from Jackson 3.0)
81+ */
7382 protected static String _propName (String propName , JsonTypeInfo .Id idType ) {
7483 if (propName == null ) {
7584 propName = idType .getDefaultPropertyName ();
You can’t perform that action at this time.
0 commit comments