Package org.locationtech.geogig.remote

Examples of org.locationtech.geogig.remote.LocalMappedRemoteRepo


            out.close();
            localGeogig.geogig.command(ConfigOp.class).setAction(ConfigAction.CONFIG_SET)
                    .setName("sparse.filter").setValue("filter.ini").setScope(ConfigScope.LOCAL)
                    .call();

            LocalMappedRemoteRepo remoteRepo = spy(new LocalMappedRemoteRepo(
                    remoteGeogig.getInjector(), remoteGeogig.envHome.getCanonicalFile(),
                    localGeogig.repo));

            doNothing().when(remoteRepo).close();

            remoteRepo.setGeoGig(remoteGeogig.geogig);
            this.remoteRepo = remoteRepo;
        } catch (Exception e) {
        }
    }
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.remote.LocalMappedRemoteRepo

Copyright © 2018 www.massapicom. 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.