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

org.javers.core.snapshot.SnapshotModule Maven / Gradle / Ivy

There is a newer version: 7.6.1
Show newest version
package org.javers.core.snapshot;

import org.javers.common.collections.Lists;
import org.javers.core.pico.InstantiatingModule;
import org.picocontainer.MutablePicoContainer;

import java.util.Collection;

/**
 * @author bartosz walacik
 */
public class SnapshotModule extends InstantiatingModule {
    public SnapshotModule(MutablePicoContainer container) {
        super(container);
    }

    @Override
    protected Collection getImplementations() {
        return (Collection) Lists.asList(
                SnapshotFactory.class,
                SnapshotDiffer.class,
                SnapshotGraphFactory.class,
                ChangedCdoSnapshotsFactory.class
        );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy