]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/RepoService.java
+ clean repo model
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / RepoService.java
1 package org.argeo.slc.client.ui.dist;
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 as been used
11 */
12 public Session getRemoteSession(String repoNodePath, String uri,
13 String workspaceName);
14 }