public class ReadableObjectId extends Object
Modifier and Type | Class and Description |
---|---|
static class |
ReadableObjectId.Referring |
Modifier and Type | Field and Description |
---|---|
protected com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey |
_key |
protected LinkedList<ReadableObjectId.Referring> |
_referringProperties |
protected com.fasterxml.jackson.annotation.ObjectIdResolver |
_resolver |
Object |
id
Deprecated.
|
Object |
item
Deprecated.
Change visibility, if possible; prefer using
resolve() , which is able
to handle external id resolving mechanism. |
Constructor and Description |
---|
ReadableObjectId(Object id)
Deprecated.
|
ReadableObjectId(com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey key) |
Modifier and Type | Method and Description |
---|---|
void |
appendReferring(ReadableObjectId.Referring currentReferring) |
void |
bindItem(Object ob)
Method called to assign actual POJO to which ObjectId refers to: will
also handle referring properties, if any, by assigning POJO.
|
com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey |
getKey() |
boolean |
hasReferringProperties() |
Iterator<ReadableObjectId.Referring> |
referringProperties() |
Object |
resolve() |
void |
setResolver(com.fasterxml.jackson.annotation.ObjectIdResolver resolver) |
String |
toString() |
boolean |
tryToResolveUnresolved(DeserializationContext ctxt)
Method called by
DeserializationContext at the end of deserialization
if this Object Id was not resolved during normal processing. |
@Deprecated public Object item
resolve()
, which is able
to handle external id resolving mechanism.@Deprecated public final Object id
protected final com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey _key
protected LinkedList<ReadableObjectId.Referring> _referringProperties
protected com.fasterxml.jackson.annotation.ObjectIdResolver _resolver
@Deprecated public ReadableObjectId(Object id)
public ReadableObjectId(com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey key)
public void setResolver(com.fasterxml.jackson.annotation.ObjectIdResolver resolver)
public com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey getKey()
public void appendReferring(ReadableObjectId.Referring currentReferring)
public void bindItem(Object ob) throws IOException
IOException
public Object resolve()
public boolean hasReferringProperties()
public Iterator<ReadableObjectId.Referring> referringProperties()
public boolean tryToResolveUnresolved(DeserializationContext ctxt)
DeserializationContext
at the end of deserialization
if this Object Id was not resolved during normal processing. Call is made to
allow custom implementations to use alternative resolution strategies; currently
the only way to make use of this functionality is by sub-classing
ReadableObjectId
and overriding this method.
Default implementation simply returns false
to indicate that resolution
attempt did not succeed.
Copyright © 2014–2015 FasterXML. All rights reserved.