Start integrating GCR and JCR (not yet working)
[lgpl/argeo-commons.git] / org.argeo.api / src / org / argeo / api / gcr / ContentRepository.java
index 3349b30a1acef5b32c3351b04cbb7df6b08d2e5b..0807075ced23eb3a62767a395803604d674cce22 100644 (file)
@@ -1,6 +1,12 @@
 package org.argeo.api.gcr;
 
+import java.util.Locale;
 import java.util.function.Supplier;
 
+/**
+ * A content repository is an actually running implementation of various kind of
+ * content system. It allows a pre-authenticated caller to open a session.
+ */
 public interface ContentRepository extends Supplier<ContentSession> {
+       ContentSession get(Locale locale);
 }