Back to project page disconnected-content-explorer-android.
The source code is released under:
MIT License
If you think the Android project disconnected-content-explorer-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package mil.nga.dice.jackson.deserializer; //from ww w . j a v a2 s . c o m import com.fasterxml.jackson.core.JsonFactory; import com.fasterxml.jackson.databind.ObjectMapper; public class Deserializer { static JsonFactory factory = new JsonFactory(); static ObjectMapper mapper = new ObjectMapper(); static { factory.setCodec(mapper); } }