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

xyz.thepathfinder.android.PathfinderServices Maven / Gradle / Ivy

package xyz.thepathfinder.android;

/**
 * @author David Robinson
 */
class PathfinderServices {

    private ModelRegistry registry;
    private Connection connection;

    protected PathfinderServices(ModelRegistry registry, Connection connection) {
        this.registry = registry;
        this.connection = connection;
    }

    public ModelRegistry getRegistry() {
        return this.registry;
    }

    public Connection getConnection() {
        return this.connection;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy