org.switchyard.serial.jackson.spi.JacksonSerializationProvider Maven / Gradle / Ivy
/*
* Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
*
* 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 org.switchyard.serial.jackson.spi;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import org.switchyard.common.type.reflect.Construction;
import org.switchyard.serial.FormatType;
import org.switchyard.serial.Serializer;
import org.switchyard.serial.jackson.format.JSONJacksonSerializer;
import org.switchyard.serial.spi.SerializationProvider;
/**
* Jackson serialization provider.
*
* @author David Ward <[email protected]> © 2012 Red Hat Inc.
*/
public class JacksonSerializationProvider extends SerializationProvider {
private static final Map> MAP;
static {
Map> map = new LinkedHashMap>();
map.put(FormatType.JSON, JSONJacksonSerializer.class);
//map.put(FormatType.JSON_NUMERIC, NumericJSONJacksonSerializer.class);
MAP = Collections.unmodifiableMap(map);
}
/**
* {@inheritDoc}
*/
@Override
public Set getSupportedFormats() {
return MAP.keySet();
}
/**
* {@inheritDoc}
*/
@Override
public Serializer newSerializer(FormatType format) {
Class extends Serializer> c = MAP.get(format);
return c != null ? Construction.construct(c) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy