]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoService.java
Fix unclosed jar
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / src / main / java / org / argeo / slc / repo / RepoService.java
1 package org.argeo.slc.repo;
2
3 import javax.jcr.Session;
4
5 /** Start factorisation of the session management using a manager service */
6 public interface RepoService {
7
8 /**
9 * Returns a corresponding session given the current context. Caller must
10 * close the session once it has been used
11 */
12 public Session getRemoteSession(String repoNodePath, String uri,
13 String workspaceName);
14 }