com.googlecode.objectify.util.jackson.RawKeyKeySerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify Show documentation
Show all versions of objectify Show documentation
The simplest convenient interface to the Google App Engine datastore
package com.googlecode.objectify.util.jackson;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.google.appengine.api.datastore.Key;
import com.google.appengine.api.datastore.KeyFactory;
import java.io.IOException;
/**
* Configuring this serializer will make native datastore Key objects render as their web-safe string *when they are used as Map keys*.
*/
public class RawKeyKeySerializer extends JsonSerializer {
@Override
public void serialize(Key value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
jgen.writeFieldName(KeyFactory.keyToString(value));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy