All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javers.core.json.JsonTypeAdapterTemplate Maven / Gradle / Ivy

There is a newer version: 7.6.2
Show newest version
package org.javers.core.json;

import org.javers.common.collections.Lists;

import java.util.List;

/**
 * @author bartosz walacik
 */
public abstract class JsonTypeAdapterTemplate implements JsonTypeAdapter{
    public abstract Class getValueType();

    @Override
    public List getValueTypes() {
        return Lists.immutableListOf(getValueType());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy