Package com.thoughtworks.xstream.hibernate.converter

Source Code of com.thoughtworks.xstream.hibernate.converter.HibernatePersistentSortedMapConverter

/*
* Copyright (C) 2011 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 19. April 2011 by Joerg Schaible
*/
package com.thoughtworks.xstream.hibernate.converter;

import com.thoughtworks.xstream.converters.ConversionException;
import com.thoughtworks.xstream.converters.UnmarshallingContext;
import com.thoughtworks.xstream.converters.collections.TreeMapConverter;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.mapper.Mapper;

import org.hibernate.collection.PersistentSortedMap;


/**
* A converter for Hibernate's {@link PersistentSortedMap}. The converter will drop any
* reference to the Hibernate collection and emit at serialization time an equivalent JDK
* collection instead.
*
* @author Jörg Schaible
* @since 1.4
*/
public class HibernatePersistentSortedMapConverter extends TreeMapConverter {

    /**
     * Construct a HibernatePersistentSortedMapConverter.
     *
     * @param mapper
     * @since 1.4
     */
    public HibernatePersistentSortedMapConverter(final Mapper mapper) {
        super(mapper);
    }

    public boolean canConvert(final Class type) {
        return type == PersistentSortedMap.class;
    }

    public Object unmarshal(final HierarchicalStreamReader reader,
        final UnmarshallingContext context) {
        throw new ConversionException("Cannot deserialize Hibernate collection");
    }
}
TOP

Related Classes of com.thoughtworks.xstream.hibernate.converter.HibernatePersistentSortedMapConverter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.