X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentRepository.java;fp=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentRepository.java;h=0807075ced23eb3a62767a395803604d674cce22;hb=8767858f1fca02ea7c53ca244f6c1fa745d91ac4;hp=3349b30a1acef5b32c3351b04cbb7df6b08d2e5b;hpb=5a36795f16b1b2a58188db84d6546b501626bda8;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java b/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java index 3349b30a1..0807075ce 100644 --- a/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java +++ b/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java @@ -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 get(Locale locale); }