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