/* * Copyright 2017 TWO SIGMA OPEN SOURCE, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.twosigma.jupyter.message; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; public class MessageSerializer { private static ObjectMapper mapper; static { mapper = new ObjectMapper(); mapper.disable(SerializationFeature.INDENT_OUTPUT); mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); } private MessageSerializer() { } public static <T> T parse(String json, Class<T> theClass) { T result = null; try { result = mapper.readValue(json, theClass); } catch (Exception e) { // Ignored. } return result; } public static String toJson(Object object) { try { return mapper.writeValueAsString(object); } catch (Exception e) { return null; } } }