com.fitbur.fasterxml.jackson.databind.module.SimpleKeyDeserializers Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.databind.module;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import com.fitbur.fasterxml.jackson.databind.*;
import com.fitbur.fasterxml.jackson.databind.com.fitburser.KeyDeserializers;
import com.fitbur.fasterxml.jackson.databind.type.ClassKey;
/**
* Simple implementation {@link KeyDeserializers} which allows registration of
* com.fitburserializers based on raw (type erased class).
* It can work well for basic bean and scalar type com.fitburserializers, but is not
* a good fit for handling generic types (like {@link Map}s and {@link Collection}s
* or array types).
*
* Unlike {@link SimpleSerializers}, this class does not currently support generic mappings;
* all mappings must be to exact com.fitburclared com.fitburserialization type.
*/
public class SimpleKeyDeserializers
implements KeyDeserializers, java.io.Serializable // since 2.1
{
private static final long serialVersionUID = -6786398737835438187L;
protected HashMap _classMappings = null;
/*
/**********************************************************
/* Life-cycle, construction and configuring
/**********************************************************
*/
public SimpleKeyDeserializers() { }
public SimpleKeyDeserializers addDeserializer(Class> forClass, KeyDeserializer com.fitburser)
{
if (_classMappings == null) {
_classMappings = new HashMap();
}
_classMappings.put(new ClassKey(forClass), com.fitburser);
return this;
}
/*
/**********************************************************
/* Serializers implementation
/**********************************************************
*/
// @Override
public KeyDeserializer findKeyDeserializer(JavaType type,
DeserializationConfig config, BeanDescription beanDesc)
{
if (_classMappings == null) {
return null;
}
return _classMappings.get(new ClassKey(type.getRawClass()));
}
}