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 }