Introduce CRUD to GCR
[lgpl/argeo-commons.git] / org.argeo.api / src / org / argeo / api / gcr / ContentSession.java
index 78325b135b41ed8a63607fd48af815065cd3dfe5..d779093be863c160914e32a22d5fcca415875431 100644 (file)
@@ -1,7 +1,13 @@
 package org.argeo.api.gcr;
 
-import java.util.function.Supplier;
+import java.util.Locale;
 
-public interface ContentSession extends Supplier<Content> {
+import javax.security.auth.Subject;
 
+public interface ContentSession {
+       Subject getSubject();
+
+       Locale getLocale();
+
+       Content get(String path);
 }