// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.fasterxml.jackson.databind.deser; import com.fasterxml.jackson.core.JsonLocation; public class UnresolvedId { private final Object _id; private final JsonLocation _location; private final Class _type; public UnresolvedId(Object obj, Class class1, JsonLocation jsonlocation) { _id = obj; _type = class1; _location = jsonlocation; } public Object getId() { return _id; } public JsonLocation getLocation() { return _location; } public Class getType() { return _type; } public String toString() { Object obj = _id; String s; if (_type == null) { s = "NULL"; } else { s = _type.getName(); } return String.format("Object id [%s] (for %s) at %s", new Object[] { obj, s, _location }); } }