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

org.javers.core.ConditionalTypesPlugin Maven / Gradle / Ivy

package org.javers.core;

import org.javers.core.diff.appenders.PropertyChangeAppender;
import org.javers.core.metamodel.type.JaversType;

import java.util.Collection;
import java.util.Collections;

/**
 * @author bartosz.walacik
 */
public abstract class ConditionalTypesPlugin implements JaversBuilderPlugin {

    public Collection>> getPropertyChangeAppenders() {
        return Collections.emptyList();
    }

    public Collection getNewTypes() {
        return Collections.emptyList();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy